0% found this document useful (0 votes)
15 views9 pages

Model Evaluation Metrics Presentation

Uploaded by

k626856k
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views9 pages

Model Evaluation Metrics Presentation

Uploaded by

k626856k
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 9

Model Evaluation Metrics for

Linear Regression

Presented by: Kunal Yadav Subjected to: Professor Rohit Agarwal


Enrollment Number: 0901CD211031
Introduction
• Objective: This presentation aims to discuss
various evaluation metrics used for assessing
the performance of a linear regression model.

• Importance: Evaluating the model helps


determine how well it fits the data and
provides insights for improving performance.
Mean Absolute Error (MAE)
• Definition: Measures the average of the
absolute errors between predicted and actual
values.

• Formula:

• MAE = (1/n) Σ |y_i - ŷ_i|


Mean Squared Error (MSE)
• Definition: Measures the average of the
squared differences between predicted and
actual values.

• Formula:

• MSE = (1/n) Σ (y_i - ŷ_i)^2


Root Mean Squared Error (RMSE)
• Definition: The square root of MSE, restoring
the error back to the original scale of the
target variable.

• Formula:

• RMSE = √MSE
R-squared (R²)
• Definition: Measures the proportion of
variance in the dependent variable that is
explained by the independent variable(s).

• Formula:

• R² = 1 - Σ (y_i - ŷ_i)^2 / Σ (y_i - ȳ)^2


Adjusted R-squared
• Definition: Adjusted for the number of
predictors, providing a more accurate
evaluation in multi-feature models.

• Formula:

• Adjusted R² = 1 - (1 - R²)(n-1)/(n-p-1)
F-statistic
• Definition: Tests if the model is statistically
significant compared to a model with no
predictors.

• Interpretation: Higher values indicate that the


model explains a significant amount of
variance.
Conclusion
• Summary: The evaluation metrics help assess
the accuracy, error magnitude, and goodness
of fit for linear regression models.

• Recommendation: Use multiple metrics to


evaluate model performance thoroughly.

You might also like