What is the difference between labeled and unlabeled data?

前端 未结 5 2060
醉话见心
醉话见心 2021-01-30 10:01

In this video from Sebastian Thrum he says that supervised learning works with \"labeled\" data and unsupervised learning works with \"unlabeled\" data. What does he mean by thi

5条回答
  •  时光说笑
    2021-01-30 10:48

    There are many different problems in Machine Learning so I'll pick classification as a case in point. In classification, labelled data typically consists of a bag of multidimensional feature vectors (normally called X) and for each vector a label, Y which is often just an integer corresponding to a category eg. (face=1, non-face=-1). Unlabelled data misses the Y component. There are many scenarios where unlabelled data is plentiful and easily obtained but labelled data often requires a human/expert to annotate.

提交回复
热议问题