Downloads · 30 days
0
rishini/NPN-arima
NPN-arima is a machine learning model from rishini. Use it for the machine learning task on the model card, and read the license before you ship it in a product.
AutoRegressive Integrated Moving Average trained on aggregated daily M5 sales data.
Downloads · 30 days
0
Access
Public
Updated Aug 14, 2026
Repo size
13.5 MB
Likes
0
Public
Click a slice to open those files.
.pkl6.6 MB · 100%
From the Hugging Face model README
AutoRegressive Integrated Moving Average trained on aggregated daily M5 sales data.
| Metric | Value |
|---|---|
| RMSE | 6,459.70 |
| MAE | 4,852.62 |
| MAPE | 10.48% |
| AIC | 37,801.28 |
import pickle
with open('model.pkl', 'rb') as f:
model = pickle.load(f)
forecast = model.forecast(steps=28)