Ensemble Methods in Python
Román de las Heras
Data Scientist, Appodeal
Voting and Averaging:
New concept: "weak" estimator
Weak estimator
Example: Decision Tree
Some "weak" models:
Decision tree: small depth
Logistic Regression
Linear Regression
Other restricted models
Sample code:
model = DecisionTreeClassifier( max_depth=3 )
model = LogisticRegression( max_iter=50, C=100.0 )
model = LinearRegression()
Ensemble Methods in Python