imagenet_a

ImageNet-A는 새로운 데이터를 수집하고 ResNet-50 모델이 올바르게 분류하지 못하는 이미지만 유지하여 얻은 ImageNet 레이블로 레이블이 지정된 이미지 세트입니다. 자세한 내용은 논문을 참조하십시오.

라벨 공간은 ImageNet2012와 동일합니다. 각 예는 다음 키가 있는 사전으로 표시됩니다.

나뉘다
'test' 7,500
  • 기능 구조 :
FeaturesDict({
    'file_name': Text(shape=(), dtype=string),
    'image': Image(shape=(None, None, 3), dtype=uint8),
    'label': ClassLabel(shape=(), dtype=int64, num_classes=1000),
})
  • 기능 문서 :
특징 수업 모양 D타입 설명
풍모Dict
파일 이름 텍스트
영상 영상 (없음, 없음, 3) uint8
상표 클래스 레이블 int64

심상

  • 인용 :
@article{hendrycks2019nae,
  title={Natural Adversarial Examples},
  author={Dan Hendrycks and Kevin Zhao and Steven Basart and Jacob Steinhardt and Dawn Song},
  journal={arXiv preprint arXiv:1907.07174},
  year={2019}
}