एन्सेम्बल मेथड्स का परिचय

Python में Ensemble Methods

Román de las Heras

Data Scientist, Appodeal

सबसे अच्छा मॉडल चुनना

व्यक्तिगत मॉडल

Python में Ensemble Methods

सर्वे

सर्वे करते लोग

सर्वे परिणाम स्क्रीनशॉट

Python में Ensemble Methods

जरूरी पूर्व-ज्ञान

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

scikit-learn-logo-small.png

Python में Ensemble Methods

टेक्नोलॉजीज़

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)
Python में Ensemble Methods

लर्नर्स, एन्सेम्बल!

Python में Ensemble Methods

Preparing Video For Download...