लीनियर रिग्रेशन समापन

R में Supervised Learning: Regression

Nina Zumel and John Mount

Win-Vector, LLC

लीनियर रिग्रेशन के फायदे और सीमाएँ

  • Pros
    • फिट करना और लागू करना आसान
    • संक्षिप्त
    • ओवरफिटिंग की संभावना कम
R में Supervised Learning: Regression

लीनियर रिग्रेशन के फायदे और सीमाएँ

  • Pros
    • फिट करना और लागू करना आसान
    • संक्षिप्त
    • ओवरफिटिंग की संभावना कम
    • समझने योग्य
Call:
lm(formula = blood_pressure ~ age + weight, data = bloodpressure)

Coefficients:
(Intercept)          age       weight  
    30.9941       0.8614       0.3349
R में Supervised Learning: Regression

लीनियर रिग्रेशन के फायदे और सीमाएँ

  • Pros
    • फिट करना और लागू करना आसान
    • संक्षिप्त
    • ओवरफिटिंग की संभावना कम
    • समझने योग्य
  • Cons
    • केवल linear और additive संबंध ही व्यक्त कर सकता है
R में Supervised Learning: Regression

Collinearity

  • Collinearity -- जब इनपुट वैरिएबल आंशिक रूप से सह-संबद्ध हों।
Call:
lm(formula = blood_pressure ~ age + weight, data = bloodpressure)

Coefficients:
(Intercept)          age       weight  
    30.9941       0.8614       0.3349
R में Supervised Learning: Regression

Collinearity

  • Collinearity -- जब वैरिएबल आंशिक रूप से सह-сंबद्ध हों।
  • Coefficients का चिन्ह बदल सकता है
Call:
lm(formula = blood_pressure ~ age + weight, data = bloodpressure)

Coefficients:
(Intercept)          age       weight  
    30.9941       0.8614       0.3349
R में Supervised Learning: Regression

Collinearity

  • Collinearity -- जब वैरिएबल आंशिक रूप से सह-संबद्ध हों।
  • Coefficients का चिन्ह बदल सकता है
  • High collinearity:
    • Coefficients (या standard errors) असामान्य रूप से बड़े दिखें
    • मॉडल अस्थिर हो सकता है
Call:
lm(formula = blood_pressure ~ age + weight, data = bloodpressure)

Coefficients:
(Intercept)          age       weight  
    30.9941       0.8614       0.3349
R में Supervised Learning: Regression

आगे क्या

  • रिग्रेशन मॉडल का मूल्यांकन
  • मॉडल को सही तरीके से ट्रेन करना
R में Supervised Learning: Regression

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

R में Supervised Learning: Regression

Preparing Video For Download...