YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/model-cards#model-card-metadata)
Game Sales Prediction Model
This model predicts Global Sales of video games based on several features.
π’ Input Features
Numerical:
- NA_Sales
- EU_Sales
- JP_Sales
- Other_Sales
- Year
Categorical:
- Platform
- Genre
- Publisher
π§ Model
- Trained using scikit-learn
- Algorithm: KNeighborsRegressor
- Preprocessing: StandardScaler + OneHotEncoder (ColumnTransformer)
π¦ Files Included
- game_model.pkl β Trained ML model
- inference.py β Script to load and run predictions
- requirements.txt β Dependencies
π Inference (example)
from inference import predict
sample = {
"NA_Sales": 2.5,
"EU_Sales": 1.8,
"JP_Sales": 0.5,
"Other_Sales": 0.3,
"Year": 2010,
"Platform": "PS3",
"Genre": "Action",
"Publisher": "Sony"
}
print(predict(sample))
Inference Providers NEW
This model isn't deployed by any Inference Provider. π Ask for provider support