Files
bakery-ia/services/forecasting/app/ml/__init__.py

11 lines
211 B
Python
Raw Normal View History

2026-01-21 17:17:16 +01:00
"""
ML Components for Forecasting
Machine learning prediction and forecasting components
"""
from .predictor import BakeryPredictor, BakeryForecaster
__all__ = [
"BakeryPredictor",
"BakeryForecaster"
]