File size: 760 Bytes
0162f5e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
"""
SelfTrainService - ML-based Schedule Optimization
Automatically improves scheduling through machine learning
"""
from .config import CONFIG, TrainingConfig
from .data_store import ScheduleDataStore
from .feature_extractor import FeatureExtractor
from .trainer import ModelTrainer
from .hybrid_scheduler import HybridScheduler
from .retraining_service import (
RetrainingService,
get_retraining_service,
start_retraining_service,
stop_retraining_service
)
__all__ = [
'CONFIG',
'TrainingConfig',
'ScheduleDataStore',
'FeatureExtractor',
'ModelTrainer',
'HybridScheduler',
'RetrainingService',
'get_retraining_service',
'start_retraining_service',
'stop_retraining_service',
]
__version__ = '1.0.0'
|