my-model / README.md
harshar4114's picture
Upload README.md with huggingface_hub
5c0cbd1 verified
|
Raw
History Blame Contribute Delete
638 Bytes
metadata
license: mit
tags:
  - scikit-learn
  - xgboost
  - tabular-classification

My Model

Thesis project ke models: Random Forest, XGBoost, aur Neural Network (sklearn based), saath mein preprocessor aur feature names.

Files

  • model_random_forest.joblib — Random Forest model
  • model_xgboost.joblib — XGBoost model
  • model_neural_net.joblib — Neural Network model
  • preprocessor.joblib — Data preprocessing pipeline
  • feature_names.json — Feature names used in training

Usage

import joblib
model = joblib.load("model_random_forest.joblib")
preprocessor = joblib.load("preprocessor.joblib")