├── README.md ├── examples ├── cifar10 │ └── cifar10_quick_iter_5000.caffemodel ├── images │ ├── cat10.png │ ├── dog10.png │ └── truck10.png └── prediction_example │ ├── file_list.txt │ └── prediction_example.prototxt └── tools └── prediction_example.cpp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkiChung/Prediction-Example-With-Caffe/HEAD/README.md -------------------------------------------------------------------------------- /examples/cifar10/cifar10_quick_iter_5000.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkiChung/Prediction-Example-With-Caffe/HEAD/examples/cifar10/cifar10_quick_iter_5000.caffemodel -------------------------------------------------------------------------------- /examples/images/cat10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkiChung/Prediction-Example-With-Caffe/HEAD/examples/images/cat10.png -------------------------------------------------------------------------------- /examples/images/dog10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkiChung/Prediction-Example-With-Caffe/HEAD/examples/images/dog10.png -------------------------------------------------------------------------------- /examples/images/truck10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkiChung/Prediction-Example-With-Caffe/HEAD/examples/images/truck10.png -------------------------------------------------------------------------------- /examples/prediction_example/file_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkiChung/Prediction-Example-With-Caffe/HEAD/examples/prediction_example/file_list.txt -------------------------------------------------------------------------------- /examples/prediction_example/prediction_example.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkiChung/Prediction-Example-With-Caffe/HEAD/examples/prediction_example/prediction_example.prototxt -------------------------------------------------------------------------------- /tools/prediction_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkiChung/Prediction-Example-With-Caffe/HEAD/tools/prediction_example.cpp --------------------------------------------------------------------------------