SIENTIAPDE-1645: code snapshot (part 1)

This commit is contained in:
vitor-aignosi
2026-07-16 13:29:23 -03:00
commit 40f26bcf17
114 changed files with 18654 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
"""
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',
]