intermediate backup
This commit is contained in:
20
forecasting_model/train/__init__.py
Normal file
20
forecasting_model/train/__init__.py
Normal file
@ -0,0 +1,20 @@
|
||||
"""
|
||||
TODO
|
||||
"""
|
||||
|
||||
__version__ = "0.1.0"
|
||||
|
||||
# Expose core components for easier import
|
||||
from .ensemble_evaluation import (
|
||||
run_ensemble_evaluation
|
||||
)
|
||||
|
||||
|
||||
# Expose main configuration class from utils
|
||||
from ..utils import MainConfig
|
||||
|
||||
# Define __all__ for explicit public API (optional but good practice)
|
||||
__all__ = [
|
||||
"run_ensemble_evaluation",
|
||||
"MainConfig",
|
||||
]
|
Reference in New Issue
Block a user