Age | Commit message (Collapse) | Author | Files | Lines |
|
Signed-off-by: Inki Dae <inki.dae@samsung.com>
|
|
|
|
2. The release version is 0.2.0
|
|
|
|
|
|
|
|
Deprecated OpenCV consts leading to compilation error
|
|
OpenCV, LMDB, LevelDB and Snappy are made optional via switches
(USE_OPENCV, USE_LMDB, USE_LEVELDB) available for Make and CMake
builds. Since Snappy is a LevelDB dependency, its use is determined by
USE_LEVELDB. HDF5 is left bundled because it is used for serializing
weights and solverstates.
|
|
The example program would crash if the number of classes was less than
5, since it was still attempting to get the top 5 predictions.
Close #2585
|
|
|
|
Closes #2487
Example usage:
./build/examples/cpp_classification/classification.bin \
models/bvlc_reference_caffenet/deploy.prototxt \
models/bvlc_reference_caffenet/bvlc_reference_caffenet.caffemodel \
data/ilsvrc12/imagenet_mean.binaryproto \
data/ilsvrc12/synset_words.txt \
examples/images/cat.jpg
|