├── 2016-09-29-your-filename.md ├── LICENSE ├── README.md ├── docs └── wiki │ ├── caffe_comparison.png │ ├── caffe_network_mnist.png │ └── ex1_hellocaffe │ ├── main.png │ └── project.png └── examples ├── .directory ├── ex0_cudatest ├── CMakeLists.txt ├── axpygpu.cu ├── axpygpu.h └── main.cpp ├── ex1_hellocaffe ├── CMakeLists.txt └── main.cpp ├── ex2_blob ├── CMakeLists.txt ├── ex_blob.cpp └── ex_math.cpp ├── ex3_dataset ├── CMakeLists.txt └── ex_dataset.cpp ├── ex4_layer ├── CMakeLists.txt └── main.cpp └── ex5_net ├── CMakeLists.txt ├── bindb.cpp ├── logreg_test.cpp └── logreg_train.cpp /2016-09-29-your-filename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/2016-09-29-your-filename.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/README.md -------------------------------------------------------------------------------- /docs/wiki/caffe_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/docs/wiki/caffe_comparison.png -------------------------------------------------------------------------------- /docs/wiki/caffe_network_mnist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/docs/wiki/caffe_network_mnist.png -------------------------------------------------------------------------------- /docs/wiki/ex1_hellocaffe/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/docs/wiki/ex1_hellocaffe/main.png -------------------------------------------------------------------------------- /docs/wiki/ex1_hellocaffe/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/docs/wiki/ex1_hellocaffe/project.png -------------------------------------------------------------------------------- /examples/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2015,8,4,16,23,37 3 | Version=3 4 | -------------------------------------------------------------------------------- /examples/ex0_cudatest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/examples/ex0_cudatest/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex0_cudatest/axpygpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/examples/ex0_cudatest/axpygpu.cu -------------------------------------------------------------------------------- /examples/ex0_cudatest/axpygpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/examples/ex0_cudatest/axpygpu.h -------------------------------------------------------------------------------- /examples/ex0_cudatest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/examples/ex0_cudatest/main.cpp -------------------------------------------------------------------------------- /examples/ex1_hellocaffe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/examples/ex1_hellocaffe/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex1_hellocaffe/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/examples/ex1_hellocaffe/main.cpp -------------------------------------------------------------------------------- /examples/ex2_blob/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/examples/ex2_blob/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex2_blob/ex_blob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/examples/ex2_blob/ex_blob.cpp -------------------------------------------------------------------------------- /examples/ex2_blob/ex_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/examples/ex2_blob/ex_math.cpp -------------------------------------------------------------------------------- /examples/ex3_dataset/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/examples/ex3_dataset/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex3_dataset/ex_dataset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/examples/ex3_dataset/ex_dataset.cpp -------------------------------------------------------------------------------- /examples/ex4_layer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/examples/ex4_layer/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex4_layer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/examples/ex4_layer/main.cpp -------------------------------------------------------------------------------- /examples/ex5_net/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/examples/ex5_net/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex5_net/bindb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/examples/ex5_net/bindb.cpp -------------------------------------------------------------------------------- /examples/ex5_net/logreg_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/examples/ex5_net/logreg_test.cpp -------------------------------------------------------------------------------- /examples/ex5_net/logreg_train.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koosyong/caffestudy/HEAD/examples/ex5_net/logreg_train.cpp --------------------------------------------------------------------------------