Closed highlyprofitable108 closed 1 year ago
Added a bunch of currently untested models and ensembles
Need to review param grid inputs
modeling and eda methods are organized
Retrain, save, load functionality
Retrain on new data, updated results, other....
Lots of stuff added. Combined model and eda too.
Classes have a lot of untested base methods for later.
To upgrade and enhance the existing modeling capabilities, I'll make the following additions:
Let's start:
Upgrade Strategy Guide
1. Add More Models:
You currently have the
RandomForestRegressor
. I'll add support forGradientBoostingRegressor
andLinearRegression
for demonstration.Step 1.2: Model Training Methods
Expand the
train_model
method to include:And add the respective training methods:
Step 2.2: SHAP Interpretation
After training your model, use SHAP to explain predictions:
Invoke these methods in your
main
after training and evaluating the model.This is a high-level guide that will help in upgrading and enhancing your modeling capabilities. Actual implementation might need more detailed code depending on the specific requirements and dataset.