Give the pictorial process for a supervised learning problem.
Supervised Learning Problem.
Give the pictorial process for a supervised learning problem. |
What is supervised learning?
Supervised learning is when we are teaching a machine to learn using inputs that we know the correct outputs to.
What is unsupervised learning?
Unsupervised learning is when we are teaching a machine to learn using inputs that we do not know the correct outputs to. We can derive the structure of our given data by clustering it based upon relations among the given data.
What are two different types of supervised learning problems?
- Regression Problems
- Classification Problems
What is a Regression problem ?
A regression problem is a supervised machine learning problem in which we are trying to map inputs to a continuous function.
What is a Classification problem?
A classification problem is a supervised machine learning problem in which we are trying to map inputs to discrete outputs.
What are the necessary to develop a learning algorithm for a supervised machine learning problem?
1. Obtain the data set.
2. Feed the training set to the learning algorithm we have created.
3.The hypothesis takes an input and tries to output the estimated value of our output Y.
What is the purpose of our hypothesis in a supervised regression problem?
The purpose of our hypothesis in a supervised regression problem is to take an input and try to return the estimated value of our output y.