Time Series Forecasting
Predict future values with LSTM and transformer models.
Forecasting Model
from oneml.timeseries import Forecaster
model = Forecaster(horizon=30, seasonality="daily")
model.fit(historical_data)
predictions = model.predict()Predict future values with LSTM and transformer models.
from oneml.timeseries import Forecaster
model = Forecaster(horizon=30, seasonality="daily")
model.fit(historical_data)
predictions = model.predict()