Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions config/metadata.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# General module information
Name: "Segmenter" # Name of the module
description: "segmenter"
Date: "2024-10-01" # Creation or last update date
Originator: "Debela" # Creator or author of the module
License: "MIT" # License type for this module

# Task type and categorization
AMF_Tag: segmenter # This acts as the task type for the module

# Additional metadata
Domain: "Momolog and Dialog" # Domain this module operates in
Training Data: "None" # Reference to the training data used
Citation: "None" # Reference or citation for this module

# Variants of the module
Variants: # List of variants available for this task
- default # Example variant (e.g., a lightweight version)

# Input and output definitions
Requires: text # Input required by this module
Outputs: segments # Output produced by this module
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def segmenter_defult():
with open('README.md', 'r') as file:
md_content = file.read()

# Convert to HTML
# Convert to HTMLgi
html_content = markdown2.markdown(md_content)

# Add CSS link
Expand Down
Loading