imagenet2012_real

이 데이터 세트에는 "Are we done with ImageNet" 논문의 새로운 "Re-Assessed"(ReaL) 레이블 세트로 보강된 ILSVRC-2012(ImageNet) 검증 이미지가 포함되어 있습니다( https://arxiv.org/abs/2006.07159 참조). 레이블은 향상된 프로토콜을 사용하여 수집되므로 다중 레이블 및 보다 정확한 주석이 생성됩니다.

중요 참고 사항: 약 3500개의 예에는 레이블이 포함되어 있지 않으므로 정확도를 계산할 때 평균에서 제외 해야 합니다. 이를 수행하는 한 가지 가능한 방법은 다음 NumPy 코드를 사용하는 것입니다.

is_correct = [pred in real_labels[i] for i, pred in enumerate(predictions) if real_labels[i]]
real_accuracy = np.mean(is_correct)
나뉘다
'validation' 50,000
  • 기능 구조 :
FeaturesDict({
    'file_name': Text(shape=(), dtype=string),
    'image': Image(shape=(None, None, 3), dtype=uint8),
    'original_label': ClassLabel(shape=(), dtype=int64, num_classes=1000),
    'real_label': Sequence(ClassLabel(shape=(), dtype=int64, num_classes=1000)),
})
  • 기능 문서 :
특징 수업 모양 D타입 설명
풍모Dict
파일 이름 텍스트
영상 영상 (없음, 없음, 3) uint8
original_label 클래스 레이블 int64
real_label 시퀀스(클래스 레이블) (없음,) int64

심상

  • 인용 :
@article{beyer2020imagenet,
  title={Are we done with ImageNet?},
  author={Lucas Beyer and Olivier J. Henaff and Alexander Kolesnikov and Xiaohua Zhai and Aaron van den Oord},
  journal={arXiv preprint arXiv:2002.05709},
  year={2020}
}
@article{ILSVRC15,
  Author={Olga Russakovsky and Jia Deng and Hao Su and Jonathan Krause and Sanjeev Satheesh and Sean Ma and Zhiheng Huang and Andrej Karpathy and Aditya Khosla and Michael Bernstein and Alexander C. Berg and Li Fei-Fei},
  Title={ {ImageNet Large Scale Visual Recognition Challenge} },
  Year={2015},
  journal={International Journal of Computer Vision (IJCV)},
  doi={10.1007/s11263-015-0816-y},
  volume={115},
  number={3},
  pages={211-252}
}