-
Notifications
You must be signed in to change notification settings - Fork 0
Machine learning models
GuangyuMEN edited this page Jul 8, 2019
·
2 revisions
XGBoost:
- for standard tabular data, store in Pandas DataFrames
- implementation of the Gradient Boosted Decision Trees algorithm:
- mechanism: Need some base prediction to start the cycle. Go through cycles to builds new models and combines them into an ensemble model. We start the cycle by calculating the errors for each observation in the dataset. We then build a new model to predict those. We add predictions from this error-predicting model to the "ensemble of models."To make a prediction, we add the predictions from all previous models. We can use these predictions to calculate new errors, build the next model, and add it to the ensemble.