"कमज़ोर" मॉडलों की ताकत

Python में Ensemble Methods

Román de las Heras

Data Scientist, Appodeal

"कमज़ोर" मॉडल

Voting और Averaging:

  • कम संख्या में estimators
  • Fine-tuned estimators
  • अलग-अलग प्रशिक्षित

नया कॉन्सेप्ट: "कमज़ोर" estimator

Python में Ensemble Methods

कमज़ोर बनाम मज़बूत.jpeg

Python में Ensemble Methods

"कमज़ोर" मॉडलों के गुण

कमज़ोर estimator

  • प्रदर्शन यादृच्छिक अनुमान से बेहतर
  • हल्का मॉडल
  • प्रशिक्षण और मूल्यांकन समय कम

उदाहरण: Decision Tree

decision_tree_weak.bmp

Python में Ensemble Methods

"कमज़ोर" मॉडलों के उदाहरण

कुछ "कमज़ोर" मॉडल:

  • Decision tree: छोटी depth

  • Logistic Regression

  • Linear Regression

  • अन्य प्रतिबंधित मॉडल

Sample code:

model = DecisionTreeClassifier(
    max_depth=3
)

model = LogisticRegression( max_iter=50, C=100.0 )
model = LinearRegression()
Python में Ensemble Methods

अभ्यास करते हैं!

Python में Ensemble Methods

Preparing Video For Download...