| 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") | |
| ``` | |