Open
Description
we can easily access pytorch pre-trained model like VGG, AlexNet and SqueezeNet by
import torchvision
torchvision.models.vgg16(pretrained=True)
can anyone point out what's the relationship between the output label(index of maximum output value) and the actual category?
i downloaded ILSVRC2012_devkit_t12 and got the imagenet id and other metainfo provided by meta.mat, however it seems pre-trained model have some different id. because when i evaluate the network with ILSVRC2012 validation set, it reports 100% error.