├── .gitignore ├── ICCV15_results ├── SVMs │ ├── JHMDB_brush_hair_test1.mat │ ├── JHMDB_brush_hair_test2.mat │ ├── JHMDB_brush_hair_test3.mat │ ├── JHMDB_catch_test1.mat │ ├── JHMDB_catch_test2.mat │ ├── JHMDB_catch_test3.mat │ ├── JHMDB_clap_test1.mat │ ├── JHMDB_clap_test2.mat │ ├── JHMDB_clap_test3.mat │ ├── JHMDB_climb_stairs_test1.mat │ ├── JHMDB_climb_stairs_test2.mat │ ├── JHMDB_climb_stairs_test3.mat │ ├── JHMDB_golf_test1.mat │ ├── JHMDB_golf_test2.mat │ ├── JHMDB_golf_test3.mat │ ├── JHMDB_jump_test1.mat │ ├── JHMDB_jump_test2.mat │ ├── JHMDB_jump_test3.mat │ ├── JHMDB_kick_ball_test1.mat │ ├── JHMDB_kick_ball_test2.mat │ ├── JHMDB_kick_ball_test3.mat │ ├── JHMDB_pick_test1.mat │ ├── JHMDB_pick_test2.mat │ ├── JHMDB_pick_test3.mat │ ├── JHMDB_pour_test1.mat │ ├── JHMDB_pour_test2.mat │ ├── JHMDB_pour_test3.mat │ ├── JHMDB_pullup_test1.mat │ ├── JHMDB_pullup_test2.mat │ ├── JHMDB_pullup_test3.mat │ ├── JHMDB_push_test1.mat │ ├── JHMDB_push_test2.mat │ ├── JHMDB_push_test3.mat │ ├── JHMDB_run_test1.mat │ ├── JHMDB_run_test2.mat │ ├── JHMDB_run_test3.mat │ ├── JHMDB_shoot_ball_test1.mat │ ├── JHMDB_shoot_ball_test2.mat │ ├── JHMDB_shoot_ball_test3.mat │ ├── JHMDB_shoot_bow_test1.mat │ ├── JHMDB_shoot_bow_test2.mat │ ├── JHMDB_shoot_bow_test3.mat │ ├── JHMDB_shoot_gun_test1.mat │ ├── JHMDB_shoot_gun_test2.mat │ ├── JHMDB_shoot_gun_test3.mat │ ├── JHMDB_sit_test1.mat │ ├── JHMDB_sit_test2.mat │ ├── JHMDB_sit_test3.mat │ ├── JHMDB_stand_test1.mat │ ├── JHMDB_stand_test2.mat │ ├── JHMDB_stand_test3.mat │ ├── JHMDB_swing_baseball_test1.mat │ ├── JHMDB_swing_baseball_test2.mat │ ├── JHMDB_swing_baseball_test3.mat │ ├── JHMDB_throw_test1.mat │ ├── JHMDB_throw_test2.mat │ ├── JHMDB_throw_test3.mat │ ├── JHMDB_walk_test1.mat │ ├── JHMDB_walk_test2.mat │ ├── JHMDB_walk_test3.mat │ ├── JHMDB_wave_test1.mat │ ├── JHMDB_wave_test2.mat │ └── JHMDB_wave_test3.mat ├── ktest_split1.mat ├── ktest_split2.mat ├── ktest_split3.mat ├── labels_split1.mat ├── labels_split2.mat └── labels_split3.mat ├── JHMDB └── splitlists │ ├── JHMDB_test1.txt │ ├── JHMDB_test2.txt │ ├── JHMDB_test3.txt │ ├── JHMDB_train1.txt │ ├── JHMDB_train2.txt │ └── JHMDB_train3.txt ├── LICENSE.md ├── README.md ├── brox_OF ├── mex_OF.m ├── mex_OF.mexa64 ├── mex_OF.mexw32 └── mex_OF.mexw64 ├── compute_OF.m ├── compute_pcnn_features.m ├── demo.m ├── extract_cnn_features.m ├── extract_cnn_patches.m ├── get_box_and_fill.m ├── init.sh ├── matconvnet-1.0-beta11 ├── .gitignore ├── .gitmodules ├── COPYING ├── Makefile ├── Makefile.mex ├── Makefile.nvcc ├── README.md ├── doc │ ├── Makefile │ ├── matconvnet-manual.tex │ ├── matdoc.py │ ├── matdocparser.py │ ├── references.bib │ └── site │ │ ├── docs │ │ ├── about.md │ │ ├── css │ │ │ ├── fixes.css │ │ │ └── tables.css │ │ ├── developers.md │ │ ├── functions.md │ │ ├── gpu.md │ │ ├── index.md │ │ ├── install-alt.md │ │ ├── install.md │ │ ├── js │ │ │ └── mathjaxhelper.js │ │ ├── pretrained.md │ │ └── training.md │ │ └── mkdocs.yml ├── examples │ ├── cnn_cifar.m │ ├── cnn_cifar_init.m │ ├── cnn_cifar_init_nin.m │ ├── cnn_imagenet.m │ ├── cnn_imagenet_evaluate.m │ ├── cnn_imagenet_get_batch.m │ ├── cnn_imagenet_init.m │ ├── cnn_imagenet_init_bnorm.m │ ├── cnn_imagenet_mgpu.m │ ├── cnn_imagenet_minimal.m │ ├── cnn_imagenet_setup_data.m │ ├── cnn_imagenet_sync_labels.m │ ├── cnn_mnist.m │ ├── cnn_mnist_experiments.m │ ├── cnn_mnist_init.m │ └── cnn_train.m ├── matconv.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── matconv CPU.xcscheme │ │ ├── matconv GPU.xcscheme │ │ └── matconv cuDNN.xcscheme ├── matlab │ ├── src │ │ ├── bits │ │ │ ├── data.cpp │ │ │ ├── data.cu │ │ │ ├── data.hpp │ │ │ ├── datacu.cu │ │ │ ├── datacu.hpp │ │ │ ├── datamex.cpp │ │ │ ├── datamex.cu │ │ │ ├── datamex.hpp │ │ │ ├── impl │ │ │ │ ├── blashelper.hpp │ │ │ │ ├── copy.hpp │ │ │ │ ├── copy_cpu.cpp │ │ │ │ ├── copy_gpu.cu │ │ │ │ ├── fast_mutex.h │ │ │ │ ├── im2row.hpp │ │ │ │ ├── im2row_cpu.cpp │ │ │ │ ├── im2row_gpu.cu │ │ │ │ ├── imread_gdiplus.cpp │ │ │ │ ├── imread_helpers.hpp │ │ │ │ ├── imread_libjpeg.cpp │ │ │ │ ├── imread_quartz.cpp │ │ │ │ ├── nnconv_blas.hpp │ │ │ │ ├── nnconv_cudnn.cu │ │ │ │ ├── nnconv_cudnn.hpp │ │ │ │ ├── nnpooling_cudnn.cu │ │ │ │ ├── nnpooling_cudnn.hpp │ │ │ │ ├── normalize.hpp │ │ │ │ ├── normalize_cpu.cpp │ │ │ │ ├── normalize_gpu.cu │ │ │ │ ├── pooling.hpp │ │ │ │ ├── pooling_cpu.cpp │ │ │ │ ├── pooling_gpu.cu │ │ │ │ ├── subsample.hpp │ │ │ │ ├── subsample_cpu.cpp │ │ │ │ ├── subsample_gpu.cu │ │ │ │ ├── tinythread.cpp │ │ │ │ └── tinythread.h │ │ │ ├── imread.hpp │ │ │ ├── mexutils.h │ │ │ ├── nnconv.cpp │ │ │ ├── nnconv.cu │ │ │ ├── nnconv.hpp │ │ │ ├── nnfullyconnected.cpp │ │ │ ├── nnfullyconnected.cu │ │ │ ├── nnfullyconnected.hpp │ │ │ ├── nnnormalize.cpp │ │ │ ├── nnnormalize.cu │ │ │ ├── nnnormalize.hpp │ │ │ ├── nnpooling.cpp │ │ │ ├── nnpooling.cu │ │ │ ├── nnpooling.hpp │ │ │ ├── nnsubsample.cpp │ │ │ ├── nnsubsample.cu │ │ │ └── nnsubsample.hpp │ │ ├── config │ │ │ ├── mex_CUDA_glnxa64.sh │ │ │ ├── mex_CUDA_glnxa64.xml │ │ │ ├── mex_CUDA_maci64.sh │ │ │ └── mex_CUDA_maci64.xml │ │ ├── vl_imreadjpeg.cpp │ │ ├── vl_imreadjpeg.cu │ │ ├── vl_nnconv.cpp │ │ ├── vl_nnconv.cu │ │ ├── vl_nnnormalize.cpp │ │ ├── vl_nnnormalize.cu │ │ ├── vl_nnpool.cpp │ │ └── vl_nnpool.cu │ ├── vl_argparse.m │ ├── vl_compilenn.m │ ├── vl_imreadjpeg.m │ ├── vl_nnbnorm.m │ ├── vl_nnconv.m │ ├── vl_nndropout.m │ ├── vl_nnloss.m │ ├── vl_nnnoffset.m │ ├── vl_nnnormalize.m │ ├── vl_nnpdist.m │ ├── vl_nnpool.m │ ├── vl_nnrelu.m │ ├── vl_nnsigmoid.m │ ├── vl_nnsoftmax.m │ ├── vl_nnsoftmaxloss.m │ ├── vl_nnspnorm.m │ ├── vl_rootnn.m │ ├── vl_setupnn.m │ ├── vl_simplenn.m │ ├── vl_simplenn_diagnose.m │ ├── vl_simplenn_display.m │ ├── vl_simplenn_move.m │ └── xtest │ │ ├── vl_bench_bnorm.m │ │ ├── vl_bench_imreadjpeg.m │ │ ├── vl_nnbnorm_old.m │ │ ├── vl_test_economic_relu.m │ │ ├── vl_test_gpureset.m │ │ ├── vl_test_imreadjpeg.m │ │ ├── vl_test_nnlayers.m │ │ ├── vl_testder.m │ │ └── vl_testsim.m ├── my_build.m └── utils │ ├── evaluate_ref_models.m │ ├── import-caffe.py │ ├── import-ref-models.sh │ ├── preprocess-imagenet.sh │ └── proto │ ├── __init__.py │ ├── caffe.proto │ ├── caffe_old.proto │ ├── caffe_old_pb2.py │ ├── caffe_pb2.py │ ├── vgg_caffe.proto │ ├── vgg_caffe_pb2.py │ └── vgg_synset_words.txt └── reproduce_ICCV15_results.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/.gitignore -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_brush_hair_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_brush_hair_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_brush_hair_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_brush_hair_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_brush_hair_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_brush_hair_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_catch_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_catch_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_catch_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_catch_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_catch_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_catch_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_clap_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_clap_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_clap_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_clap_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_clap_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_clap_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_climb_stairs_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_climb_stairs_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_climb_stairs_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_climb_stairs_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_climb_stairs_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_climb_stairs_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_golf_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_golf_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_golf_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_golf_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_golf_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_golf_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_jump_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_jump_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_jump_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_jump_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_jump_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_jump_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_kick_ball_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_kick_ball_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_kick_ball_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_kick_ball_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_kick_ball_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_kick_ball_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_pick_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_pick_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_pick_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_pick_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_pick_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_pick_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_pour_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_pour_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_pour_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_pour_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_pour_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_pour_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_pullup_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_pullup_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_pullup_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_pullup_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_pullup_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_pullup_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_push_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_push_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_push_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_push_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_push_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_push_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_run_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_run_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_run_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_run_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_run_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_run_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_shoot_ball_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_shoot_ball_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_shoot_ball_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_shoot_ball_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_shoot_ball_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_shoot_ball_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_shoot_bow_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_shoot_bow_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_shoot_bow_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_shoot_bow_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_shoot_bow_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_shoot_bow_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_shoot_gun_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_shoot_gun_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_shoot_gun_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_shoot_gun_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_shoot_gun_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_shoot_gun_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_sit_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_sit_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_sit_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_sit_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_sit_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_sit_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_stand_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_stand_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_stand_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_stand_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_stand_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_stand_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_swing_baseball_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_swing_baseball_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_swing_baseball_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_swing_baseball_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_swing_baseball_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_swing_baseball_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_throw_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_throw_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_throw_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_throw_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_throw_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_throw_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_walk_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_walk_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_walk_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_walk_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_walk_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_walk_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_wave_test1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_wave_test1.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_wave_test2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_wave_test2.mat -------------------------------------------------------------------------------- /ICCV15_results/SVMs/JHMDB_wave_test3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/SVMs/JHMDB_wave_test3.mat -------------------------------------------------------------------------------- /ICCV15_results/ktest_split1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/ktest_split1.mat -------------------------------------------------------------------------------- /ICCV15_results/ktest_split2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/ktest_split2.mat -------------------------------------------------------------------------------- /ICCV15_results/ktest_split3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/ktest_split3.mat -------------------------------------------------------------------------------- /ICCV15_results/labels_split1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/labels_split1.mat -------------------------------------------------------------------------------- /ICCV15_results/labels_split2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/labels_split2.mat -------------------------------------------------------------------------------- /ICCV15_results/labels_split3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/ICCV15_results/labels_split3.mat -------------------------------------------------------------------------------- /JHMDB/splitlists/JHMDB_test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/JHMDB/splitlists/JHMDB_test1.txt -------------------------------------------------------------------------------- /JHMDB/splitlists/JHMDB_test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/JHMDB/splitlists/JHMDB_test2.txt -------------------------------------------------------------------------------- /JHMDB/splitlists/JHMDB_test3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/JHMDB/splitlists/JHMDB_test3.txt -------------------------------------------------------------------------------- /JHMDB/splitlists/JHMDB_train1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/JHMDB/splitlists/JHMDB_train1.txt -------------------------------------------------------------------------------- /JHMDB/splitlists/JHMDB_train2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/JHMDB/splitlists/JHMDB_train2.txt -------------------------------------------------------------------------------- /JHMDB/splitlists/JHMDB_train3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/JHMDB/splitlists/JHMDB_train3.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/README.md -------------------------------------------------------------------------------- /brox_OF/mex_OF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/brox_OF/mex_OF.m -------------------------------------------------------------------------------- /brox_OF/mex_OF.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/brox_OF/mex_OF.mexa64 -------------------------------------------------------------------------------- /brox_OF/mex_OF.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/brox_OF/mex_OF.mexw32 -------------------------------------------------------------------------------- /brox_OF/mex_OF.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/brox_OF/mex_OF.mexw64 -------------------------------------------------------------------------------- /compute_OF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/compute_OF.m -------------------------------------------------------------------------------- /compute_pcnn_features.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/compute_pcnn_features.m -------------------------------------------------------------------------------- /demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/demo.m -------------------------------------------------------------------------------- /extract_cnn_features.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/extract_cnn_features.m -------------------------------------------------------------------------------- /extract_cnn_patches.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/extract_cnn_patches.m -------------------------------------------------------------------------------- /get_box_and_fill.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/get_box_and_fill.m -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/init.sh -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/.gitignore -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/COPYING -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/Makefile -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/Makefile.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/Makefile.mex -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/Makefile.nvcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/Makefile.nvcc -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/README.md -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/doc/Makefile -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/doc/matconvnet-manual.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/doc/matconvnet-manual.tex -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/doc/matdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/doc/matdoc.py -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/doc/matdocparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/doc/matdocparser.py -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/doc/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/doc/references.bib -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/doc/site/docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/doc/site/docs/about.md -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/doc/site/docs/css/fixes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/doc/site/docs/css/fixes.css -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/doc/site/docs/css/tables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/doc/site/docs/css/tables.css -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/doc/site/docs/developers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/doc/site/docs/developers.md -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/doc/site/docs/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/doc/site/docs/functions.md -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/doc/site/docs/gpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/doc/site/docs/gpu.md -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/doc/site/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/doc/site/docs/index.md -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/doc/site/docs/install-alt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/doc/site/docs/install-alt.md -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/doc/site/docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/doc/site/docs/install.md -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/doc/site/docs/js/mathjaxhelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/doc/site/docs/js/mathjaxhelper.js -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/doc/site/docs/pretrained.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/doc/site/docs/pretrained.md -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/doc/site/docs/training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/doc/site/docs/training.md -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/doc/site/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/doc/site/mkdocs.yml -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/examples/cnn_cifar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/examples/cnn_cifar.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/examples/cnn_cifar_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/examples/cnn_cifar_init.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/examples/cnn_cifar_init_nin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/examples/cnn_cifar_init_nin.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/examples/cnn_imagenet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/examples/cnn_imagenet.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/examples/cnn_imagenet_evaluate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/examples/cnn_imagenet_evaluate.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/examples/cnn_imagenet_get_batch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/examples/cnn_imagenet_get_batch.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/examples/cnn_imagenet_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/examples/cnn_imagenet_init.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/examples/cnn_imagenet_init_bnorm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/examples/cnn_imagenet_init_bnorm.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/examples/cnn_imagenet_mgpu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/examples/cnn_imagenet_mgpu.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/examples/cnn_imagenet_minimal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/examples/cnn_imagenet_minimal.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/examples/cnn_imagenet_setup_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/examples/cnn_imagenet_setup_data.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/examples/cnn_imagenet_sync_labels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/examples/cnn_imagenet_sync_labels.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/examples/cnn_mnist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/examples/cnn_mnist.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/examples/cnn_mnist_experiments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/examples/cnn_mnist_experiments.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/examples/cnn_mnist_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/examples/cnn_mnist_init.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/examples/cnn_train.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/examples/cnn_train.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matconv.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matconv.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matconv.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matconv.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matconv.xcodeproj/xcshareddata/xcschemes/matconv CPU.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matconv.xcodeproj/xcshareddata/xcschemes/matconv CPU.xcscheme -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matconv.xcodeproj/xcshareddata/xcschemes/matconv GPU.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matconv.xcodeproj/xcshareddata/xcschemes/matconv GPU.xcscheme -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matconv.xcodeproj/xcshareddata/xcschemes/matconv cuDNN.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matconv.xcodeproj/xcshareddata/xcschemes/matconv cuDNN.xcscheme -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/data.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/data.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/data.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/data.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/datacu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/datacu.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/datacu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/datacu.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/datamex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/datamex.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/datamex.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/datamex.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/datamex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/datamex.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/blashelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/blashelper.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/copy.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/copy_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/copy_cpu.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/copy_gpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/copy_gpu.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/fast_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/fast_mutex.h -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/im2row.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/im2row.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/im2row_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/im2row_cpu.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/im2row_gpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/im2row_gpu.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/imread_gdiplus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/imread_gdiplus.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/imread_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/imread_helpers.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/imread_libjpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/imread_libjpeg.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/imread_quartz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/imread_quartz.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/nnconv_blas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/nnconv_blas.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/nnconv_cudnn.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/nnconv_cudnn.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/nnconv_cudnn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/nnconv_cudnn.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/nnpooling_cudnn.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/nnpooling_cudnn.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/nnpooling_cudnn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/nnpooling_cudnn.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/normalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/normalize.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/normalize_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/normalize_cpu.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/normalize_gpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/normalize_gpu.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/pooling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/pooling.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/pooling_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/pooling_cpu.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/pooling_gpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/pooling_gpu.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/subsample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/subsample.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/subsample_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/subsample_cpu.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/subsample_gpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/subsample_gpu.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/tinythread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/tinythread.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/impl/tinythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/impl/tinythread.h -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/imread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/imread.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/mexutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/mexutils.h -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/nnconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/nnconv.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/nnconv.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/nnconv.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/nnconv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/nnconv.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/nnfullyconnected.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/nnfullyconnected.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/nnfullyconnected.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/nnfullyconnected.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/nnfullyconnected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/nnfullyconnected.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/nnnormalize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/nnnormalize.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/nnnormalize.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/nnnormalize.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/nnnormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/nnnormalize.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/nnpooling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/nnpooling.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/nnpooling.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/nnpooling.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/nnpooling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/nnpooling.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/nnsubsample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/nnsubsample.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/nnsubsample.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/nnsubsample.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/bits/nnsubsample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/bits/nnsubsample.hpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/config/mex_CUDA_glnxa64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/config/mex_CUDA_glnxa64.sh -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/config/mex_CUDA_glnxa64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/config/mex_CUDA_glnxa64.xml -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/config/mex_CUDA_maci64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/config/mex_CUDA_maci64.sh -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/config/mex_CUDA_maci64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/config/mex_CUDA_maci64.xml -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/vl_imreadjpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/vl_imreadjpeg.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/vl_imreadjpeg.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/vl_imreadjpeg.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/vl_nnconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/vl_nnconv.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/vl_nnconv.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/vl_nnconv.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/vl_nnnormalize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/vl_nnnormalize.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/vl_nnnormalize.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/vl_nnnormalize.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/vl_nnpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/vl_nnpool.cpp -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/src/vl_nnpool.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/src/vl_nnpool.cu -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_argparse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_argparse.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_compilenn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_compilenn.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_imreadjpeg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_imreadjpeg.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_nnbnorm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_nnbnorm.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_nnconv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_nnconv.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_nndropout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_nndropout.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_nnloss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_nnloss.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_nnnoffset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_nnnoffset.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_nnnormalize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_nnnormalize.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_nnpdist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_nnpdist.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_nnpool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_nnpool.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_nnrelu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_nnrelu.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_nnsigmoid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_nnsigmoid.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_nnsoftmax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_nnsoftmax.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_nnsoftmaxloss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_nnsoftmaxloss.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_nnspnorm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_nnspnorm.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_rootnn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_rootnn.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_setupnn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_setupnn.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_simplenn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_simplenn.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_simplenn_diagnose.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_simplenn_diagnose.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_simplenn_display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_simplenn_display.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/vl_simplenn_move.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/vl_simplenn_move.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/xtest/vl_bench_bnorm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/xtest/vl_bench_bnorm.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/xtest/vl_bench_imreadjpeg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/xtest/vl_bench_imreadjpeg.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/xtest/vl_nnbnorm_old.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/xtest/vl_nnbnorm_old.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/xtest/vl_test_economic_relu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/xtest/vl_test_economic_relu.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/xtest/vl_test_gpureset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/xtest/vl_test_gpureset.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/xtest/vl_test_imreadjpeg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/xtest/vl_test_imreadjpeg.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/xtest/vl_test_nnlayers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/xtest/vl_test_nnlayers.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/xtest/vl_testder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/xtest/vl_testder.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/matlab/xtest/vl_testsim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/matlab/xtest/vl_testsim.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/my_build.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/my_build.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/utils/evaluate_ref_models.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/utils/evaluate_ref_models.m -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/utils/import-caffe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/utils/import-caffe.py -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/utils/import-ref-models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/utils/import-ref-models.sh -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/utils/preprocess-imagenet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/utils/preprocess-imagenet.sh -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/utils/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/utils/proto/caffe.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/utils/proto/caffe.proto -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/utils/proto/caffe_old.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/utils/proto/caffe_old.proto -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/utils/proto/caffe_old_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/utils/proto/caffe_old_pb2.py -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/utils/proto/caffe_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/utils/proto/caffe_pb2.py -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/utils/proto/vgg_caffe.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/utils/proto/vgg_caffe.proto -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/utils/proto/vgg_caffe_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/utils/proto/vgg_caffe_pb2.py -------------------------------------------------------------------------------- /matconvnet-1.0-beta11/utils/proto/vgg_synset_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/matconvnet-1.0-beta11/utils/proto/vgg_synset_words.txt -------------------------------------------------------------------------------- /reproduce_ICCV15_results.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcheron/P-CNN/HEAD/reproduce_ICCV15_results.m --------------------------------------------------------------------------------