What does recall mean in Machine Learning?

前端 未结 6 1068
一向
一向 2021-01-31 10:42

I know that the meaning of recall in search engine, but what\'s the meaning of recall of a classifier, e.g. bayes classifier? please give a an example, thanks.

for examp

6条回答
  •  情话喂你
    2021-01-31 11:27

    I found the explanation of Precision and Recall from Wikipedia very useful:

    Suppose a computer program for recognizing dogs in photographs identifies 8 dogs in a picture containing 12 dogs and some cats. Of the 8 dogs identified, 5 actually are dogs (true positives), while the rest are cats (false positives). The program's precision is 5/8 while its recall is 5/12. When a search engine returns 30 pages only 20 of which were relevant while failing to return 40 additional relevant pages, its precision is 20/30 = 2/3 while its recall is 20/60 = 1/3.

    So, in this case, precision is "how useful the search results are", and recall is "how complete the results are".

提交回复
热议问题