my-model / README.md
harshar4114's picture
Upload README.md with huggingface_hub
5c0cbd1 verified
|
Raw
History Blame Contribute Delete
638 Bytes
---
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
```python
import joblib
model = joblib.load("model_random_forest.joblib")
preprocessor = joblib.load("preprocessor.joblib")
```