Ensemble Methods in Python
Román de las Heras
Data Scientist, Appodeal
Hlasování a průměrování:
Nový koncept: „slabý" odhadovač

Slabý odhadovač
Příklad: Decision Tree

Příklady „slabých" modelů:
Rozhodovací strom: malá hloubka
Logistická regrese
Lineární regrese
Jiné omezené modely
Ukázkový kód:
model = DecisionTreeClassifier( max_depth=3 )model = LogisticRegression( max_iter=50, C=100.0 )model = LinearRegression()
Ensemble Methods in Python