Giới thiệu về phương pháp tổ hợp

Ensemble Methods in Python

Román de las Heras

Data Scientist, Appodeal

Chọn mô hình tốt nhất

các mô hình đơn lẻ

Ensemble Methods in Python

Khảo sát

khảo sát ý kiến

kết quả khảo sát 2018-10-29_22-54-45

Ensemble Methods in Python

Kiến thức tiền đề

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

logo scikit-learn nhỏ

Ensemble Methods in Python

Công nghệ

logo scikit-learn nhỏ

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

Các learner, vào đội hình!

Ensemble Methods in Python

Preparing Video For Download...