Explain how do classification and regression differ?
Answer Posted / Amit Kumar Pandey
Classification and regression are both supervised learning algorithms, but they have some key differences. Classification is used for problems where the output variable is a categorical label, like spam/not spam or win/lose. Regression, on the other hand, is used for problems where the output variable is a continuous value, like predicting a person's age or house price. Classification algorithms like logistic regression, decision trees, random forests, and support vector machines can handle multiple classes, while regression algorithms like linear regression and decision trees regressor are limited to single outputs.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers