├── Makefile ├── README.md ├── deploy_models ├── mnist_init_net.pbtxt └── mnist_predict_net.pbtxt ├── imgs ├── 0.bmp ├── 1.bmp ├── 2.bmp ├── 3.bmp ├── 4.bmp ├── 5.bmp ├── 6.bmp ├── 7.bmp ├── 8.bmp └── 9.bmp ├── src ├── Caffe2Net.cpp ├── Caffe2Net.h ├── LeNet.cpp ├── LeNet.h └── main.cpp ├── test_plan.pbtxt └── train_plan.pbtxt /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/README.md -------------------------------------------------------------------------------- /deploy_models/mnist_init_net.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/deploy_models/mnist_init_net.pbtxt -------------------------------------------------------------------------------- /deploy_models/mnist_predict_net.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/deploy_models/mnist_predict_net.pbtxt -------------------------------------------------------------------------------- /imgs/0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/imgs/0.bmp -------------------------------------------------------------------------------- /imgs/1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/imgs/1.bmp -------------------------------------------------------------------------------- /imgs/2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/imgs/2.bmp -------------------------------------------------------------------------------- /imgs/3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/imgs/3.bmp -------------------------------------------------------------------------------- /imgs/4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/imgs/4.bmp -------------------------------------------------------------------------------- /imgs/5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/imgs/5.bmp -------------------------------------------------------------------------------- /imgs/6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/imgs/6.bmp -------------------------------------------------------------------------------- /imgs/7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/imgs/7.bmp -------------------------------------------------------------------------------- /imgs/8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/imgs/8.bmp -------------------------------------------------------------------------------- /imgs/9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/imgs/9.bmp -------------------------------------------------------------------------------- /src/Caffe2Net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/src/Caffe2Net.cpp -------------------------------------------------------------------------------- /src/Caffe2Net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/src/Caffe2Net.h -------------------------------------------------------------------------------- /src/LeNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/src/LeNet.cpp -------------------------------------------------------------------------------- /src/LeNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/src/LeNet.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/src/main.cpp -------------------------------------------------------------------------------- /test_plan.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/test_plan.pbtxt -------------------------------------------------------------------------------- /train_plan.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadbread1984/Caffe2-C-demo/HEAD/train_plan.pbtxt --------------------------------------------------------------------------------