17 lines
495 B
Python
17 lines
495 B
Python
"""
|
|
Models and DTOs for the Model Manager system.
|
|
|
|
This module contains data transfer objects (DTOs) and model classes used
|
|
throughout the Model Manager workflows and activities.
|
|
"""
|
|
|
|
from model_manager.utils.models.experiment_status import ExperimentStatus
|
|
from model_manager.utils.models.train_model_params import TrainModelParams
|
|
from model_manager.utils.models.train_model_result import TrainModelResult
|
|
|
|
__all__ = [
|
|
'ExperimentStatus',
|
|
'TrainModelParams',
|
|
'TrainModelResult',
|
|
]
|