Feb 14, 2021 -- News! -- All val set label errors (+ 9 other datasets) are here: labelerrors.com.
http://places.csail.mit.edu/imagenet/ilsvrc2012_val.tar
https://raw.githubusercontent.com/soumith/imagenetloader.torch/master/valprep.sh
This text file contains a list of 5000 Python dicts, each representing a predicted label error.
The first two dicts in the list, look like:
# Ordered by prob_max_label - prob_given_label
[{u'given_label': u'bucket',
u'id_str': u'n02909870/ILSVRC2012_val_00006594.JPEG',
u'predicted_label': u'baseball',
u'prob_given_label': 1.1067604e-10,
u'prob_max_label': 1.0},
{u'given_label': u'assault rifle',
u'id_str': u'n02749479/ILSVRC2012_val_00040844.JPEG',
u'predicted_label': u'bearskin',
u'prob_given_label': 4.8315085e-12,
u'prob_max_label': 1.0},
...
]
The dicts are ordered from top to bottom by confidence of being a label error. Computationally, this means they are sorted by prob_max_label - prob_given_label.