Views
No views yet
HistGradientBoostingRegressor pipeline that predicts crop
yield (metric tonnes per hectare) for Sub-Saharan African countries/regions.crop_yield_model.joblib — trained sklearn pipelinemodel_meta.json — metrics, countries, crops, seasonsconfig.yaml — training/inference config1import joblib
2from huggingface_hub import hf_hub_download
3
4path = hf_hub_download("CircuitNotion/africa-crop-yield-predictor", "crop_yield_model.joblib")
5model = joblib.load(path)