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

11 lines
211 B
Python
Raw Normal View History

2025-08-08 09:08:41 +02:00
"""
ML Components for Forecasting
Machine learning prediction and forecasting components
"""
from .predictor import BakeryPredictor, BakeryForecaster
__all__ = [
"BakeryPredictor",
"BakeryForecaster"
]