Introducción a los métodos de ensamblado

Ensemble Methods in Python

Román de las Heras

Data Scientist, Appodeal

Elegir el mejor modelo

modelos-individuales.png

Ensemble Methods in Python

Encuestas

encuesta-en-papel.jpg

resultados-de-encuesta.png

Ensemble Methods in Python

Conocimientos previos

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

scikit-learn-logo-small.png

Ensemble Methods in Python

Tecnologías

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)
Ensemble Methods in Python

¡A aprender en conjunto!

Ensemble Methods in Python

Preparing Video For Download...