美文网首页
CS231n___Image classification

CS231n___Image classification

作者: Jiajia_Li | 来源:发表于2018-05-07 15:16 被阅读0次

First, let’s load the CIFAR-10 data into memory as 4 arrays: the training data/labels and the test data/labels.

Nearest Neighbor Classifier

  1. The nearest neighbor classifier will take a test image, compare it to ‘every single one’ of the training images, and predict the label of the closest training image.
  2. L1 distance and L2 distance

k - Nearest Neighbor Classifier

  1. 和 Nearest Neighbor Classifier 区别是什么:The idea is very simple: instead of finding the 'single closest image' in the training set, we will find the 'top k closest images', and have them vote on the label of the test image. In particular, when k = 1, we recover the Nearest Neighbor classifier. Intuitively, higher values of k have a smoothing effect that makes the classifier more resistant to outliers

相关文章

网友评论

      本文标题:CS231n___Image classification

      本文链接:https://www.haomeiwen.com/subject/putvrftx.html