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

11 lines
211 B
Python

"""
ML Components for Forecasting
Machine learning prediction and forecasting components
"""
from .predictor import BakeryPredictor, BakeryForecaster
__all__ = [
"BakeryPredictor",
"BakeryForecaster"
]