Spaces:
Sleeping
Sleeping
File size: 562 Bytes
7e825f9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | """
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
|