Monthly Archives: February 2022
Difference Between Classification and Regression in Machine Learning
Classification vs Regression Classification predictive modeling problems are different from regression predictive modeling problems. Classification is the task of predicting a discrete class label. Regression is the task of predicting a continuous quantity.
What are “ensemble methods”?
An ensemble methods are technique which uses multiple independent similar or different models and then combine them to produce improved results. Ensemble methods usually produces more accurate solutions than a single model would. The motivation for using ensemble models is to reduce bias or variance. For e.g. A random forest is an ensemble of multiple decision…