Where can I find the label map between trained model like googleNet's output to there real class label?

前端 未结 1 1460
南方客
南方客 2021-01-14 03:04

everyone, I am new to caffe. Currently, I try to use the trained GoogleNet which was downloaded from model zoo to classify some images. However, the network\'s output seem t

相关标签:
1条回答
  • 2021-01-14 03:48

    If you got caffe from git you should find in data/ilsvrc12 folder a shell script get_ilsvrc_aux.sh.
    This script should download several files used for ilsvrc (sub set of imagenet used for the large scale image recognition challenge) training.

    The most interesting file (for you) that will be downloaded is synset_words.txt, this file has 1000 lines, one line per class identified by the net.
    The format of the line is

    nXXXXXXXX description of class

    0 讨论(0)
提交回复
热议问题