machine learning - Object categories of pretrained imagenet model in caffe -
i'm using pretrained imagenet model provided along caffe (cnn) library ('bvlc_reference_caffenet.caffemodel'
). can output 1000 dim vector of object scores images using model.
don't know actual object categories are. did find file, corresponding object categories listed?
you should file 'synset_words.txt'
has 1000 line each line provides description of different class.
for more information on how file (and others might need) can read this.
if want labels ready-for-use in matlab, can read txt file cell array (a cell per class):
c = textread('/path/to/synset_words.txt','%s','delimiter','\n');
Comments
Post a Comment