Reputation: 777
I'm wondering how I can save in Caffe the output of testing results (predicted labels) in a file?
In addition to averaged accuracy reported by Caffe on the screen, I'd like to take a look at the labels in detail.
Thank you, Saman
Upvotes: 1
Views: 491
Reputation: 61
@Saman - I would suggest you to use the original version of Caffe which is designed for Linux . As they have mentioned in their website, the Windows version is unofficial. Hope it helps.
Upvotes: 2
Reputation: 114866
Caffe offers a "HDF5Output"
layer that can save to hdf5 binary file the outputs of certain layers.
You can see the header file for more information.
Upvotes: 1