I know that:
- unsupervised learning is that of trying to find hidden structure in unlabeled data,otherwise ,we call it supervised learning.
- regression is also a type of classification ,except that its output is infinite number of numeric numbers.
- I also know that classification is a type of supervised learning.
But what make me confused is:
- linear regression(line fitting) is a type of regression? if so , why its data is unlabeled?For example, its sample data is just a quantity of coordinates like (1,2),(2,3),(1,4)?
- logistic regression(classification) is a type of regression ?if so ,why its output is just norminal(value,true of false ,0 or 1)?
Anyone can help me figure out this?