Supervised Learning is one of the successful types of Machine Learning. Remember that supervised learning is predicting the outcome from given input where we have examples of input-output pairs. The Goal is to “ predict the outcome for unseen data ”. One important thing about supervised Machine Learning is it requires human effort to build a training set ( input-output pairs), but later automates and often speeds up the task. There are two types of Supervised Machine Learning Algorithm Classification Regression Classification: The goal of Classification is to predict a class label (which can be termed as outcome sometimes). Classification can sometimes be distinguishing between exactly two classes which are called binary classification and classification between more than two classes are called multiclass classification . Binary classification can be referred to as answering a YES/NO question. For example, Is this email spam? The answer is either yes or no. Exa...
SIMPLE WAY OF UNDERSTANDING