BaggingClassifier: szczegóły działania

Metody zespołowe w Pythonie

Román de las Heras

Data Scientist, Appodeal

Funkcje heterogeniczne a homogeniczne

Funkcja heterogenicznego ensembla

het_est = HeterogeneousEnsemble(
    estimators=[('est1', est1), ('est2', est2), ...],
    # additional parameters
)

Funkcja homogenicznego ensembla

hom_est = HomogeneousEnsemble(
    est_base,
    n_estimators=chosen_number,
    # additional parameters
)
Metody zespołowe w Pythonie

BaggingClassifier

Przykład BaggingClassifier:

# Instantiate the base estimator ("weak" model)
clf_dt = DecisionTreeClassifier(max_depth=3)
# Build the Bagging classifier with 5 estimators
clf_bag = BaggingClassifier(
    clf_dt,
    n_estimators=5
)
# Fit the Bagging model to the training set
clf_bag.fit(X_train, y_train)
# Make predictions on the test set
y_pred = clf_bag.predict(X_test)
Metody zespołowe w Pythonie

BaggingRegressor

Przykład BaggingRegressor:

# Instantiate the base estimator ("weak" model)
reg_lr = LinearRegression()
# Build the Bagging regressor with 10 estimators
reg_bag = BaggingRegressor(
    reg_lr
)
# Fit the Bagging model to the training set
reg_bag.fit(X_train, y_train)
# Make predictions on the test set
y_pred = reg_bag.predict(X_test)
Metody zespołowe w Pythonie

Wynik out-of-bag

  • Oblicz indywidualne predykcje dla wszystkich estymatorów, dla których dana instancja była poza próbą
  • Połącz indywidualne predykcje
  • Oceń metrykę na tych predykcjach:
    • Klasyfikacja: dokładność
    • Regresja: R^2
clf_bag = BaggingClassifier(
    clf_dt,
    oob_score=True
)
clf_bag.fit(X_train, y_train)
print(clf_bag.oob_score_)
0.9328125
pred = clf_bag.predict(X_test)
print(accuracy_score(y_test, pred))
0.9625
Metody zespołowe w Pythonie

Czas na ćwiczenia!

Metody zespołowe w Pythonie

Preparing Video For Download...