Probably the most common problem type in machine learning is Supervised Learning. Example 1: Let's start with an example: imagine we wanted to predict housing prices, how would we approach this problem?
Given this data, a friend has a house 750 square feet - how much can they be expected to get? What approaches can we use to solve this?
Each of these approaches represent a way of doing supervised learning What does this really mean? We gave the algorithm a data set where a "right answer" was provided So we know actual prices for houses. The idea is we can learn what makes the price a certain value from the training data. The algorithm should then produce more right answers based on new training data where we don't know the price upfront.
In other words we want to predict The house Prices for new houses with no price at our disposal.
Regression Probelm is used where:
Example 2: Can we definer breast cancer as malignant or benign based on tumour size ?
We can see there are 5 of each point and the output can only be 1(Yes) or 0(No).
What is classification?
Supervised learning lets you get the "right" data a Regression problem Classification problem
This is the second major problem type, in an Unsupervised Learning we get unlabled Data and the task is to structure it. One way of doing this would be to Cluster data into groups.
Examples: