11 lines
343 B
Python
11 lines
343 B
Python
# services/training/app/models/training_models.py
|
|
"""
|
|
Legacy file - TrainedModel has been moved to training.py
|
|
This file is deprecated and should be removed after migration.
|
|
"""
|
|
|
|
# Import the actual model from the correct location
|
|
from .training import TrainedModel
|
|
|
|
# For backward compatibility, re-export the model
|
|
__all__ = ["TrainedModel"] |