2025-07-29 07:53:30 +02:00
|
|
|
# services/training/app/models/training_models.py
|
|
|
|
|
"""
|
2025-08-08 09:08:41 +02:00
|
|
|
Legacy file - TrainedModel has been moved to training.py
|
|
|
|
|
This file is deprecated and should be removed after migration.
|
2025-07-29 07:53:30 +02:00
|
|
|
"""
|
|
|
|
|
|
2025-08-08 09:08:41 +02:00
|
|
|
# Import the actual model from the correct location
|
|
|
|
|
from .training import TrainedModel
|
2025-07-29 07:53:30 +02:00
|
|
|
|
2025-08-08 09:08:41 +02:00
|
|
|
# For backward compatibility, re-export the model
|
|
|
|
|
__all__ = ["TrainedModel"]
|