Grid forecast
The next k values, with optional calibrated intervals.
The everyday forecast: from your recent history, predict the next k points on the same time grid. Add return_intervals='conformal' when you want a calibrated range to plan against instead of a single line.
model.predict() model = APDTFlowForecaster(forecast_horizon=24)
model.fit(df, target_col='sales')
yhat = model.predict() # next 24 steps
lower, yhat, upper = model.predict(return_intervals='conformal', alpha=0.1)