MLOps-Platforms / src /mlops /__init__.py
songhieng's picture
Upload 72 files
7e825f9 verified
raw
history blame contribute delete
562 Bytes
"""
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