Performance of Regression model and Classification model
Performance of Regression model and Classification model In a machine learning Algorithm once the model is built, the next step is the use of various performance criteria to evaluate Machine learning Models. Various performance Matrix/Criteria used for regression model and Classification models are different and are listed below. Regression Model: In Regression analysis output is continuous value, therefore for Regression performance following methods are used Mean squared error (MSE) Mean average error(MAE) Root mean squared error (RMSE) R Square Classification Model: In the classification model output is Discret form and for classification performance following methods are used Confusion matrix Accuracy Precision Recall (sensitivity) Specificity ROC curve (AUC) ROC Area Under Curve is useful when we are not concerned about whether the small dataset/class of dataset is positive or not, in contrast to F1 score where the class being positive is import...