Pengantar metode ansambel

Metode Ensemble di Python

Román de las Heras

Data Scientist, Appodeal

Memilih model terbaik

Model individual

Metode Ensemble di Python

Survei

Survei kertas

Hasil survei grafik

Metode Ensemble di Python

Prasyarat

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

Logo scikit-learn

Metode Ensemble di Python

Teknologi

Logo scikit-learn

  • scikit-learn
  • numpy
  • pandas
  • seaborn

Logo mlxtend

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)
Metode Ensemble di Python

Learners, ensemble!

Metode Ensemble di Python

Preparing Video For Download...