summaryrefslogtreecommitdiff
path: root/examples/cpp_classification
AgeCommit message (Collapse)AuthorFilesLines
2018-10-08examples: measure performance of inferenceInki Dae2-12/+34
Signed-off-by: Inki Dae <inki.dae@samsung.com>
2018-01-31v0.5.0huifang1-0/+547
2017-06-021. Porting Caffe onto ARM Compute Library.Yao Honggui2-0/+1092
2. The release version is 0.2.0
2016-09-15Fixed typos in examples/cpp_classification/readmeMiguel Lloreda1-2/+2
2016-04-27fixed typo in download script command cpp_classificationSammy Sidhu1-1/+1
2016-02-25[examples] switch examples + models to Input layersEvan Shelhamer1-1/+1
2015-11-27Merge pull request #2693 from AdamStelmaszczyk/patch-1Ronghang Hu1-4/+4
Deprecated OpenCV consts leading to compilation error
2015-09-17Separate IO dependenciesTea1-0/+8
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.
2015-08-14Make classification.bin support models with less than 5 classesFelix Abecassis1-0/+2
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
2015-07-06Deprecated OpenCV constsAdamStelmaszczyk1-4/+4
2015-05-29Add a simple C++ classification exampleFelix Abecassis2-0/+332
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