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

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -