Spaces:
Sleeping
Sleeping
| """ | |
| MLOps Platform - Multilingual Content Detection Training | |
| ========================================================= | |
| This module provides a modular MLOps platform for training and evaluating | |
| text classification models across multiple languages. | |
| Supported Languages: | |
| - English (en) | |
| - Chinese (zh) | |
| - Khmer (km) | |
| """ | |
| __version__ = "1.0.0" | |
| __author__ = "MLOps Platform" | |
| from .preprocessor import TextPreprocessor | |
| from .trainer import ModelTrainer | |
| from .evaluator import ModelEvaluator | |
| from .config import TrainingConfig, SUPPORTED_LANGUAGES | |