YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

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))
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support