ostatslib.actions.regressors.ensembles#
Ensembles regression actions module
Classes
AdaBoost regression action with exponential loss. |
|
AdaBoost regression action with linear loss. |
|
AdaBoost regression action with square loss. |
|
Bagging regression action. |
|
ExtraTrees regression action. |
|
Gradient Boosting regression action. |
|
Gradient Boosting with 100 estimators regression action. |
|
Random Forest regression with 100 trees in the forest action. |
|
Random Forest regression action. |
- class AdaBoostExponentialLossRegression[source]#
AdaBoost regression action with exponential loss. Fits a Scikit-Learn AdaBoostRegressor https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.AdaBoostRegressor.html
- class AdaBoostRegression[source]#
AdaBoost regression action with linear loss. Fits a Scikit-Learn AdaBoostRegressor https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.AdaBoostRegressor.html
- class AdaBoostSquareLossRegression[source]#
AdaBoost regression action with square loss. Fits a Scikit-Learn AdaBoostRegressor https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.AdaBoostRegressor.html
- class BaggingRegression[source]#
Bagging regression action. Fits a Scikit-Learn BaggingRegressor https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.BaggingRegressor.html
- class ExtraTreesRegression[source]#
ExtraTrees regression action. Fits a Scikit-Learn ExtraTreesRegressor https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.ExtraTreesRegressor.html
- class GradientBoostingRegression[source]#
Gradient Boosting regression action. Fits a XGBoostClassfier https://xgboost.readthedocs.io/en/stable/python/examples/basic_walkthrough.html
- class N100EstimatorsGradientBoostingRegression[source]#
Gradient Boosting with 100 estimators regression action. Fits a XGBRegressor with parameter n_estimators=100 https://xgboost.readthedocs.io/en/stable/python/examples/basic_walkthrough.html
- class N100EstimatorsRandomForestRegression[source]#
Random Forest regression with 100 trees in the forest action. Fits a Scikit-Learn RandomForestRegressor with parameter n_estimators=100 https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.RandomForestRegressor.html
- class RandomForestRegression[source]#
Random Forest regression action. Fits a Scikit-Learn RandomForestRegressor https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.RandomForestRegressor.html