Downloads · 30 days
0
dev02chandan/sales-forecast-model
sales-forecast-model is a tabular regression model from dev02chandan. Use it for the tabular regression task on the model card, and read the license before you ship it in a product. It is set up for scikit-learn. The card lists the license as apache-2.0.
Task: Predict ProductStoreSalesTotal from product and store attributes. Data: dev02chandan/sales-forecast-dataset (raw/SuperKart.csv with processed train/test under processed/). Model: GradientBoostingRegressor select…
Downloads · 30 days
0
Access
Public
Updated Dec 15, 2025
Repo size
476 KB
Likes
0
Public
Click a slice to open those files.
.pkl238 KB · 99%
From the Hugging Face model README
Task: Predict Product_Store_Sales_Total from product and store attributes.
Data: dev02chandan/sales-forecast-dataset (raw/SuperKart.csv with processed train/test under processed/).
Model: GradientBoostingRegressor selected via GroupKFold CV on Store_Id.
from huggingface_hub import hf_hub_download
import joblib, pandas as pd
pkl_path = hf_hub_download(repo_id="dev02chandan/sales-forecast-model", filename="model.pkl", repo_type="model")
model = joblib.load(pkl_path)
# X must contain the same columns used in training (one-hot is inside the pipeline)
# Example:
# X = pd.DataFrame([...])
# y_pred = model.predict(X)