Views
No views yet
| Feature | Description |
|---|---|
| price_lag_1 | Retail price last month |
| price_lag_2 | Retail price 2 months ago |
| price_lag_3 | Retail price 3 months ago |
| rolling_mean_3 | Average price over last 3 months |
| rolling_mean_6 | Average price over last 6 months |
| month | Calendar month (seasonality) |
| year | Calendar year (trend) |
| food_cpi | Uganda maize-specific CPI (UBOS) |
| Model | MAE (UGX/kg) |
|---|---|
| Naive baseline (rolling mean 3) | 196 |
| This model (v3, maize CPI) | 224 |
| V1 (no CPI) | 282 |
| V2 (broad food CPI) | 658 |
1import joblib
2import pandas as pd
3from huggingface_hub import hf_hub_download
4
5model_path = hf_hub_download(repo_id="byabasaija/uganda-food-prices-model", filename="maize_price_model_v3.pkl")
6model = joblib.load(model_path)