Wprowadzenie do metod ensemble

Metody zespołowe w Pythonie

Román de las Heras

Data Scientist, Appodeal

Wybór najlepszego modelu

individual-models.png

Metody zespołowe w Pythonie

Ankiety

shutterstock_253684528.jpg

2018-10-29_22-54-45.png

Metody zespołowe w Pythonie

Wymagana wiedza

  • Supervised Learning with scikit-learn
  • Machine Learning with Tree-Based Models in Python
  • Linear Classifiers in Python

scikit-learn-logo-small.png

Metody zespołowe w Pythonie

Technologie

scikit-learn-logo-small.png

  • scikit-learn
  • numpy
  • pandas
  • seaborn

mlxtend-logo.png

from sklearn.ensemble import MetaEstimator

# Base estimators est1 = Model1() est2 = Model2() estN = ModelN()
# Meta estimator est_combined = MetaEstimator( estimators=[est1, est2, ..., estN], # Additional parameters )
# Train and test est_combined.fit(X_train, y_train) pred = est_combined.predict(X_test)
Metody zespołowe w Pythonie

Uczniowie, do dzieła!

Metody zespołowe w Pythonie

Preparing Video For Download...