11 lines
211 B
Python
11 lines
211 B
Python
|
|
"""
|
||
|
|
ML Components for Forecasting
|
||
|
|
Machine learning prediction and forecasting components
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .predictor import BakeryPredictor, BakeryForecaster
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"BakeryPredictor",
|
||
|
|
"BakeryForecaster"
|
||
|
|
]
|