├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── icon.jpg ├── include ├── caffe2 │ ├── operator │ │ ├── affine_scale_op.h │ │ ├── back_mean_op.h │ │ ├── cout_op.h │ │ ├── diagonal_op.h │ │ ├── mean_stdev_op.h │ │ ├── show_worst_op.h │ │ ├── squared_l2_channel_op.h │ │ ├── squared_l2_op.h │ │ ├── time_plot_op.h │ │ └── zero_one_op.h │ ├── util │ │ ├── blob.h │ │ ├── cmd.h │ │ ├── model.h │ │ ├── net.h │ │ ├── preprocess.h │ │ ├── progress.h │ │ ├── table.h │ │ ├── tensor.h │ │ └── train.h │ └── zoo │ │ ├── alexnet.h │ │ ├── googlenet.h │ │ ├── keeper.h │ │ ├── mobilenet.h │ │ ├── resnet.h │ │ ├── squeezenet.h │ │ └── vgg.h └── cvplot │ ├── color.h │ ├── cvplot.h │ ├── figure.h │ ├── highgui.h │ └── window.h ├── script ├── download_extra.sh ├── download_resource.sh ├── dream.jpg ├── dream2.jpg ├── imagenet.jpg ├── intro.jpg ├── mnist.jpg ├── plot.jpg ├── pretrained.jpg ├── retrain.jpg ├── toy.jpg └── train.jpg ├── src ├── caffe2 │ ├── binaries │ │ ├── diff.cc │ │ ├── dream.cc │ │ ├── imagenet.cc │ │ ├── inspect.cc │ │ ├── intro.cc │ │ ├── mnist.cc │ │ ├── pretrained.cc │ │ ├── rnn.cc │ │ ├── toy.cc │ │ └── train.cc │ ├── operator │ │ ├── affine_scale_op.cc │ │ ├── affine_scale_op.cu │ │ ├── back_mean_op.cc │ │ ├── back_mean_op.cu │ │ ├── cout_op.cc │ │ ├── diagonal_op.cc │ │ ├── diagonal_op.cu │ │ ├── mean_stdev_op.cc │ │ ├── mean_stdev_op.cu │ │ ├── show_worst_op.cc │ │ ├── squared_l2_channel_op.cc │ │ ├── squared_l2_channel_op.cu │ │ ├── squared_l2_op.cc │ │ ├── squared_l2_op.cu │ │ ├── time_plot_op.cc │ │ └── zero_one_op.cc │ └── util │ │ ├── blob.cc │ │ ├── external.pb.cc │ │ ├── external.pb.h │ │ ├── external.proto │ │ ├── model.cc │ │ ├── model.proto │ │ ├── net.cc │ │ ├── net_gradient.cc │ │ ├── net_operator.cc │ │ ├── net_serial.cc │ │ ├── progress.cc │ │ ├── table.cc │ │ └── tensor.cc └── cvplot │ ├── color.cc │ ├── figure.cc │ ├── highgui.cc │ ├── internal.h │ └── window.cc └── test └── caffe2 ├── core └── core_test.cc └── util ├── net_gradient_test.cc └── net_test.cc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/README.md -------------------------------------------------------------------------------- /icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/icon.jpg -------------------------------------------------------------------------------- /include/caffe2/operator/affine_scale_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/operator/affine_scale_op.h -------------------------------------------------------------------------------- /include/caffe2/operator/back_mean_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/operator/back_mean_op.h -------------------------------------------------------------------------------- /include/caffe2/operator/cout_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/operator/cout_op.h -------------------------------------------------------------------------------- /include/caffe2/operator/diagonal_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/operator/diagonal_op.h -------------------------------------------------------------------------------- /include/caffe2/operator/mean_stdev_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/operator/mean_stdev_op.h -------------------------------------------------------------------------------- /include/caffe2/operator/show_worst_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/operator/show_worst_op.h -------------------------------------------------------------------------------- /include/caffe2/operator/squared_l2_channel_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/operator/squared_l2_channel_op.h -------------------------------------------------------------------------------- /include/caffe2/operator/squared_l2_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/operator/squared_l2_op.h -------------------------------------------------------------------------------- /include/caffe2/operator/time_plot_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/operator/time_plot_op.h -------------------------------------------------------------------------------- /include/caffe2/operator/zero_one_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/operator/zero_one_op.h -------------------------------------------------------------------------------- /include/caffe2/util/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/util/blob.h -------------------------------------------------------------------------------- /include/caffe2/util/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/util/cmd.h -------------------------------------------------------------------------------- /include/caffe2/util/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/util/model.h -------------------------------------------------------------------------------- /include/caffe2/util/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/util/net.h -------------------------------------------------------------------------------- /include/caffe2/util/preprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/util/preprocess.h -------------------------------------------------------------------------------- /include/caffe2/util/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/util/progress.h -------------------------------------------------------------------------------- /include/caffe2/util/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/util/table.h -------------------------------------------------------------------------------- /include/caffe2/util/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/util/tensor.h -------------------------------------------------------------------------------- /include/caffe2/util/train.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/util/train.h -------------------------------------------------------------------------------- /include/caffe2/zoo/alexnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/zoo/alexnet.h -------------------------------------------------------------------------------- /include/caffe2/zoo/googlenet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/zoo/googlenet.h -------------------------------------------------------------------------------- /include/caffe2/zoo/keeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/zoo/keeper.h -------------------------------------------------------------------------------- /include/caffe2/zoo/mobilenet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/zoo/mobilenet.h -------------------------------------------------------------------------------- /include/caffe2/zoo/resnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/zoo/resnet.h -------------------------------------------------------------------------------- /include/caffe2/zoo/squeezenet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/zoo/squeezenet.h -------------------------------------------------------------------------------- /include/caffe2/zoo/vgg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/caffe2/zoo/vgg.h -------------------------------------------------------------------------------- /include/cvplot/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/cvplot/color.h -------------------------------------------------------------------------------- /include/cvplot/cvplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/cvplot/cvplot.h -------------------------------------------------------------------------------- /include/cvplot/figure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/cvplot/figure.h -------------------------------------------------------------------------------- /include/cvplot/highgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/cvplot/highgui.h -------------------------------------------------------------------------------- /include/cvplot/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/include/cvplot/window.h -------------------------------------------------------------------------------- /script/download_extra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/script/download_extra.sh -------------------------------------------------------------------------------- /script/download_resource.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/script/download_resource.sh -------------------------------------------------------------------------------- /script/dream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/script/dream.jpg -------------------------------------------------------------------------------- /script/dream2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/script/dream2.jpg -------------------------------------------------------------------------------- /script/imagenet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/script/imagenet.jpg -------------------------------------------------------------------------------- /script/intro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/script/intro.jpg -------------------------------------------------------------------------------- /script/mnist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/script/mnist.jpg -------------------------------------------------------------------------------- /script/plot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/script/plot.jpg -------------------------------------------------------------------------------- /script/pretrained.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/script/pretrained.jpg -------------------------------------------------------------------------------- /script/retrain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/script/retrain.jpg -------------------------------------------------------------------------------- /script/toy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/script/toy.jpg -------------------------------------------------------------------------------- /script/train.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/script/train.jpg -------------------------------------------------------------------------------- /src/caffe2/binaries/diff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/binaries/diff.cc -------------------------------------------------------------------------------- /src/caffe2/binaries/dream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/binaries/dream.cc -------------------------------------------------------------------------------- /src/caffe2/binaries/imagenet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/binaries/imagenet.cc -------------------------------------------------------------------------------- /src/caffe2/binaries/inspect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/binaries/inspect.cc -------------------------------------------------------------------------------- /src/caffe2/binaries/intro.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/binaries/intro.cc -------------------------------------------------------------------------------- /src/caffe2/binaries/mnist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/binaries/mnist.cc -------------------------------------------------------------------------------- /src/caffe2/binaries/pretrained.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/binaries/pretrained.cc -------------------------------------------------------------------------------- /src/caffe2/binaries/rnn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/binaries/rnn.cc -------------------------------------------------------------------------------- /src/caffe2/binaries/toy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/binaries/toy.cc -------------------------------------------------------------------------------- /src/caffe2/binaries/train.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/binaries/train.cc -------------------------------------------------------------------------------- /src/caffe2/operator/affine_scale_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/operator/affine_scale_op.cc -------------------------------------------------------------------------------- /src/caffe2/operator/affine_scale_op.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/operator/affine_scale_op.cu -------------------------------------------------------------------------------- /src/caffe2/operator/back_mean_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/operator/back_mean_op.cc -------------------------------------------------------------------------------- /src/caffe2/operator/back_mean_op.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/operator/back_mean_op.cu -------------------------------------------------------------------------------- /src/caffe2/operator/cout_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/operator/cout_op.cc -------------------------------------------------------------------------------- /src/caffe2/operator/diagonal_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/operator/diagonal_op.cc -------------------------------------------------------------------------------- /src/caffe2/operator/diagonal_op.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/operator/diagonal_op.cu -------------------------------------------------------------------------------- /src/caffe2/operator/mean_stdev_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/operator/mean_stdev_op.cc -------------------------------------------------------------------------------- /src/caffe2/operator/mean_stdev_op.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/operator/mean_stdev_op.cu -------------------------------------------------------------------------------- /src/caffe2/operator/show_worst_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/operator/show_worst_op.cc -------------------------------------------------------------------------------- /src/caffe2/operator/squared_l2_channel_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/operator/squared_l2_channel_op.cc -------------------------------------------------------------------------------- /src/caffe2/operator/squared_l2_channel_op.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/operator/squared_l2_channel_op.cu -------------------------------------------------------------------------------- /src/caffe2/operator/squared_l2_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/operator/squared_l2_op.cc -------------------------------------------------------------------------------- /src/caffe2/operator/squared_l2_op.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/operator/squared_l2_op.cu -------------------------------------------------------------------------------- /src/caffe2/operator/time_plot_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/operator/time_plot_op.cc -------------------------------------------------------------------------------- /src/caffe2/operator/zero_one_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/operator/zero_one_op.cc -------------------------------------------------------------------------------- /src/caffe2/util/blob.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/util/blob.cc -------------------------------------------------------------------------------- /src/caffe2/util/external.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/util/external.pb.cc -------------------------------------------------------------------------------- /src/caffe2/util/external.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/util/external.pb.h -------------------------------------------------------------------------------- /src/caffe2/util/external.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/util/external.proto -------------------------------------------------------------------------------- /src/caffe2/util/model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/util/model.cc -------------------------------------------------------------------------------- /src/caffe2/util/model.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/util/model.proto -------------------------------------------------------------------------------- /src/caffe2/util/net.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/util/net.cc -------------------------------------------------------------------------------- /src/caffe2/util/net_gradient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/util/net_gradient.cc -------------------------------------------------------------------------------- /src/caffe2/util/net_operator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/util/net_operator.cc -------------------------------------------------------------------------------- /src/caffe2/util/net_serial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/util/net_serial.cc -------------------------------------------------------------------------------- /src/caffe2/util/progress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/util/progress.cc -------------------------------------------------------------------------------- /src/caffe2/util/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/util/table.cc -------------------------------------------------------------------------------- /src/caffe2/util/tensor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/caffe2/util/tensor.cc -------------------------------------------------------------------------------- /src/cvplot/color.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/cvplot/color.cc -------------------------------------------------------------------------------- /src/cvplot/figure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/cvplot/figure.cc -------------------------------------------------------------------------------- /src/cvplot/highgui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/cvplot/highgui.cc -------------------------------------------------------------------------------- /src/cvplot/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/cvplot/internal.h -------------------------------------------------------------------------------- /src/cvplot/window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/src/cvplot/window.cc -------------------------------------------------------------------------------- /test/caffe2/core/core_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/test/caffe2/core/core_test.cc -------------------------------------------------------------------------------- /test/caffe2/util/net_gradient_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/test/caffe2/util/net_gradient_test.cc -------------------------------------------------------------------------------- /test/caffe2/util/net_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovandriel/caffe2_cpp_tutorial/HEAD/test/caffe2/util/net_test.cc --------------------------------------------------------------------------------