From ca27f37dd88b27ee1f9dbc5668a9d0f45989ca71 Mon Sep 17 00:00:00 2001 From: zhunzhong07 Date: Wed, 22 Mar 2017 18:48:01 +0800 Subject: [PATCH] add --- README.md | 120 +- caffe/.Doxyfile | 2335 ++ caffe/.github/ISSUE_TEMPLATE.md | 19 + caffe/.travis.yml | 67 + caffe/CMakeLists.txt | 110 + caffe/CONTRIBUTING.md | 30 + caffe/CONTRIBUTORS.md | 19 + caffe/INSTALL.md | 7 + caffe/LICENSE | 44 + caffe/Makefile | 699 + caffe/Makefile.config.example | 120 + caffe/README.md | 37 + caffe/caffe.cloc | 53 + caffe/cmake/ConfigGen.cmake | 56 + caffe/cmake/Cuda.cmake | 292 + caffe/cmake/Dependencies.cmake | 203 + caffe/cmake/External/gflags.cmake | 56 + caffe/cmake/External/glog.cmake | 57 + caffe/cmake/Misc.cmake | 52 + caffe/cmake/Modules/FindAtlas.cmake | 52 + caffe/cmake/Modules/FindGFlags.cmake | 50 + caffe/cmake/Modules/FindGlog.cmake | 48 + caffe/cmake/Modules/FindLAPACK.cmake | 190 + caffe/cmake/Modules/FindLMDB.cmake | 28 + caffe/cmake/Modules/FindLevelDB.cmake | 44 + caffe/cmake/Modules/FindMKL.cmake | 110 + caffe/cmake/Modules/FindMatlabMex.cmake | 48 + caffe/cmake/Modules/FindNCCL.cmake | 26 + caffe/cmake/Modules/FindNumPy.cmake | 58 + caffe/cmake/Modules/FindOpenBLAS.cmake | 64 + caffe/cmake/Modules/FindSnappy.cmake | 28 + caffe/cmake/Modules/FindvecLib.cmake | 35 + caffe/cmake/ProtoBuf.cmake | 90 + caffe/cmake/Summary.cmake | 178 + caffe/cmake/Targets.cmake | 174 + caffe/cmake/Templates/CaffeConfig.cmake.in | 55 + .../Templates/CaffeConfigVersion.cmake.in | 11 + caffe/cmake/Templates/caffe_config.h.in | 19 + caffe/cmake/Utils.cmake | 382 + caffe/cmake/lint.cmake | 50 + caffe/docker/README.md | 47 + caffe/docker/cpu/Dockerfile | 45 + caffe/docker/gpu/Dockerfile | 46 + caffe/docs/CMakeLists.txt | 106 + caffe/docs/CNAME | 1 + caffe/docs/README.md | 5 + caffe/docs/_config.yml | 7 + caffe/docs/_layouts/default.html | 62 + caffe/docs/development.md | 120 + caffe/docs/index.md | 106 + caffe/docs/install_apt.md | 55 + caffe/docs/install_apt_debian.md | 161 + caffe/docs/install_osx.md | 128 + caffe/docs/install_yum.md | 45 + caffe/docs/installation.md | 146 + caffe/docs/model_zoo.md | 70 + caffe/docs/multigpu.md | 26 + caffe/docs/performance_hardware.md | 73 + caffe/docs/stylesheets/pygment_trac.css | 69 + caffe/docs/stylesheets/reset.css | 21 + caffe/docs/stylesheets/styles.css | 348 + caffe/docs/tutorial/convolution.md | 13 + caffe/docs/tutorial/data.md | 78 + caffe/docs/tutorial/forward_backward.md | 37 + caffe/docs/tutorial/index.md | 51 + caffe/docs/tutorial/interfaces.md | 286 + caffe/docs/tutorial/layers.md | 135 + caffe/docs/tutorial/layers/absval.md | 22 + caffe/docs/tutorial/layers/accuracy.md | 20 + caffe/docs/tutorial/layers/argmax.md | 18 + caffe/docs/tutorial/layers/batchnorm.md | 20 + caffe/docs/tutorial/layers/batchreindex.md | 16 + caffe/docs/tutorial/layers/bias.md | 19 + caffe/docs/tutorial/layers/bnll.md | 25 + caffe/docs/tutorial/layers/concat.md | 40 + caffe/docs/tutorial/layers/contrastiveloss.md | 20 + caffe/docs/tutorial/layers/convolution.md | 63 + caffe/docs/tutorial/layers/crop.md | 20 + caffe/docs/tutorial/layers/data.md | 29 + caffe/docs/tutorial/layers/deconvolution.md | 22 + caffe/docs/tutorial/layers/dropout.md | 20 + caffe/docs/tutorial/layers/dummydata.md | 20 + caffe/docs/tutorial/layers/eltwise.md | 20 + caffe/docs/tutorial/layers/elu.md | 25 + caffe/docs/tutorial/layers/embed.md | 20 + caffe/docs/tutorial/layers/euclideanloss.md | 16 + caffe/docs/tutorial/layers/exp.md | 24 + caffe/docs/tutorial/layers/filter.md | 15 + caffe/docs/tutorial/layers/flatten.md | 21 + caffe/docs/tutorial/layers/hdf5data.md | 20 + caffe/docs/tutorial/layers/hdf5output.md | 25 + caffe/docs/tutorial/layers/hingeloss.md | 19 + caffe/docs/tutorial/layers/im2col.md | 16 + caffe/docs/tutorial/layers/imagedata.md | 27 + caffe/docs/tutorial/layers/infogainloss.md | 23 + caffe/docs/tutorial/layers/innerproduct.md | 59 + caffe/docs/tutorial/layers/input.md | 19 + caffe/docs/tutorial/layers/log.md | 20 + caffe/docs/tutorial/layers/lrn.md | 28 + caffe/docs/tutorial/layers/lstm.md | 21 + caffe/docs/tutorial/layers/memorydata.md | 25 + .../layers/multinomiallogisticloss.md | 19 + caffe/docs/tutorial/layers/mvn.md | 20 + caffe/docs/tutorial/layers/parameter.md | 21 + caffe/docs/tutorial/layers/pooling.md | 47 + caffe/docs/tutorial/layers/power.md | 46 + caffe/docs/tutorial/layers/prelu.md | 20 + caffe/docs/tutorial/layers/python.md | 27 + caffe/docs/tutorial/layers/recurrent.md | 20 + caffe/docs/tutorial/layers/reduction.md | 20 + caffe/docs/tutorial/layers/relu.md | 32 + caffe/docs/tutorial/layers/reshape.md | 51 + caffe/docs/tutorial/layers/rnn.md | 19 + caffe/docs/tutorial/layers/scale.md | 20 + caffe/docs/tutorial/layers/sigmoid.md | 20 + .../layers/sigmoidcrossentropyloss.md | 13 + caffe/docs/tutorial/layers/silence.md | 17 + caffe/docs/tutorial/layers/slice.md | 42 + caffe/docs/tutorial/layers/softmax.md | 24 + caffe/docs/tutorial/layers/softmaxwithloss.md | 33 + caffe/docs/tutorial/layers/split.md | 17 + caffe/docs/tutorial/layers/spp.md | 20 + caffe/docs/tutorial/layers/tanh.md | 18 + caffe/docs/tutorial/layers/threshold.md | 18 + caffe/docs/tutorial/layers/tile.md | 20 + caffe/docs/tutorial/layers/windowdata.md | 19 + caffe/docs/tutorial/loss.md | 51 + caffe/docs/tutorial/net_layer_blob.md | 168 + caffe/docs/tutorial/solver.md | 341 + caffe/examples/00-classification.ipynb | 780 + caffe/examples/01-learning-lenet.ipynb | 1288 + caffe/examples/02-fine-tuning.ipynb | 1175 + caffe/examples/CMakeLists.txt | 31 + caffe/examples/brewing-logreg.ipynb | 1164 + caffe/examples/cifar10/cifar10_full.prototxt | 155 + .../cifar10_full_sigmoid_solver.prototxt | 28 + .../cifar10_full_sigmoid_solver_bn.prototxt | 28 + .../cifar10_full_sigmoid_train_test.prototxt | 212 + ...ifar10_full_sigmoid_train_test_bn.prototxt | 240 + .../cifar10/cifar10_full_solver.prototxt | 27 + .../cifar10/cifar10_full_solver_lr1.prototxt | 27 + .../cifar10/cifar10_full_solver_lr2.prototxt | 27 + .../cifar10/cifar10_full_train_test.prototxt | 220 + caffe/examples/cifar10/cifar10_quick.prototxt | 148 + .../cifar10/cifar10_quick_solver.prototxt | 26 + .../cifar10/cifar10_quick_solver_lr1.prototxt | 26 + .../cifar10/cifar10_quick_train_test.prototxt | 222 + caffe/examples/cifar10/convert_cifar_data.cpp | 110 + caffe/examples/cifar10/create_cifar10.sh | 20 + caffe/examples/cifar10/readme.md | 97 + caffe/examples/cifar10/train_full.sh | 17 + caffe/examples/cifar10/train_full_sigmoid.sh | 8 + .../examples/cifar10/train_full_sigmoid_bn.sh | 8 + caffe/examples/cifar10/train_quick.sh | 12 + .../cpp_classification/classification.cpp | 265 + caffe/examples/cpp_classification/readme.md | 77 + caffe/examples/detection.ipynb | 8392 +++++++ .../feature_extraction/imagenet_val.prototxt | 238 + caffe/examples/feature_extraction/readme.md | 74 + .../finetune_flickr_style/assemble_data.py | 98 + .../finetune_flickr_style/flickr_style.csv.gz | Bin 0 -> 2178982 bytes .../examples/finetune_flickr_style/readme.md | 169 + .../finetune_flickr_style/style_names.txt | 20 + .../pascal_finetune_solver.prototxt | 13 + .../pascal_finetune_trainval_test.prototxt | 391 + .../nonlinear_auto_test.prototxt | 54 + .../nonlinear_auto_train.prototxt | 54 + .../nonlinear_train_val.prototxt | 98 + .../hdf5_classification/train_val.prototxt | 68 + caffe/examples/imagenet/create_imagenet.sh | 58 + caffe/examples/imagenet/make_imagenet_mean.sh | 12 + caffe/examples/imagenet/readme.md | 105 + caffe/examples/imagenet/resume_training.sh | 7 + caffe/examples/imagenet/train_caffenet.sh | 5 + caffe/examples/mnist/convert_mnist_data.cpp | 147 + caffe/examples/mnist/create_mnist.sh | 22 + caffe/examples/mnist/lenet.prototxt | 129 + .../mnist/lenet_adadelta_solver.prototxt | 24 + .../examples/mnist/lenet_auto_solver.prototxt | 24 + .../mnist/lenet_consolidated_solver.prototxt | 263 + .../mnist/lenet_multistep_solver.prototxt | 29 + caffe/examples/mnist/lenet_solver.prototxt | 25 + .../examples/mnist/lenet_solver_adam.prototxt | 26 + .../mnist/lenet_solver_rmsprop.prototxt | 27 + .../examples/mnist/lenet_train_test.prototxt | 168 + .../examples/mnist/mnist_autoencoder.prototxt | 323 + .../mnist/mnist_autoencoder_solver.prototxt | 19 + ...mnist_autoencoder_solver_adadelta.prototxt | 19 + .../mnist_autoencoder_solver_adagrad.prototxt | 17 + ...mnist_autoencoder_solver_nesterov.prototxt | 20 + caffe/examples/mnist/readme.md | 289 + caffe/examples/mnist/train_lenet.sh | 4 + caffe/examples/mnist/train_lenet_adam.sh | 4 + .../mnist/train_lenet_consolidated.sh | 5 + caffe/examples/mnist/train_lenet_docker.sh | 119 + caffe/examples/mnist/train_lenet_rmsprop.sh | 5 + .../examples/mnist/train_mnist_autoencoder.sh | 5 + .../mnist/train_mnist_autoencoder_adadelta.sh | 5 + .../mnist/train_mnist_autoencoder_adagrad.sh | 5 + .../mnist/train_mnist_autoencoder_nesterov.sh | 5 + caffe/examples/net_surgery.ipynb | 6901 ++++++ .../bvlc_caffenet_full_conv.prototxt | 221 + caffe/examples/net_surgery/conv.prototxt | 27 + .../pascal-multilabel-with-datalayer.ipynb | 479 + caffe/examples/pycaffe/caffenet.py | 55 + .../layers/pascal_multilabel_datalayers.py | 216 + caffe/examples/pycaffe/layers/pyloss.py | 37 + caffe/examples/pycaffe/linreg.prototxt | 60 + caffe/examples/pycaffe/tools.py | 121 + .../siamese/convert_mnist_siamese_data.cpp | 129 + .../examples/siamese/create_mnist_siamese.sh | 22 + caffe/examples/siamese/mnist_siamese.ipynb | 1909 ++ caffe/examples/siamese/mnist_siamese.prototxt | 116 + .../siamese/mnist_siamese_solver.prototxt | 25 + .../siamese/mnist_siamese_train_test.prototxt | 349 + caffe/examples/siamese/readme.md | 187 + caffe/examples/siamese/train_mnist_siamese.sh | 6 + caffe/examples/web_demo/app.py | 227 + caffe/examples/web_demo/exifutil.py | 39 + caffe/examples/web_demo/readme.md | 41 + caffe/examples/web_demo/requirements.txt | 7 + caffe/examples/web_demo/templates/index.html | 138 + caffe/include/caffe/blob.hpp | 282 + caffe/include/caffe/caffe.hpp | 21 + caffe/include/caffe/common.hpp | 193 + caffe/include/caffe/data_transformer.hpp | 154 + caffe/include/caffe/filler.hpp | 295 + caffe/include/caffe/internal_thread.hpp | 53 + caffe/include/caffe/layer.hpp | 477 + caffe/include/caffe/layer_factory.hpp | 141 + caffe/include/caffe/layers/absval_layer.hpp | 68 + caffe/include/caffe/layers/accuracy_layer.hpp | 95 + caffe/include/caffe/layers/argmax_layer.hpp | 77 + .../include/caffe/layers/base_conv_layer.hpp | 174 + .../include/caffe/layers/base_data_layer.hpp | 84 + .../include/caffe/layers/batch_norm_layer.hpp | 78 + .../caffe/layers/batch_reindex_layer.hpp | 83 + caffe/include/caffe/layers/bias_layer.hpp | 54 + caffe/include/caffe/layers/bnll_layer.hpp | 70 + caffe/include/caffe/layers/concat_layer.hpp | 87 + .../caffe/layers/contrastive_loss_layer.hpp | 101 + caffe/include/caffe/layers/conv_layer.hpp | 84 + caffe/include/caffe/layers/crop_layer.hpp | 76 + .../include/caffe/layers/cudnn_conv_layer.hpp | 72 + .../include/caffe/layers/cudnn_lcn_layer.hpp | 49 + .../include/caffe/layers/cudnn_lrn_layer.hpp | 44 + .../caffe/layers/cudnn_pooling_layer.hpp | 49 + .../include/caffe/layers/cudnn_relu_layer.hpp | 46 + .../caffe/layers/cudnn_sigmoid_layer.hpp | 46 + .../caffe/layers/cudnn_softmax_layer.hpp | 45 + .../include/caffe/layers/cudnn_tanh_layer.hpp | 46 + caffe/include/caffe/layers/data_layer.hpp | 42 + caffe/include/caffe/layers/deconv_layer.hpp | 51 + caffe/include/caffe/layers/dropout_layer.hpp | 80 + .../include/caffe/layers/dummy_data_layer.hpp | 49 + caffe/include/caffe/layers/eltwise_layer.hpp | 51 + caffe/include/caffe/layers/elu_layer.hpp | 86 + caffe/include/caffe/layers/embed_layer.hpp | 52 + .../caffe/layers/euclidean_loss_layer.hpp | 107 + caffe/include/caffe/layers/exp_layer.hpp | 80 + caffe/include/caffe/layers/filter_layer.hpp | 77 + caffe/include/caffe/layers/flatten_layer.hpp | 61 + .../include/caffe/layers/hdf5_data_layer.hpp | 66 + .../caffe/layers/hdf5_output_layer.hpp | 64 + .../include/caffe/layers/hinge_loss_layer.hpp | 104 + caffe/include/caffe/layers/im2col_layer.hpp | 65 + .../include/caffe/layers/image_data_layer.hpp | 47 + .../caffe/layers/infogain_loss_layer.hpp | 110 + .../caffe/layers/inner_product_layer.hpp | 52 + caffe/include/caffe/layers/input_layer.hpp | 44 + caffe/include/caffe/layers/log_layer.hpp | 82 + caffe/include/caffe/layers/loss_layer.hpp | 53 + caffe/include/caffe/layers/lrn_layer.hpp | 94 + caffe/include/caffe/layers/lstm_layer.hpp | 154 + .../caffe/layers/memory_data_layer.hpp | 63 + .../multinomial_logistic_loss_layer.hpp | 92 + caffe/include/caffe/layers/mvn_layer.hpp | 48 + caffe/include/caffe/layers/neuron_layer.hpp | 32 + .../include/caffe/layers/parameter_layer.hpp | 45 + caffe/include/caffe/layers/pooling_layer.hpp | 60 + caffe/include/caffe/layers/power_layer.hpp | 89 + caffe/include/caffe/layers/prelu_layer.hpp | 101 + caffe/include/caffe/layers/python_layer.hpp | 59 + .../include/caffe/layers/recurrent_layer.hpp | 187 + .../include/caffe/layers/reduction_layer.hpp | 59 + caffe/include/caffe/layers/relu_layer.hpp | 85 + caffe/include/caffe/layers/reshape_layer.hpp | 52 + caffe/include/caffe/layers/rnn_layer.hpp | 47 + caffe/include/caffe/layers/scale_layer.hpp | 85 + .../sigmoid_cross_entropy_loss_layer.hpp | 128 + caffe/include/caffe/layers/sigmoid_layer.hpp | 71 + caffe/include/caffe/layers/silence_layer.hpp | 43 + caffe/include/caffe/layers/slice_layer.hpp | 51 + caffe/include/caffe/layers/softmax_layer.hpp | 50 + .../caffe/layers/softmax_loss_layer.hpp | 130 + caffe/include/caffe/layers/split_layer.hpp | 45 + caffe/include/caffe/layers/spp_layer.hpp | 76 + caffe/include/caffe/layers/tanh_layer.hpp | 73 + .../include/caffe/layers/threshold_layer.hpp | 64 + caffe/include/caffe/layers/tile_layer.hpp | 43 + .../caffe/layers/window_data_layer.hpp | 55 + caffe/include/caffe/net.hpp | 345 + caffe/include/caffe/parallel.hpp | 123 + caffe/include/caffe/sgd_solvers.hpp | 148 + caffe/include/caffe/solver.hpp | 137 + caffe/include/caffe/solver_factory.hpp | 137 + caffe/include/caffe/syncedmem.hpp | 95 + caffe/include/caffe/test/test_caffe_main.hpp | 78 + .../caffe/test/test_gradient_check_util.hpp | 266 + caffe/include/caffe/util/benchmark.hpp | 52 + caffe/include/caffe/util/blocking_queue.hpp | 45 + caffe/include/caffe/util/cudnn.hpp | 153 + caffe/include/caffe/util/db.hpp | 54 + caffe/include/caffe/util/db_leveldb.hpp | 78 + caffe/include/caffe/util/db_lmdb.hpp | 96 + caffe/include/caffe/util/device_alternate.hpp | 96 + caffe/include/caffe/util/format.hpp | 18 + caffe/include/caffe/util/gpu_util.cuh | 35 + caffe/include/caffe/util/hdf5.hpp | 39 + caffe/include/caffe/util/im2col.hpp | 60 + caffe/include/caffe/util/insert_splits.hpp | 26 + caffe/include/caffe/util/io.hpp | 152 + caffe/include/caffe/util/math_functions.hpp | 278 + caffe/include/caffe/util/mkl_alternate.hpp | 102 + caffe/include/caffe/util/nccl.hpp | 37 + caffe/include/caffe/util/rng.hpp | 43 + caffe/include/caffe/util/signal_handler.h | 24 + caffe/include/caffe/util/upgrade_proto.hpp | 88 + caffe/matlab/+caffe/+test/test_io.m | 18 + caffe/matlab/+caffe/+test/test_net.m | 96 + caffe/matlab/+caffe/+test/test_solver.m | 45 + caffe/matlab/+caffe/Blob.m | 78 + caffe/matlab/+caffe/Layer.m | 32 + caffe/matlab/+caffe/Net.m | 136 + caffe/matlab/+caffe/Solver.m | 59 + caffe/matlab/+caffe/get_net.m | 37 + caffe/matlab/+caffe/get_solver.m | 10 + .../+caffe/imagenet/ilsvrc_2012_mean.mat | Bin 0 -> 606799 bytes caffe/matlab/+caffe/io.m | 41 + caffe/matlab/+caffe/private/CHECK.m | 7 + .../matlab/+caffe/private/CHECK_FILE_EXIST.m | 7 + caffe/matlab/+caffe/private/caffe_.cpp | 605 + caffe/matlab/+caffe/private/is_valid_handle.m | 27 + caffe/matlab/+caffe/reset_all.m | 8 + caffe/matlab/+caffe/run_tests.m | 20 + caffe/matlab/+caffe/set_device.m | 11 + caffe/matlab/+caffe/set_mode_cpu.m | 7 + caffe/matlab/+caffe/set_mode_gpu.m | 7 + caffe/matlab/+caffe/version.m | 7 + caffe/matlab/CMakeLists.txt | 72 + caffe/matlab/demo/classification_demo.m | 148 + caffe/matlab/hdf5creation/demo.m | 64 + caffe/matlab/hdf5creation/store2hdf5.m | 59 + caffe/python/CMakeLists.txt | 40 + caffe/python/caffe/__init__.py | 8 + caffe/python/caffe/_caffe.cpp | 530 + caffe/python/caffe/classifier.py | 98 + caffe/python/caffe/coord_map.py | 185 + caffe/python/caffe/detector.py | 216 + caffe/python/caffe/draw.py | 244 + .../caffe/imagenet/ilsvrc_2012_mean.npy | Bin 0 -> 1572944 bytes caffe/python/caffe/io.py | 383 + caffe/python/caffe/net_spec.py | 226 + caffe/python/caffe/pycaffe.py | 345 + caffe/python/caffe/test/test_coord_map.py | 192 + caffe/python/caffe/test/test_io.py | 56 + .../python/caffe/test/test_layer_type_list.py | 11 + caffe/python/caffe/test/test_net.py | 352 + caffe/python/caffe/test/test_net_spec.py | 81 + caffe/python/caffe/test/test_python_layer.py | 168 + .../test/test_python_layer_with_param_str.py | 61 + caffe/python/caffe/test/test_solver.py | 62 + caffe/python/classify.py | 138 + caffe/python/detect.py | 173 + caffe/python/draw_net.py | 58 + caffe/python/requirements.txt | 17 + caffe/python/train.py | 100 + caffe/scripts/build_docs.sh | 23 + caffe/scripts/copy_notebook.py | 32 + caffe/scripts/cpp_lint.py | 4868 ++++ caffe/scripts/deploy_docs.sh | 50 + caffe/scripts/download_model_binary.py | 77 + caffe/scripts/download_model_from_gist.sh | 24 + caffe/scripts/gather_examples.sh | 29 + caffe/scripts/split_caffe_proto.py | 35 + caffe/scripts/travis/build.sh | 13 + caffe/scripts/travis/configure-cmake.sh | 32 + caffe/scripts/travis/configure-make.sh | 36 + caffe/scripts/travis/configure.sh | 11 + caffe/scripts/travis/defaults.sh | 10 + caffe/scripts/travis/install-deps.sh | 110 + caffe/scripts/travis/install-python-deps.sh | 14 + caffe/scripts/travis/setup-venv.sh | 18 + caffe/scripts/travis/test.sh | 19 + caffe/scripts/upload_model_to_gist.sh | 38 + caffe/src/caffe/CMakeLists.txt | 50 + caffe/src/caffe/blob.cpp | 561 + caffe/src/caffe/common.cpp | 325 + caffe/src/caffe/data_transformer.cpp | 545 + caffe/src/caffe/internal_thread.cpp | 68 + caffe/src/caffe/layer.cpp | 7 + caffe/src/caffe/layer_factory.cpp | 267 + caffe/src/caffe/layers/absval_layer.cpp | 44 + caffe/src/caffe/layers/absval_layer.cu | 32 + caffe/src/caffe/layers/accuracy_layer.cpp | 108 + caffe/src/caffe/layers/argmax_layer.cpp | 101 + caffe/src/caffe/layers/base_conv_layer.cpp | 396 + caffe/src/caffe/layers/base_data_layer.cpp | 136 + caffe/src/caffe/layers/base_data_layer.cu | 26 + caffe/src/caffe/layers/batch_norm_layer.cpp | 251 + caffe/src/caffe/layers/batch_norm_layer.cu | 171 + .../src/caffe/layers/batch_reindex_layer.cpp | 78 + caffe/src/caffe/layers/batch_reindex_layer.cu | 106 + caffe/src/caffe/layers/bias_layer.cpp | 121 + caffe/src/caffe/layers/bias_layer.cu | 59 + caffe/src/caffe/layers/bnll_layer.cpp | 47 + caffe/src/caffe/layers/bnll_layer.cu | 59 + caffe/src/caffe/layers/concat_layer.cpp | 104 + caffe/src/caffe/layers/concat_layer.cu | 73 + .../caffe/layers/contrastive_loss_layer.cpp | 120 + .../caffe/layers/contrastive_loss_layer.cu | 109 + caffe/src/caffe/layers/conv_layer.cpp | 81 + caffe/src/caffe/layers/conv_layer.cu | 60 + caffe/src/caffe/layers/crop_layer.cpp | 141 + caffe/src/caffe/layers/crop_layer.cu | 109 + caffe/src/caffe/layers/cudnn_conv_layer.cpp | 268 + caffe/src/caffe/layers/cudnn_conv_layer.cu | 118 + caffe/src/caffe/layers/cudnn_lcn_layer.cpp | 73 + caffe/src/caffe/layers/cudnn_lcn_layer.cu | 46 + caffe/src/caffe/layers/cudnn_lrn_layer.cpp | 53 + caffe/src/caffe/layers/cudnn_lrn_layer.cu | 44 + .../src/caffe/layers/cudnn_pooling_layer.cpp | 46 + caffe/src/caffe/layers/cudnn_pooling_layer.cu | 41 + caffe/src/caffe/layers/cudnn_relu_layer.cpp | 45 + caffe/src/caffe/layers/cudnn_relu_layer.cu | 74 + .../src/caffe/layers/cudnn_sigmoid_layer.cpp | 46 + caffe/src/caffe/layers/cudnn_sigmoid_layer.cu | 64 + .../src/caffe/layers/cudnn_softmax_layer.cpp | 46 + caffe/src/caffe/layers/cudnn_softmax_layer.cu | 44 + caffe/src/caffe/layers/cudnn_tanh_layer.cpp | 45 + caffe/src/caffe/layers/cudnn_tanh_layer.cu | 65 + caffe/src/caffe/layers/data_layer.cpp | 136 + caffe/src/caffe/layers/deconv_layer.cpp | 84 + caffe/src/caffe/layers/deconv_layer.cu | 61 + caffe/src/caffe/layers/dropout_layer.cpp | 75 + caffe/src/caffe/layers/dropout_layer.cu | 70 + caffe/src/caffe/layers/dummy_data_layer.cpp | 114 + caffe/src/caffe/layers/eltwise_layer.cpp | 160 + caffe/src/caffe/layers/eltwise_layer.cu | 134 + caffe/src/caffe/layers/elu_layer.cpp | 47 + caffe/src/caffe/layers/elu_layer.cu | 62 + caffe/src/caffe/layers/embed_layer.cpp | 119 + caffe/src/caffe/layers/embed_layer.cu | 81 + .../src/caffe/layers/euclidean_loss_layer.cpp | 55 + .../src/caffe/layers/euclidean_loss_layer.cu | 42 + caffe/src/caffe/layers/exp_layer.cpp | 68 + caffe/src/caffe/layers/exp_layer.cu | 42 + caffe/src/caffe/layers/filter_layer.cpp | 125 + caffe/src/caffe/layers/filter_layer.cu | 69 + caffe/src/caffe/layers/flatten_layer.cpp | 44 + caffe/src/caffe/layers/hdf5_data_layer.cpp | 185 + caffe/src/caffe/layers/hdf5_data_layer.cu | 36 + caffe/src/caffe/layers/hdf5_output_layer.cpp | 74 + caffe/src/caffe/layers/hdf5_output_layer.cu | 39 + caffe/src/caffe/layers/hinge_loss_layer.cpp | 78 + caffe/src/caffe/layers/im2col_layer.cpp | 193 + caffe/src/caffe/layers/im2col_layer.cu | 62 + caffe/src/caffe/layers/image_data_layer.cpp | 179 + .../src/caffe/layers/infogain_loss_layer.cpp | 107 + .../src/caffe/layers/inner_product_layer.cpp | 150 + caffe/src/caffe/layers/inner_product_layer.cu | 79 + caffe/src/caffe/layers/input_layer.cpp | 27 + caffe/src/caffe/layers/log_layer.cpp | 85 + caffe/src/caffe/layers/log_layer.cu | 55 + caffe/src/caffe/layers/loss_layer.cpp | 27 + caffe/src/caffe/layers/lrn_layer.cpp | 257 + caffe/src/caffe/layers/lrn_layer.cu | 202 + caffe/src/caffe/layers/lstm_layer.cpp | 244 + caffe/src/caffe/layers/lstm_unit_layer.cpp | 131 + caffe/src/caffe/layers/lstm_unit_layer.cu | 154 + caffe/src/caffe/layers/memory_data_layer.cpp | 123 + .../multinomial_logistic_loss_layer.cpp | 64 + caffe/src/caffe/layers/mvn_layer.cpp | 134 + caffe/src/caffe/layers/mvn_layer.cu | 110 + caffe/src/caffe/layers/neuron_layer.cpp | 15 + caffe/src/caffe/layers/parameter_layer.cpp | 8 + caffe/src/caffe/layers/pooling_layer.cpp | 316 + caffe/src/caffe/layers/pooling_layer.cu | 386 + caffe/src/caffe/layers/power_layer.cpp | 102 + caffe/src/caffe/layers/power_layer.cu | 85 + caffe/src/caffe/layers/prelu_layer.cpp | 141 + caffe/src/caffe/layers/prelu_layer.cu | 128 + caffe/src/caffe/layers/recurrent_layer.cpp | 295 + caffe/src/caffe/layers/recurrent_layer.cu | 44 + caffe/src/caffe/layers/reduction_layer.cpp | 129 + caffe/src/caffe/layers/reduction_layer.cu | 91 + caffe/src/caffe/layers/relu_layer.cpp | 45 + caffe/src/caffe/layers/relu_layer.cu | 64 + caffe/src/caffe/layers/reshape_layer.cpp | 96 + caffe/src/caffe/layers/rnn_layer.cpp | 236 + caffe/src/caffe/layers/scale_layer.cpp | 227 + caffe/src/caffe/layers/scale_layer.cu | 135 + .../sigmoid_cross_entropy_loss_layer.cpp | 140 + .../sigmoid_cross_entropy_loss_layer.cu | 104 + caffe/src/caffe/layers/sigmoid_layer.cpp | 47 + caffe/src/caffe/layers/sigmoid_layer.cu | 60 + caffe/src/caffe/layers/silence_layer.cpp | 26 + caffe/src/caffe/layers/silence_layer.cu | 27 + caffe/src/caffe/layers/slice_layer.cpp | 124 + caffe/src/caffe/layers/slice_layer.cu | 71 + caffe/src/caffe/layers/softmax_layer.cpp | 95 + caffe/src/caffe/layers/softmax_layer.cu | 148 + caffe/src/caffe/layers/softmax_loss_layer.cpp | 158 + caffe/src/caffe/layers/softmax_loss_layer.cu | 128 + caffe/src/caffe/layers/split_layer.cpp | 59 + caffe/src/caffe/layers/split_layer.cu | 37 + caffe/src/caffe/layers/spp_layer.cpp | 228 + caffe/src/caffe/layers/tanh_layer.cpp | 44 + caffe/src/caffe/layers/tanh_layer.cu | 57 + caffe/src/caffe/layers/threshold_layer.cpp | 32 + caffe/src/caffe/layers/threshold_layer.cu | 31 + caffe/src/caffe/layers/tile_layer.cpp | 61 + caffe/src/caffe/layers/tile_layer.cu | 66 + caffe/src/caffe/layers/window_data_layer.cpp | 476 + caffe/src/caffe/net.cpp | 982 + caffe/src/caffe/parallel.cpp | 371 + caffe/src/caffe/proto/caffe.proto | 1403 ++ caffe/src/caffe/solver.cpp | 490 + caffe/src/caffe/solvers/adadelta_solver.cpp | 112 + caffe/src/caffe/solvers/adadelta_solver.cu | 30 + caffe/src/caffe/solvers/adagrad_solver.cpp | 69 + caffe/src/caffe/solvers/adagrad_solver.cu | 26 + caffe/src/caffe/solvers/adam_solver.cpp | 94 + caffe/src/caffe/solvers/adam_solver.cu | 29 + caffe/src/caffe/solvers/nesterov_solver.cpp | 61 + caffe/src/caffe/solvers/nesterov_solver.cu | 27 + caffe/src/caffe/solvers/rmsprop_solver.cpp | 70 + caffe/src/caffe/solvers/rmsprop_solver.cu | 28 + caffe/src/caffe/solvers/sgd_solver.cpp | 352 + caffe/src/caffe/solvers/sgd_solver.cu | 24 + caffe/src/caffe/syncedmem.cpp | 186 + caffe/src/caffe/test/CMakeLists.txt | 36 + caffe/src/caffe/test/test_accuracy_layer.cpp | 336 + caffe/src/caffe/test/test_argmax_layer.cpp | 295 + .../src/caffe/test/test_batch_norm_layer.cpp | 133 + .../caffe/test/test_batch_reindex_layer.cpp | 118 + caffe/src/caffe/test/test_benchmark.cpp | 90 + caffe/src/caffe/test/test_bias_layer.cpp | 467 + caffe/src/caffe/test/test_blob.cpp | 301 + caffe/src/caffe/test/test_caffe_main.cpp | 38 + caffe/src/caffe/test/test_common.cpp | 64 + caffe/src/caffe/test/test_concat_layer.cpp | 207 + .../test/test_contrastive_loss_layer.cpp | 144 + .../src/caffe/test/test_convolution_layer.cpp | 1086 + caffe/src/caffe/test/test_crop_layer.cpp | 283 + .../test/test_data/generate_sample_data.py | 81 + caffe/src/caffe/test/test_data/sample_data.h5 | Bin 0 -> 11824 bytes .../test/test_data/sample_data_2_gzip.h5 | Bin 0 -> 15446 bytes .../caffe/test/test_data/sample_data_list.txt | 2 + caffe/src/caffe/test/test_data/solver_data.h5 | Bin 0 -> 11776 bytes .../caffe/test/test_data/solver_data_list.txt | 1 + caffe/src/caffe/test/test_data_layer.cpp | 469 + .../src/caffe/test/test_data_transformer.cpp | 344 + caffe/src/caffe/test/test_db.cpp | 136 + .../caffe/test/test_deconvolution_layer.cpp | 304 + .../src/caffe/test/test_dummy_data_layer.cpp | 193 + caffe/src/caffe/test/test_eltwise_layer.cpp | 209 + caffe/src/caffe/test/test_embed_layer.cpp | 178 + .../caffe/test/test_euclidean_loss_layer.cpp | 89 + caffe/src/caffe/test/test_filler.cpp | 241 + caffe/src/caffe/test/test_filter_layer.cpp | 126 + caffe/src/caffe/test/test_flatten_layer.cpp | 108 + .../caffe/test/test_gradient_based_solver.cpp | 1285 + .../src/caffe/test/test_hdf5_output_layer.cpp | 121 + caffe/src/caffe/test/test_hdf5data_layer.cpp | 166 + .../src/caffe/test/test_hinge_loss_layer.cpp | 74 + caffe/src/caffe/test/test_im2col_kernel.cu | 213 + caffe/src/caffe/test/test_im2col_layer.cpp | 178 + .../src/caffe/test/test_image_data_layer.cpp | 219 + .../caffe/test/test_infogain_loss_layer.cpp | 67 + .../caffe/test/test_inner_product_layer.cpp | 391 + caffe/src/caffe/test/test_internal_thread.cpp | 53 + caffe/src/caffe/test/test_io.cpp | 424 + caffe/src/caffe/test/test_layer_factory.cpp | 51 + caffe/src/caffe/test/test_lrn_layer.cpp | 450 + caffe/src/caffe/test/test_lstm_layer.cpp | 288 + caffe/src/caffe/test/test_math_functions.cpp | 203 + .../test/test_maxpool_dropout_layers.cpp | 127 + .../src/caffe/test/test_memory_data_layer.cpp | 299 + .../test_multinomial_logistic_loss_layer.cpp | 58 + caffe/src/caffe/test/test_mvn_layer.cpp | 172 + caffe/src/caffe/test/test_net.cpp | 2604 ++ caffe/src/caffe/test/test_neuron_layer.cpp | 938 + caffe/src/caffe/test/test_platform.cpp | 57 + caffe/src/caffe/test/test_pooling_layer.cpp | 1185 + caffe/src/caffe/test/test_power_layer.cpp | 170 + caffe/src/caffe/test/test_protobuf.cpp | 29 + .../test/test_random_number_generator.cpp | 520 + caffe/src/caffe/test/test_reduction_layer.cpp | 296 + caffe/src/caffe/test/test_reshape_layer.cpp | 279 + caffe/src/caffe/test/test_rnn_layer.cpp | 217 + caffe/src/caffe/test/test_scale_layer.cpp | 507 + .../test_sigmoid_cross_entropy_loss_layer.cpp | 148 + caffe/src/caffe/test/test_slice_layer.cpp | 215 + caffe/src/caffe/test/test_softmax_layer.cpp | 152 + .../test/test_softmax_with_loss_layer.cpp | 108 + caffe/src/caffe/test/test_solver.cpp | 109 + caffe/src/caffe/test/test_solver_factory.cpp | 50 + caffe/src/caffe/test/test_split_layer.cpp | 983 + caffe/src/caffe/test/test_spp_layer.cpp | 134 + .../caffe/test/test_stochastic_pooling.cpp | 175 + caffe/src/caffe/test/test_syncedmem.cpp | 125 + caffe/src/caffe/test/test_tanh_layer.cpp | 101 + caffe/src/caffe/test/test_threshold_layer.cpp | 98 + caffe/src/caffe/test/test_tile_layer.cpp | 161 + caffe/src/caffe/test/test_upgrade_proto.cpp | 2989 +++ caffe/src/caffe/test/test_util_blas.cpp | 132 + caffe/src/caffe/util/benchmark.cpp | 169 + caffe/src/caffe/util/blocking_queue.cpp | 91 + caffe/src/caffe/util/cudnn.cpp | 23 + caffe/src/caffe/util/db.cpp | 41 + caffe/src/caffe/util/db_leveldb.cpp | 23 + caffe/src/caffe/util/db_lmdb.cpp | 113 + caffe/src/caffe/util/hdf5.cpp | 187 + caffe/src/caffe/util/im2col.cpp | 234 + caffe/src/caffe/util/im2col.cu | 512 + caffe/src/caffe/util/insert_splits.cpp | 126 + caffe/src/caffe/util/io.cpp | 238 + caffe/src/caffe/util/math_functions.cpp | 375 + caffe/src/caffe/util/math_functions.cu | 438 + caffe/src/caffe/util/signal_handler.cpp | 115 + caffe/src/caffe/util/upgrade_proto.cpp | 1106 + caffe/src/gtest/CMakeLists.txt | 8 + caffe/src/gtest/gtest-all.cpp | 9117 +++++++ caffe/src/gtest/gtest.h | 19537 ++++++++++++++++ caffe/src/gtest/gtest_main.cc | 39 + caffe/tools/CMakeLists.txt | 29 + caffe/tools/caffe.cpp | 458 + caffe/tools/compute_image_mean.cpp | 123 + caffe/tools/convert_imageset.cpp | 159 + caffe/tools/device_query.cpp | 7 + caffe/tools/extra/extract_seconds.py | 72 + .../extra/launch_resize_and_crop_images.sh | 24 + caffe/tools/extra/parse_log.py | 210 + caffe/tools/extra/parse_log.sh | 51 + caffe/tools/extra/plot_log.gnuplot.example | 69 + .../tools/extra/plot_training_log.py.example | 184 + caffe/tools/extra/resize_and_crop_images.py | 109 + caffe/tools/extra/summarize.py | 140 + caffe/tools/extract_features.cpp | 183 + caffe/tools/finetune_net.cpp | 7 + caffe/tools/net_speed_benchmark.cpp | 7 + caffe/tools/test_net.cpp | 7 + caffe/tools/train_net.cpp | 7 + caffe/tools/upgrade_net_proto_binary.cpp | 50 + caffe/tools/upgrade_net_proto_text.cpp | 51 + caffe/tools/upgrade_solver_proto_text.cpp | 51 + data/imagenet_models/README.md | 1 + evaluation/CUHK03_evaluation.m | 78 + evaluation/CUHK03_extract_feature.m | 58 + evaluation/KISSME/toolbox/COPYRIGHT | 34 + .../KISSME/toolbox/CrossValidatePairs.m | 68 + evaluation/KISSME/toolbox/KISSME.m | 28 + .../KISSME/toolbox/TrainValidateMarket.m | 48 + evaluation/KISSME/toolbox/evalData.m | 113 + .../toolbox/helper/PairMetricLearning.m | 37 + evaluation/KISSME/toolbox/helper/SOPD.cpp | 155 + evaluation/KISSME/toolbox/helper/SOPD.mexa64 | Bin 0 -> 17157 bytes .../toolbox/helper/ToyCarPairsToLabels.m | 10 + evaluation/KISSME/toolbox/helper/calcMCMC.m | 19 + evaluation/KISSME/toolbox/helper/calcmAP.m | 20 + evaluation/KISSME/toolbox/helper/cdistM.m | 20 + evaluation/KISSME/toolbox/helper/col_sum.m | 4 + .../toolbox/helper/exportAndCropFigure.m | 21 + .../KISSME/toolbox/helper/icg_plotroc.m | 55 + evaluation/KISSME/toolbox/helper/icg_roc.m | 65 + .../KISSME/toolbox/helper/pairsToLabels.m | 10 + evaluation/KISSME/toolbox/helper/sqdist.m | 31 + .../KISSME/toolbox/helper/validateCovMatrix.m | 35 + evaluation/KISSME/toolbox/init.m | 23 + .../KISSME/toolbox/install3dpartylibs.m | 85 + .../KISSME/toolbox/learnAlgos/LearnAlgo.m | 28 + .../KISSME/toolbox/learnAlgos/LearnAlgoITML.m | 66 + .../toolbox/learnAlgos/LearnAlgoKISSME.m | 178 + .../KISSME/toolbox/learnAlgos/LearnAlgoLDML.m | 76 + .../KISSME/toolbox/learnAlgos/LearnAlgoLMNN.m | 108 + .../toolbox/learnAlgos/LearnAlgoMLEuclidean.m | 45 + .../toolbox/learnAlgos/LearnAlgoMahal.m | 146 + .../KISSME/toolbox/learnAlgos/LearnAlgoSVM.m | 127 + evaluation/KISSME/toolbox/lib/LMNN/.DS_Store | Bin 0 -> 12292 bytes .../KISSME/toolbox/lib/LMNN/.svn/all-wcprops | 59 + .../toolbox/lib/LMNN/.svn/dir-prop-base | 10 + .../KISSME/toolbox/lib/LMNN/.svn/entries | 154 + .../KISSME/toolbox/lib/LMNN/.svn/format | 1 + .../LMNN/.svn/prop-base/applypca.m.svn-base | 5 + .../lib/LMNN/.svn/prop-base/demo.m.svn-base | 5 + .../.svn/prop-base/energyclassify.m.svn-base | 5 + .../LMNN/.svn/prop-base/install.m.svn-base | 5 + .../.svn/prop-base/knnclassify.m.svn-base | 5 + .../lib/LMNN/.svn/prop-base/lmnn.m.svn-base | 5 + .../lib/LMNN/.svn/prop-base/pca.m.svn-base | 5 + .../LMNN/.svn/prop-base/runlmnn.m.svn-base | 5 + .../LMNN/.svn/prop-base/setpaths.m.svn-base | 5 + .../LMNN/.svn/text-base/applypca.m.svn-base | 25 + .../lib/LMNN/.svn/text-base/demo.m.svn-base | 15 + .../.svn/text-base/energyclassify.m.svn-base | 168 + .../LMNN/.svn/text-base/install.m.svn-base | 37 + .../.svn/text-base/knnclassify.m.svn-base | 127 + .../lib/LMNN/.svn/text-base/lmnn.m.svn-base | 708 + .../lib/LMNN/.svn/text-base/pca.m.svn-base | 29 + .../LMNN/.svn/text-base/runlmnn.m.svn-base | 38 + .../LMNN/.svn/text-base/setpaths.m.svn-base | 8 + evaluation/KISSME/toolbox/lib/LMNN/applypca.m | 25 + .../toolbox/lib/LMNN/data/.svn/all-wcprops | 17 + .../toolbox/lib/LMNN/data/.svn/dir-prop-base | 10 + .../KISSME/toolbox/lib/LMNN/data/.svn/entries | 54 + .../KISSME/toolbox/lib/LMNN/data/.svn/format | 1 + .../data/.svn/prop-base/bal2.mat.svn-base | 9 + .../data/.svn/prop-base/iris2.mat.svn-base | 9 + .../data/.svn/text-base/bal2.mat.svn-base | Bin 0 -> 21168 bytes .../data/.svn/text-base/iris2.mat.svn-base | Bin 0 -> 5488 bytes .../KISSME/toolbox/lib/LMNN/data/bal2.mat | Bin 0 -> 21168 bytes .../KISSME/toolbox/lib/LMNN/data/iris2.mat | Bin 0 -> 5488 bytes evaluation/KISSME/toolbox/lib/LMNN/demo.m | 15 + .../KISSME/toolbox/lib/LMNN/energyclassify.m | 168 + .../lib/LMNN/helperfunctions/.svn/all-wcprops | 29 + .../LMNN/helperfunctions/.svn/dir-prop-base | 10 + .../lib/LMNN/helperfunctions/.svn/entries | 80 + .../lib/LMNN/helperfunctions/.svn/format | 1 + .../.svn/prop-base/extractpars.m.svn-base | 5 + .../.svn/prop-base/mat.m.svn-base | 5 + .../.svn/prop-base/mexall.m.svn-base | 5 + .../.svn/prop-base/vec.m.svn-base | 5 + .../.svn/text-base/extractpars.m.svn-base | 35 + .../.svn/text-base/mat.m.svn-base | 4 + .../.svn/text-base/mexall.m.svn-base | 15 + .../.svn/text-base/vec.m.svn-base | 3 + .../lib/LMNN/helperfunctions/distance.m | 37 + .../lib/LMNN/helperfunctions/extractpars.m | 35 + .../toolbox/lib/LMNN/helperfunctions/mat.m | 4 + .../toolbox/lib/LMNN/helperfunctions/mexall.m | 21 + .../lib/LMNN/helperfunctions/mexallwindows.m | 21 + .../toolbox/lib/LMNN/helperfunctions/vec.m | 3 + evaluation/KISSME/toolbox/lib/LMNN/install.m | 37 + .../KISSME/toolbox/lib/LMNN/installWINDOWS.m | 37 + .../KISSME/toolbox/lib/LMNN/knnclassify.m | 127 + evaluation/KISSME/toolbox/lib/LMNN/lmnn.m | 708 + .../lib/LMNN/mexfunctions/.svn/all-wcprops | 161 + .../lib/LMNN/mexfunctions/.svn/dir-prop-base | 10 + .../lib/LMNN/mexfunctions/.svn/entries | 366 + .../toolbox/lib/LMNN/mexfunctions/.svn/format | 1 + .../.svn/prop-base/SOD.c.svn-base | 5 + .../.svn/prop-base/SOD.m.svn-base | 5 + .../.svn/prop-base/SODW.c.svn-base | 5 + .../.svn/prop-base/SODW.m.svn-base | 5 + .../.svn/prop-base/addchv.c.svn-base | 9 + .../.svn/prop-base/addh.c.svn-base | 5 + .../.svn/prop-base/addv.c.svn-base | 5 + .../.svn/prop-base/cdist.c.svn-base | 5 + .../.svn/prop-base/cdist.m.svn-base | 5 + .../.svn/prop-base/count.c.svn-base | 5 + .../.svn/prop-base/count.m.svn-base | 5 + .../.svn/prop-base/distance.c.svn-base | 5 + .../.svn/prop-base/distance.m.svn-base | 5 + .../.svn/prop-base/findimps3Dac.c.svn-base | 5 + .../.svn/prop-base/findimps3Dac.m.svn-base | 5 + .../.svn/prop-base/findlessh.c.svn-base | 5 + .../.svn/prop-base/findlessh.m.svn-base | 5 + .../.svn/prop-base/mink.c.svn-base | 5 + .../.svn/prop-base/mink.m.svn-base | 5 + .../.svn/prop-base/mulh.c.svn-base | 5 + .../.svn/prop-base/mulh.m.svn-base | 5 + .../.svn/prop-base/mulv.m.svn-base | 5 + .../mexfunctions/.svn/prop-base/sd.c.svn-base | 5 + .../mexfunctions/.svn/prop-base/sd.m.svn-base | 5 + .../.svn/prop-base/sumiflessh2.c.svn-base | 5 + .../.svn/prop-base/sumiflessv2.c.svn-base | 5 + .../.svn/text-base/SOD.c.svn-base | 122 + .../.svn/text-base/SOD.m.svn-base | 33 + .../.svn/text-base/SODW.c.svn-base | 120 + .../.svn/text-base/SODW.m.svn-base | 35 + .../.svn/text-base/addchv.c.svn-base | 83 + .../.svn/text-base/addh.c.svn-base | 80 + .../.svn/text-base/addv.c.svn-base | 79 + .../.svn/text-base/cdist.c.svn-base | 116 + .../.svn/text-base/cdist.m.svn-base | 20 + .../.svn/text-base/count.c.svn-base | 101 + .../.svn/text-base/count.m.svn-base | 30 + .../.svn/text-base/distance.c.svn-base | 141 + .../.svn/text-base/distance.m.svn-base | 108 + .../.svn/text-base/findimps3Dac.c.svn-base | 116 + .../.svn/text-base/findimps3Dac.m.svn-base | 35 + .../.svn/text-base/findlessh.c.svn-base | 84 + .../.svn/text-base/findlessh.m.svn-base | 18 + .../.svn/text-base/mink.c.svn-base | 98 + .../.svn/text-base/mink.m.svn-base | 24 + .../.svn/text-base/mulh.c.svn-base | 80 + .../.svn/text-base/mulh.m.svn-base | 18 + .../.svn/text-base/mulv.m.svn-base | 17 + .../mexfunctions/.svn/text-base/sd.c.svn-base | 96 + .../mexfunctions/.svn/text-base/sd.m.svn-base | 24 + .../.svn/text-base/sumiflessh2.c.svn-base | 89 + .../.svn/text-base/sumiflessv2.c.svn-base | 89 + .../toolbox/lib/LMNN/mexfunctions/SOD.c | 122 + .../toolbox/lib/LMNN/mexfunctions/SOD.m | 33 + .../toolbox/lib/LMNN/mexfunctions/SOD.mexmaci | Bin 0 -> 9064 bytes .../lib/LMNN/mexfunctions/SOD.mexmaci64 | Bin 0 -> 9112 bytes .../toolbox/lib/LMNN/mexfunctions/SOD.mexw64 | Bin 0 -> 8704 bytes .../toolbox/lib/LMNN/mexfunctions/SODW.c | 120 + .../toolbox/lib/LMNN/mexfunctions/SODW.m | 35 + .../lib/LMNN/mexfunctions/SODW.mexmaci | Bin 0 -> 9064 bytes .../lib/LMNN/mexfunctions/SODW.mexmaci64 | Bin 0 -> 9112 bytes .../toolbox/lib/LMNN/mexfunctions/SODW.mexw64 | Bin 0 -> 8704 bytes .../toolbox/lib/LMNN/mexfunctions/addchv.c | 83 + .../lib/LMNN/mexfunctions/addchv.mexmaci | Bin 0 -> 8920 bytes .../lib/LMNN/mexfunctions/addchv.mexmaci64 | Bin 0 -> 8936 bytes .../lib/LMNN/mexfunctions/addchv.mexw64 | Bin 0 -> 8192 bytes .../toolbox/lib/LMNN/mexfunctions/addh.c | 80 + .../lib/LMNN/mexfunctions/addh.mexmaci | Bin 0 -> 8920 bytes .../lib/LMNN/mexfunctions/addh.mexmaci64 | Bin 0 -> 8936 bytes .../toolbox/lib/LMNN/mexfunctions/addh.mexw64 | Bin 0 -> 7680 bytes .../toolbox/lib/LMNN/mexfunctions/addv.c | 79 + .../lib/LMNN/mexfunctions/addv.mexmaci | Bin 0 -> 8920 bytes .../lib/LMNN/mexfunctions/addv.mexmaci64 | Bin 0 -> 8936 bytes .../toolbox/lib/LMNN/mexfunctions/addv.mexw64 | Bin 0 -> 8192 bytes .../toolbox/lib/LMNN/mexfunctions/cdist.c | 116 + .../toolbox/lib/LMNN/mexfunctions/cdist.m | 20 + .../lib/LMNN/mexfunctions/cdist.mexmaci | Bin 0 -> 9004 bytes .../lib/LMNN/mexfunctions/cdist.mexmaci64 | Bin 0 -> 9040 bytes .../lib/LMNN/mexfunctions/cdist.mexw64 | Bin 0 -> 8192 bytes .../toolbox/lib/LMNN/mexfunctions/count.c | 101 + .../toolbox/lib/LMNN/mexfunctions/count.m | 30 + .../lib/LMNN/mexfunctions/count.mexmaci | Bin 0 -> 8968 bytes .../lib/LMNN/mexfunctions/count.mexmaci64 | Bin 0 -> 8992 bytes .../lib/LMNN/mexfunctions/count.mexw64 | Bin 0 -> 8192 bytes .../lib/LMNN/mexfunctions/findimps3Dac.c | 116 + .../lib/LMNN/mexfunctions/findimps3Dac.m | 35 + .../LMNN/mexfunctions/findimps3Dac.mexmaci | Bin 0 -> 8872 bytes .../LMNN/mexfunctions/findimps3Dac.mexmaci64 | Bin 0 -> 8880 bytes .../lib/LMNN/mexfunctions/findimps3Dac.mexw64 | Bin 0 -> 8192 bytes .../toolbox/lib/LMNN/mexfunctions/findlessh.c | 84 + .../toolbox/lib/LMNN/mexfunctions/findlessh.m | 18 + .../lib/LMNN/mexfunctions/findlessh.mexmaci | Bin 0 -> 8968 bytes .../lib/LMNN/mexfunctions/findlessh.mexmaci64 | Bin 0 -> 8992 bytes .../lib/LMNN/mexfunctions/findlessh.mexw64 | Bin 0 -> 8192 bytes .../toolbox/lib/LMNN/mexfunctions/mink.c | 98 + .../toolbox/lib/LMNN/mexfunctions/mink.m | 24 + .../lib/LMNN/mexfunctions/mink.mexmaci | Bin 0 -> 8904 bytes .../lib/LMNN/mexfunctions/mink.mexmaci64 | Bin 0 -> 8920 bytes .../toolbox/lib/LMNN/mexfunctions/mink.mexw64 | Bin 0 -> 8192 bytes .../toolbox/lib/LMNN/mexfunctions/mulh.c | 80 + .../toolbox/lib/LMNN/mexfunctions/mulh.m | 18 + .../lib/LMNN/mexfunctions/mulh.mexmaci | Bin 0 -> 8920 bytes .../lib/LMNN/mexfunctions/mulh.mexmaci64 | Bin 0 -> 8936 bytes .../toolbox/lib/LMNN/mexfunctions/mulh.mexw64 | Bin 0 -> 7680 bytes .../toolbox/lib/LMNN/mexfunctions/mulv.m | 17 + .../KISSME/toolbox/lib/LMNN/mexfunctions/sd.c | 96 + .../KISSME/toolbox/lib/LMNN/mexfunctions/sd.m | 24 + .../toolbox/lib/LMNN/mexfunctions/sd.mexmaci | Bin 0 -> 8884 bytes .../lib/LMNN/mexfunctions/sd.mexmaci64 | Bin 0 -> 8888 bytes .../toolbox/lib/LMNN/mexfunctions/sd.mexw64 | Bin 0 -> 8192 bytes .../lib/LMNN/mexfunctions/sumiflessh2.c | 89 + .../lib/LMNN/mexfunctions/sumiflessh2.mexmaci | Bin 0 -> 8920 bytes .../LMNN/mexfunctions/sumiflessh2.mexmaci64 | Bin 0 -> 8936 bytes .../lib/LMNN/mexfunctions/sumiflessh2.mexw64 | Bin 0 -> 8192 bytes .../lib/LMNN/mexfunctions/sumiflessv2.c | 89 + .../lib/LMNN/mexfunctions/sumiflessv2.mexmaci | Bin 0 -> 8920 bytes .../LMNN/mexfunctions/sumiflessv2.mexmaci64 | Bin 0 -> 8936 bytes .../lib/LMNN/mexfunctions/sumiflessv2.mexw64 | Bin 0 -> 8192 bytes evaluation/KISSME/toolbox/lib/LMNN/pca.m | 29 + evaluation/KISSME/toolbox/lib/LMNN/runlmnn.m | 38 + evaluation/KISSME/toolbox/lib/LMNN/setpaths.m | 8 + .../KISSME/toolbox/lib/MildML_0.1/README | 41 + .../toolbox/lib/MildML_0.1/compute_tasks.c | 71 + .../toolbox/lib/MildML_0.1/hist_count.m | 28 + .../toolbox/lib/MildML_0.1/ldml_learn.m | 64 + .../KISSME/toolbox/lib/MildML_0.1/mexall.m | 1 + .../lib/MildML_0.1/mildml_evalg_sparse.c | 475 + .../lib/MildML_0.1/mildml_evalg_sparse.mexa64 | Bin 0 -> 20857 bytes .../KISSME/toolbox/lib/MildML_0.1/mildml_fg.m | 41 + .../toolbox/lib/MildML_0.1/mildml_learn.m | 58 + .../KISSME/toolbox/lib/MildML_0.1/minimize.m | 159 + .../KISSME/toolbox/lib/MildML_0.1/vec.m | 3 + .../toolbox/lib/__MACOSX/LMNN/._.DS_Store | Bin 0 -> 233 bytes .../KISSME/toolbox/lib/__MACOSX/LMNN/._.svn | Bin 0 -> 233 bytes .../toolbox/lib/__MACOSX/LMNN/._applypca.m | Bin 0 -> 233 bytes .../KISSME/toolbox/lib/__MACOSX/LMNN/._data | Bin 0 -> 233 bytes .../KISSME/toolbox/lib/__MACOSX/LMNN/._demo.m | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/._energyclassify.m | Bin 0 -> 233 bytes .../toolbox/lib/__MACOSX/LMNN/._install.m | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/._installWINDOWS.m | Bin 0 -> 185 bytes .../toolbox/lib/__MACOSX/LMNN/._knnclassify.m | Bin 0 -> 185 bytes .../KISSME/toolbox/lib/__MACOSX/LMNN/._lmnn.m | Bin 0 -> 188 bytes .../KISSME/toolbox/lib/__MACOSX/LMNN/._pca.m | Bin 0 -> 233 bytes .../toolbox/lib/__MACOSX/LMNN/._runlmnn.m | Bin 0 -> 233 bytes .../toolbox/lib/__MACOSX/LMNN/._setpaths.m | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/.svn/._all-wcprops | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/.svn/._dir-prop-base | Bin 0 -> 233 bytes .../toolbox/lib/__MACOSX/LMNN/.svn/._entries | Bin 0 -> 233 bytes .../toolbox/lib/__MACOSX/LMNN/.svn/._format | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/.svn/._prop-base | Bin 0 -> 233 bytes .../toolbox/lib/__MACOSX/LMNN/.svn/._props | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/.svn/._text-base | Bin 0 -> 233 bytes .../toolbox/lib/__MACOSX/LMNN/.svn/._tmp | Bin 0 -> 233 bytes .../LMNN/.svn/prop-base/._applypca.m.svn-base | Bin 0 -> 233 bytes .../LMNN/.svn/prop-base/._demo.m.svn-base | Bin 0 -> 233 bytes .../prop-base/._energyclassify.m.svn-base | Bin 0 -> 233 bytes .../LMNN/.svn/prop-base/._install.m.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._knnclassify.m.svn-base | Bin 0 -> 233 bytes .../LMNN/.svn/prop-base/._lmnn.m.svn-base | Bin 0 -> 233 bytes .../LMNN/.svn/prop-base/._pca.m.svn-base | Bin 0 -> 233 bytes .../LMNN/.svn/prop-base/._runlmnn.m.svn-base | Bin 0 -> 233 bytes .../LMNN/.svn/prop-base/._setpaths.m.svn-base | Bin 0 -> 233 bytes .../LMNN/.svn/text-base/._applypca.m.svn-base | Bin 0 -> 233 bytes .../LMNN/.svn/text-base/._demo.m.svn-base | Bin 0 -> 233 bytes .../text-base/._energyclassify.m.svn-base | Bin 0 -> 233 bytes .../LMNN/.svn/text-base/._install.m.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._knnclassify.m.svn-base | Bin 0 -> 233 bytes .../LMNN/.svn/text-base/._lmnn.m.svn-base | Bin 0 -> 233 bytes .../LMNN/.svn/text-base/._pca.m.svn-base | Bin 0 -> 233 bytes .../LMNN/.svn/text-base/._runlmnn.m.svn-base | Bin 0 -> 233 bytes .../LMNN/.svn/text-base/._setpaths.m.svn-base | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/.svn/tmp/._prop-base | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/.svn/tmp/._props | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/.svn/tmp/._text-base | Bin 0 -> 233 bytes .../toolbox/lib/__MACOSX/LMNN/data/._.svn | Bin 0 -> 233 bytes .../toolbox/lib/__MACOSX/LMNN/data/._bal2.mat | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/data/._iris2.mat | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/data/.svn/._all-wcprops | Bin 0 -> 233 bytes .../__MACOSX/LMNN/data/.svn/._dir-prop-base | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/data/.svn/._entries | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/data/.svn/._format | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/data/.svn/._prop-base | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/data/.svn/._props | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/data/.svn/._text-base | Bin 0 -> 233 bytes .../toolbox/lib/__MACOSX/LMNN/data/.svn/._tmp | Bin 0 -> 233 bytes .../data/.svn/prop-base/._bal2.mat.svn-base | Bin 0 -> 233 bytes .../data/.svn/prop-base/._iris2.mat.svn-base | Bin 0 -> 233 bytes .../data/.svn/text-base/._bal2.mat.svn-base | Bin 0 -> 233 bytes .../data/.svn/text-base/._iris2.mat.svn-base | Bin 0 -> 233 bytes .../__MACOSX/LMNN/data/.svn/tmp/._prop-base | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/data/.svn/tmp/._props | Bin 0 -> 233 bytes .../__MACOSX/LMNN/data/.svn/tmp/._text-base | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/helperfunctions/._.svn | Bin 0 -> 233 bytes .../LMNN/helperfunctions/._extractpars.m | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/helperfunctions/._mat.m | Bin 0 -> 233 bytes .../__MACOSX/LMNN/helperfunctions/._mexall.m | Bin 0 -> 187 bytes .../LMNN/helperfunctions/._mexallwindows.m | Bin 0 -> 187 bytes .../lib/__MACOSX/LMNN/helperfunctions/._vec.m | Bin 0 -> 233 bytes .../LMNN/helperfunctions/.svn/._all-wcprops | Bin 0 -> 233 bytes .../LMNN/helperfunctions/.svn/._dir-prop-base | Bin 0 -> 233 bytes .../LMNN/helperfunctions/.svn/._entries | Bin 0 -> 233 bytes .../LMNN/helperfunctions/.svn/._format | Bin 0 -> 233 bytes .../LMNN/helperfunctions/.svn/._prop-base | Bin 0 -> 233 bytes .../LMNN/helperfunctions/.svn/._props | Bin 0 -> 233 bytes .../LMNN/helperfunctions/.svn/._text-base | Bin 0 -> 233 bytes .../__MACOSX/LMNN/helperfunctions/.svn/._tmp | Bin 0 -> 233 bytes .../.svn/prop-base/._extractpars.m.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._mat.m.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._mexall.m.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._vec.m.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._extractpars.m.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._mat.m.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._mexall.m.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._vec.m.svn-base | Bin 0 -> 233 bytes .../LMNN/helperfunctions/.svn/tmp/._prop-base | Bin 0 -> 233 bytes .../LMNN/helperfunctions/.svn/tmp/._props | Bin 0 -> 233 bytes .../LMNN/helperfunctions/.svn/tmp/._text-base | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/mexfunctions/._.svn | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/mexfunctions/._SOD.c | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/mexfunctions/._SOD.m | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/mexfunctions/._SODW.c | Bin 0 -> 185 bytes .../lib/__MACOSX/LMNN/mexfunctions/._SODW.m | Bin 0 -> 187 bytes .../lib/__MACOSX/LMNN/mexfunctions/._addchv.c | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/mexfunctions/._addh.c | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/mexfunctions/._addv.c | Bin 0 -> 519 bytes .../lib/__MACOSX/LMNN/mexfunctions/._cdist.c | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/mexfunctions/._cdist.m | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/mexfunctions/._count.c | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/mexfunctions/._count.m | Bin 0 -> 233 bytes .../LMNN/mexfunctions/._findimps3Dac.c | Bin 0 -> 233 bytes .../LMNN/mexfunctions/._findimps3Dac.m | Bin 0 -> 233 bytes .../__MACOSX/LMNN/mexfunctions/._findlessh.c | Bin 0 -> 233 bytes .../__MACOSX/LMNN/mexfunctions/._findlessh.m | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/mexfunctions/._mink.c | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/mexfunctions/._mink.m | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/mexfunctions/._mulh.c | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/mexfunctions/._mulh.m | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/mexfunctions/._mulv.m | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/mexfunctions/._sd.c | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/mexfunctions/._sd.m | Bin 0 -> 233 bytes .../LMNN/mexfunctions/._sumiflessh2.c | Bin 0 -> 233 bytes .../LMNN/mexfunctions/._sumiflessv2.c | Bin 0 -> 233 bytes .../LMNN/mexfunctions/.svn/._all-wcprops | Bin 0 -> 233 bytes .../LMNN/mexfunctions/.svn/._dir-prop-base | Bin 0 -> 233 bytes .../__MACOSX/LMNN/mexfunctions/.svn/._entries | Bin 0 -> 233 bytes .../__MACOSX/LMNN/mexfunctions/.svn/._format | Bin 0 -> 233 bytes .../LMNN/mexfunctions/.svn/._prop-base | Bin 0 -> 233 bytes .../__MACOSX/LMNN/mexfunctions/.svn/._props | Bin 0 -> 233 bytes .../LMNN/mexfunctions/.svn/._text-base | Bin 0 -> 233 bytes .../lib/__MACOSX/LMNN/mexfunctions/.svn/._tmp | Bin 0 -> 233 bytes .../.svn/prop-base/._SOD.c.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._SOD.m.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._SODW.c.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._SODW.m.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._addchv.c.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._addh.c.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._addv.c.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._cdist.c.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._cdist.m.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._count.c.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._count.m.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._distance.c.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._distance.m.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._findimps3Dac.c.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._findimps3Dac.m.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._findlessh.c.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._findlessh.m.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._mink.c.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._mink.m.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._mulh.c.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._mulh.m.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._mulv.m.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._sd.c.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._sd.m.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._sumiflessh2.c.svn-base | Bin 0 -> 233 bytes .../.svn/prop-base/._sumiflessv2.c.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._SOD.c.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._SOD.m.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._SODW.c.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._SODW.m.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._addchv.c.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._addh.c.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._addv.c.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._cdist.c.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._cdist.m.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._count.c.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._count.m.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._distance.c.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._distance.m.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._findimps3Dac.c.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._findimps3Dac.m.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._findlessh.c.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._findlessh.m.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._mink.c.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._mink.m.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._mulh.c.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._mulh.m.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._mulv.m.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._sd.c.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._sd.m.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._sumiflessh2.c.svn-base | Bin 0 -> 233 bytes .../.svn/text-base/._sumiflessv2.c.svn-base | Bin 0 -> 233 bytes .../LMNN/mexfunctions/.svn/tmp/._prop-base | Bin 0 -> 233 bytes .../LMNN/mexfunctions/.svn/tmp/._props | Bin 0 -> 233 bytes .../LMNN/mexfunctions/.svn/tmp/._text-base | Bin 0 -> 233 bytes .../lib/itml/ComputeDistanceExtremes.m | 39 + .../toolbox/lib/itml/CrossValidateKNN.m | 62 + .../toolbox/lib/itml/EuclideanDistance.m | 2 + .../KISSME/toolbox/lib/itml/GetConstraints.m | 20 + evaluation/KISSME/toolbox/lib/itml/ItmlAlg.m | 99 + evaluation/KISSME/toolbox/lib/itml/KNN.m | 48 + .../KISSME/toolbox/lib/itml/MetricLearning.m | 35 + .../lib/itml/MetricLearningAutotuneKnn.m | 33 + evaluation/KISSME/toolbox/lib/itml/README | 45 + .../toolbox/lib/itml/SetDefaultParams.m | 32 + evaluation/KISSME/toolbox/lib/itml/Test.m | 11 + .../KISSME/toolbox/lib/itml/data/iris.mtx | 150 + .../KISSME/toolbox/lib/itml/data/iris.truth | 150 + evaluation/LOMO_XQDA/LICENSE | 6 + evaluation/LOMO_XQDA/README.txt | 32 + evaluation/LOMO_XQDA/bin/Retinex.mexa64 | Bin 0 -> 28477 bytes evaluation/LOMO_XQDA/bin/Retinex.mexglx | Bin 0 -> 26658 bytes evaluation/LOMO_XQDA/bin/Retinex.mexw32 | Bin 0 -> 29184 bytes evaluation/LOMO_XQDA/bin/Retinex.mexw64 | Bin 0 -> 43520 bytes evaluation/LOMO_XQDA/code/Demo_LOMO.m | 36 + evaluation/LOMO_XQDA/code/Demo_XQDA.m | 69 + evaluation/LOMO_XQDA/code/EvalCMC.m | 59 + evaluation/LOMO_XQDA/code/LOMO.m | 321 + evaluation/LOMO_XQDA/code/MahDist.m | 37 + evaluation/LOMO_XQDA/code/SILTP.m | 120 + evaluation/LOMO_XQDA/code/XQDA.m | 193 + evaluation/LOMO_XQDA/images/000_45_a.bmp | Bin 0 -> 18488 bytes evaluation/LOMO_XQDA/images/000_45_b.bmp | Bin 0 -> 18488 bytes .../LOMO_XQDA/results/cuhk01_lomo_xqda.mat | Bin 0 -> 2712 bytes .../results/cuhk03_detected_lomo_xqda.mat | Bin 0 -> 2712 bytes .../results/cuhk03_labeled_lomo_xqda.mat | Bin 0 -> 2712 bytes .../LOMO_XQDA/results/qmul_grid_lomo_xqda.mat | Bin 0 -> 2712 bytes .../qmul_grid_lomo_xqda_camera-network.mat | Bin 0 -> 2712 bytes .../LOMO_XQDA/results/viper_lomo_xqda.mat | Bin 0 -> 2712 bytes evaluation/Market_1501_evaluation.m | 70 + evaluation/Market_1501_extract_feature.m | 60 + .../cuhk03_new_protocol_config_detected.mat | Bin 0 -> 76211 bytes .../cuhk03_new_protocol_config_labeled.mat | Bin 0 -> 76221 bytes evaluation/data/CUHK03/gen_train_test_split.m | 63 + evaluation/data/CUHK03/save_img.m | 25 + evaluation/data/CUHK03/save_train_txt.m | 27 + .../data/CUHK03/train_cuhk03_detected.txt | 7365 ++++++ .../data/CUHK03/train_cuhk03_labeled.txt | 7368 ++++++ evaluation/data/Market-1501/bounding_box_test | 1 + .../data/Market-1501/bounding_box_train | 1 + evaluation/data/Market-1501/gt_bbox | 1 + evaluation/data/Market-1501/gt_query | 1 + evaluation/data/Market-1501/query | 1 + evaluation/data/Market-1501/queryCam.mat | Bin 0 -> 752 bytes evaluation/data/Market-1501/queryID.mat | Bin 0 -> 1504 bytes evaluation/data/Market-1501/testCam.mat | Bin 0 -> 2706 bytes evaluation/data/Market-1501/testID.mat | Bin 0 -> 2107 bytes evaluation/data/Market-1501/train.txt | 11642 +++++++++ evaluation/data/Market-1501/train_cam.mat | Bin 0 -> 2580 bytes evaluation/data/Market-1501/train_label.mat | Bin 0 -> 2047 bytes evaluation/data/Market-1501/val.txt | 1294 + evaluation/utils/applypca2.m | 37 + evaluation/utils/compute_AP.m | 42 + evaluation/utils/compute_AP_multiCam.m | 89 + evaluation/utils/compute_r1_multiCam.m | 68 + evaluation/utils/draw_confusion_matrix.m | 37 + evaluation/utils/evaluation.m | 28 + evaluation/utils/gen_train_sample_kissme.m | 44 + evaluation/utils/gen_train_sample_xqda.m | 25 + evaluation/utils/info_mars.m | 120 + evaluation/utils/prepare_img.m | 13 + evaluation/utils/process_box_feat.m | 15 + evaluation/utils/process_box_feat_prune.m | 71 + .../CUHK03/train_IDE_CaffeNet_detected.sh | 17 + .../CUHK03/train_IDE_CaffeNet_detected~ | 0 .../CUHK03/train_IDE_CaffeNet_labeled.sh | 17 + .../CUHK03/train_IDE_CaffeNet_labeled~ | 17 + .../CUHK03/train_IDE_ResNet_50_detected.sh | 17 + .../CUHK03/train_IDE_ResNet_50_labeled.sh | 17 + experiments/CUHK03/train_IDE_ResNet_50_ld.sh | 37 + .../Market-1501/train_IDE_ResNet_50.sh | 17 + .../CaffeNet_detected_solver.prototxt | 16 + .../CaffeNet_detected_train_val.prototxt | 341 + .../CaffeNet/CaffeNet_labeled_solver.prototxt | 16 + .../CaffeNet_labeled_train_val.prototxt | 342 + models/CUHK03/CaffeNet/CaffeNet_test.prototxt | 319 + .../ResNet_50_IDE_detected_solver.prototxt | 16 + .../ResNet_50_IDE_detected_train_val.prototxt | 2378 ++ .../ResNet_50_IDE_labeled_solver.prototxt | 16 + .../ResNet_50_IDE_labeled_train_val.prototxt | 2378 ++ .../CUHK03/ResNet_50/ResNet_50_test.prototxt | 2305 ++ .../ResNet_50/ResNet_50_IDE_solver.prototxt | 19 + .../ResNet_50_IDE_train_val.prototxt | 2403 ++ .../ResNet_50/ResNet_50_test.prototxt | 2305 ++ 1145 files changed, 189937 insertions(+), 1 deletion(-) create mode 100644 caffe/.Doxyfile create mode 100644 caffe/.github/ISSUE_TEMPLATE.md create mode 100644 caffe/.travis.yml create mode 100644 caffe/CMakeLists.txt create mode 100644 caffe/CONTRIBUTING.md create mode 100644 caffe/CONTRIBUTORS.md create mode 100644 caffe/INSTALL.md create mode 100644 caffe/LICENSE create mode 100644 caffe/Makefile create mode 100644 caffe/Makefile.config.example create mode 100644 caffe/README.md create mode 100644 caffe/caffe.cloc create mode 100644 caffe/cmake/ConfigGen.cmake create mode 100644 caffe/cmake/Cuda.cmake create mode 100644 caffe/cmake/Dependencies.cmake create mode 100644 caffe/cmake/External/gflags.cmake create mode 100644 caffe/cmake/External/glog.cmake create mode 100644 caffe/cmake/Misc.cmake create mode 100644 caffe/cmake/Modules/FindAtlas.cmake create mode 100644 caffe/cmake/Modules/FindGFlags.cmake create mode 100644 caffe/cmake/Modules/FindGlog.cmake create mode 100644 caffe/cmake/Modules/FindLAPACK.cmake create mode 100644 caffe/cmake/Modules/FindLMDB.cmake create mode 100644 caffe/cmake/Modules/FindLevelDB.cmake create mode 100644 caffe/cmake/Modules/FindMKL.cmake create mode 100644 caffe/cmake/Modules/FindMatlabMex.cmake create mode 100644 caffe/cmake/Modules/FindNCCL.cmake create mode 100644 caffe/cmake/Modules/FindNumPy.cmake create mode 100644 caffe/cmake/Modules/FindOpenBLAS.cmake create mode 100644 caffe/cmake/Modules/FindSnappy.cmake create mode 100644 caffe/cmake/Modules/FindvecLib.cmake create mode 100644 caffe/cmake/ProtoBuf.cmake create mode 100644 caffe/cmake/Summary.cmake create mode 100644 caffe/cmake/Targets.cmake create mode 100644 caffe/cmake/Templates/CaffeConfig.cmake.in create mode 100644 caffe/cmake/Templates/CaffeConfigVersion.cmake.in create mode 100644 caffe/cmake/Templates/caffe_config.h.in create mode 100644 caffe/cmake/Utils.cmake create mode 100644 caffe/cmake/lint.cmake create mode 100644 caffe/docker/README.md create mode 100644 caffe/docker/cpu/Dockerfile create mode 100644 caffe/docker/gpu/Dockerfile create mode 100644 caffe/docs/CMakeLists.txt create mode 100644 caffe/docs/CNAME create mode 100644 caffe/docs/README.md create mode 100644 caffe/docs/_config.yml create mode 100644 caffe/docs/_layouts/default.html create mode 100644 caffe/docs/development.md create mode 100644 caffe/docs/index.md create mode 100644 caffe/docs/install_apt.md create mode 100644 caffe/docs/install_apt_debian.md create mode 100644 caffe/docs/install_osx.md create mode 100644 caffe/docs/install_yum.md create mode 100644 caffe/docs/installation.md create mode 100644 caffe/docs/model_zoo.md create mode 100644 caffe/docs/multigpu.md create mode 100644 caffe/docs/performance_hardware.md create mode 100644 caffe/docs/stylesheets/pygment_trac.css create mode 100644 caffe/docs/stylesheets/reset.css create mode 100644 caffe/docs/stylesheets/styles.css create mode 100644 caffe/docs/tutorial/convolution.md create mode 100644 caffe/docs/tutorial/data.md create mode 100644 caffe/docs/tutorial/forward_backward.md create mode 100644 caffe/docs/tutorial/index.md create mode 100644 caffe/docs/tutorial/interfaces.md create mode 100644 caffe/docs/tutorial/layers.md create mode 100644 caffe/docs/tutorial/layers/absval.md create mode 100644 caffe/docs/tutorial/layers/accuracy.md create mode 100644 caffe/docs/tutorial/layers/argmax.md create mode 100644 caffe/docs/tutorial/layers/batchnorm.md create mode 100644 caffe/docs/tutorial/layers/batchreindex.md create mode 100644 caffe/docs/tutorial/layers/bias.md create mode 100644 caffe/docs/tutorial/layers/bnll.md create mode 100644 caffe/docs/tutorial/layers/concat.md create mode 100644 caffe/docs/tutorial/layers/contrastiveloss.md create mode 100644 caffe/docs/tutorial/layers/convolution.md create mode 100644 caffe/docs/tutorial/layers/crop.md create mode 100644 caffe/docs/tutorial/layers/data.md create mode 100644 caffe/docs/tutorial/layers/deconvolution.md create mode 100644 caffe/docs/tutorial/layers/dropout.md create mode 100644 caffe/docs/tutorial/layers/dummydata.md create mode 100644 caffe/docs/tutorial/layers/eltwise.md create mode 100644 caffe/docs/tutorial/layers/elu.md create mode 100644 caffe/docs/tutorial/layers/embed.md create mode 100644 caffe/docs/tutorial/layers/euclideanloss.md create mode 100644 caffe/docs/tutorial/layers/exp.md create mode 100644 caffe/docs/tutorial/layers/filter.md create mode 100644 caffe/docs/tutorial/layers/flatten.md create mode 100644 caffe/docs/tutorial/layers/hdf5data.md create mode 100644 caffe/docs/tutorial/layers/hdf5output.md create mode 100644 caffe/docs/tutorial/layers/hingeloss.md create mode 100644 caffe/docs/tutorial/layers/im2col.md create mode 100644 caffe/docs/tutorial/layers/imagedata.md create mode 100644 caffe/docs/tutorial/layers/infogainloss.md create mode 100644 caffe/docs/tutorial/layers/innerproduct.md create mode 100644 caffe/docs/tutorial/layers/input.md create mode 100644 caffe/docs/tutorial/layers/log.md create mode 100644 caffe/docs/tutorial/layers/lrn.md create mode 100644 caffe/docs/tutorial/layers/lstm.md create mode 100644 caffe/docs/tutorial/layers/memorydata.md create mode 100644 caffe/docs/tutorial/layers/multinomiallogisticloss.md create mode 100644 caffe/docs/tutorial/layers/mvn.md create mode 100644 caffe/docs/tutorial/layers/parameter.md create mode 100644 caffe/docs/tutorial/layers/pooling.md create mode 100644 caffe/docs/tutorial/layers/power.md create mode 100644 caffe/docs/tutorial/layers/prelu.md create mode 100644 caffe/docs/tutorial/layers/python.md create mode 100644 caffe/docs/tutorial/layers/recurrent.md create mode 100644 caffe/docs/tutorial/layers/reduction.md create mode 100644 caffe/docs/tutorial/layers/relu.md create mode 100644 caffe/docs/tutorial/layers/reshape.md create mode 100644 caffe/docs/tutorial/layers/rnn.md create mode 100644 caffe/docs/tutorial/layers/scale.md create mode 100644 caffe/docs/tutorial/layers/sigmoid.md create mode 100644 caffe/docs/tutorial/layers/sigmoidcrossentropyloss.md create mode 100644 caffe/docs/tutorial/layers/silence.md create mode 100644 caffe/docs/tutorial/layers/slice.md create mode 100644 caffe/docs/tutorial/layers/softmax.md create mode 100644 caffe/docs/tutorial/layers/softmaxwithloss.md create mode 100644 caffe/docs/tutorial/layers/split.md create mode 100644 caffe/docs/tutorial/layers/spp.md create mode 100644 caffe/docs/tutorial/layers/tanh.md create mode 100644 caffe/docs/tutorial/layers/threshold.md create mode 100644 caffe/docs/tutorial/layers/tile.md create mode 100644 caffe/docs/tutorial/layers/windowdata.md create mode 100644 caffe/docs/tutorial/loss.md create mode 100644 caffe/docs/tutorial/net_layer_blob.md create mode 100644 caffe/docs/tutorial/solver.md create mode 100644 caffe/examples/00-classification.ipynb create mode 100644 caffe/examples/01-learning-lenet.ipynb create mode 100644 caffe/examples/02-fine-tuning.ipynb create mode 100644 caffe/examples/CMakeLists.txt create mode 100644 caffe/examples/brewing-logreg.ipynb create mode 100644 caffe/examples/cifar10/cifar10_full.prototxt create mode 100644 caffe/examples/cifar10/cifar10_full_sigmoid_solver.prototxt create mode 100644 caffe/examples/cifar10/cifar10_full_sigmoid_solver_bn.prototxt create mode 100644 caffe/examples/cifar10/cifar10_full_sigmoid_train_test.prototxt create mode 100644 caffe/examples/cifar10/cifar10_full_sigmoid_train_test_bn.prototxt create mode 100644 caffe/examples/cifar10/cifar10_full_solver.prototxt create mode 100644 caffe/examples/cifar10/cifar10_full_solver_lr1.prototxt create mode 100644 caffe/examples/cifar10/cifar10_full_solver_lr2.prototxt create mode 100644 caffe/examples/cifar10/cifar10_full_train_test.prototxt create mode 100644 caffe/examples/cifar10/cifar10_quick.prototxt create mode 100644 caffe/examples/cifar10/cifar10_quick_solver.prototxt create mode 100644 caffe/examples/cifar10/cifar10_quick_solver_lr1.prototxt create mode 100644 caffe/examples/cifar10/cifar10_quick_train_test.prototxt create mode 100644 caffe/examples/cifar10/convert_cifar_data.cpp create mode 100755 caffe/examples/cifar10/create_cifar10.sh create mode 100644 caffe/examples/cifar10/readme.md create mode 100755 caffe/examples/cifar10/train_full.sh create mode 100755 caffe/examples/cifar10/train_full_sigmoid.sh create mode 100755 caffe/examples/cifar10/train_full_sigmoid_bn.sh create mode 100755 caffe/examples/cifar10/train_quick.sh create mode 100644 caffe/examples/cpp_classification/classification.cpp create mode 100644 caffe/examples/cpp_classification/readme.md create mode 100644 caffe/examples/detection.ipynb create mode 100644 caffe/examples/feature_extraction/imagenet_val.prototxt create mode 100644 caffe/examples/feature_extraction/readme.md create mode 100755 caffe/examples/finetune_flickr_style/assemble_data.py create mode 100644 caffe/examples/finetune_flickr_style/flickr_style.csv.gz create mode 100644 caffe/examples/finetune_flickr_style/readme.md create mode 100644 caffe/examples/finetune_flickr_style/style_names.txt create mode 100644 caffe/examples/finetune_pascal_detection/pascal_finetune_solver.prototxt create mode 100644 caffe/examples/finetune_pascal_detection/pascal_finetune_trainval_test.prototxt create mode 100644 caffe/examples/hdf5_classification/nonlinear_auto_test.prototxt create mode 100644 caffe/examples/hdf5_classification/nonlinear_auto_train.prototxt create mode 100644 caffe/examples/hdf5_classification/nonlinear_train_val.prototxt create mode 100644 caffe/examples/hdf5_classification/train_val.prototxt create mode 100755 caffe/examples/imagenet/create_imagenet.sh create mode 100755 caffe/examples/imagenet/make_imagenet_mean.sh create mode 100644 caffe/examples/imagenet/readme.md create mode 100755 caffe/examples/imagenet/resume_training.sh create mode 100755 caffe/examples/imagenet/train_caffenet.sh create mode 100644 caffe/examples/mnist/convert_mnist_data.cpp create mode 100755 caffe/examples/mnist/create_mnist.sh create mode 100644 caffe/examples/mnist/lenet.prototxt create mode 100644 caffe/examples/mnist/lenet_adadelta_solver.prototxt create mode 100644 caffe/examples/mnist/lenet_auto_solver.prototxt create mode 100644 caffe/examples/mnist/lenet_consolidated_solver.prototxt create mode 100644 caffe/examples/mnist/lenet_multistep_solver.prototxt create mode 100644 caffe/examples/mnist/lenet_solver.prototxt create mode 100644 caffe/examples/mnist/lenet_solver_adam.prototxt create mode 100644 caffe/examples/mnist/lenet_solver_rmsprop.prototxt create mode 100644 caffe/examples/mnist/lenet_train_test.prototxt create mode 100644 caffe/examples/mnist/mnist_autoencoder.prototxt create mode 100644 caffe/examples/mnist/mnist_autoencoder_solver.prototxt create mode 100644 caffe/examples/mnist/mnist_autoencoder_solver_adadelta.prototxt create mode 100644 caffe/examples/mnist/mnist_autoencoder_solver_adagrad.prototxt create mode 100644 caffe/examples/mnist/mnist_autoencoder_solver_nesterov.prototxt create mode 100644 caffe/examples/mnist/readme.md create mode 100755 caffe/examples/mnist/train_lenet.sh create mode 100755 caffe/examples/mnist/train_lenet_adam.sh create mode 100755 caffe/examples/mnist/train_lenet_consolidated.sh create mode 100755 caffe/examples/mnist/train_lenet_docker.sh create mode 100755 caffe/examples/mnist/train_lenet_rmsprop.sh create mode 100755 caffe/examples/mnist/train_mnist_autoencoder.sh create mode 100755 caffe/examples/mnist/train_mnist_autoencoder_adadelta.sh create mode 100755 caffe/examples/mnist/train_mnist_autoencoder_adagrad.sh create mode 100755 caffe/examples/mnist/train_mnist_autoencoder_nesterov.sh create mode 100644 caffe/examples/net_surgery.ipynb create mode 100644 caffe/examples/net_surgery/bvlc_caffenet_full_conv.prototxt create mode 100644 caffe/examples/net_surgery/conv.prototxt create mode 100644 caffe/examples/pascal-multilabel-with-datalayer.ipynb create mode 100644 caffe/examples/pycaffe/caffenet.py create mode 100644 caffe/examples/pycaffe/layers/pascal_multilabel_datalayers.py create mode 100644 caffe/examples/pycaffe/layers/pyloss.py create mode 100644 caffe/examples/pycaffe/linreg.prototxt create mode 100644 caffe/examples/pycaffe/tools.py create mode 100644 caffe/examples/siamese/convert_mnist_siamese_data.cpp create mode 100755 caffe/examples/siamese/create_mnist_siamese.sh create mode 100644 caffe/examples/siamese/mnist_siamese.ipynb create mode 100644 caffe/examples/siamese/mnist_siamese.prototxt create mode 100644 caffe/examples/siamese/mnist_siamese_solver.prototxt create mode 100644 caffe/examples/siamese/mnist_siamese_train_test.prototxt create mode 100644 caffe/examples/siamese/readme.md create mode 100755 caffe/examples/siamese/train_mnist_siamese.sh create mode 100644 caffe/examples/web_demo/app.py create mode 100644 caffe/examples/web_demo/exifutil.py create mode 100644 caffe/examples/web_demo/readme.md create mode 100644 caffe/examples/web_demo/requirements.txt create mode 100644 caffe/examples/web_demo/templates/index.html create mode 100644 caffe/include/caffe/blob.hpp create mode 100644 caffe/include/caffe/caffe.hpp create mode 100644 caffe/include/caffe/common.hpp create mode 100644 caffe/include/caffe/data_transformer.hpp create mode 100644 caffe/include/caffe/filler.hpp create mode 100644 caffe/include/caffe/internal_thread.hpp create mode 100644 caffe/include/caffe/layer.hpp create mode 100644 caffe/include/caffe/layer_factory.hpp create mode 100644 caffe/include/caffe/layers/absval_layer.hpp create mode 100644 caffe/include/caffe/layers/accuracy_layer.hpp create mode 100644 caffe/include/caffe/layers/argmax_layer.hpp create mode 100644 caffe/include/caffe/layers/base_conv_layer.hpp create mode 100644 caffe/include/caffe/layers/base_data_layer.hpp create mode 100644 caffe/include/caffe/layers/batch_norm_layer.hpp create mode 100644 caffe/include/caffe/layers/batch_reindex_layer.hpp create mode 100644 caffe/include/caffe/layers/bias_layer.hpp create mode 100644 caffe/include/caffe/layers/bnll_layer.hpp create mode 100644 caffe/include/caffe/layers/concat_layer.hpp create mode 100644 caffe/include/caffe/layers/contrastive_loss_layer.hpp create mode 100644 caffe/include/caffe/layers/conv_layer.hpp create mode 100644 caffe/include/caffe/layers/crop_layer.hpp create mode 100644 caffe/include/caffe/layers/cudnn_conv_layer.hpp create mode 100644 caffe/include/caffe/layers/cudnn_lcn_layer.hpp create mode 100644 caffe/include/caffe/layers/cudnn_lrn_layer.hpp create mode 100644 caffe/include/caffe/layers/cudnn_pooling_layer.hpp create mode 100644 caffe/include/caffe/layers/cudnn_relu_layer.hpp create mode 100644 caffe/include/caffe/layers/cudnn_sigmoid_layer.hpp create mode 100644 caffe/include/caffe/layers/cudnn_softmax_layer.hpp create mode 100644 caffe/include/caffe/layers/cudnn_tanh_layer.hpp create mode 100644 caffe/include/caffe/layers/data_layer.hpp create mode 100644 caffe/include/caffe/layers/deconv_layer.hpp create mode 100644 caffe/include/caffe/layers/dropout_layer.hpp create mode 100644 caffe/include/caffe/layers/dummy_data_layer.hpp create mode 100644 caffe/include/caffe/layers/eltwise_layer.hpp create mode 100644 caffe/include/caffe/layers/elu_layer.hpp create mode 100644 caffe/include/caffe/layers/embed_layer.hpp create mode 100644 caffe/include/caffe/layers/euclidean_loss_layer.hpp create mode 100644 caffe/include/caffe/layers/exp_layer.hpp create mode 100644 caffe/include/caffe/layers/filter_layer.hpp create mode 100644 caffe/include/caffe/layers/flatten_layer.hpp create mode 100644 caffe/include/caffe/layers/hdf5_data_layer.hpp create mode 100644 caffe/include/caffe/layers/hdf5_output_layer.hpp create mode 100644 caffe/include/caffe/layers/hinge_loss_layer.hpp create mode 100644 caffe/include/caffe/layers/im2col_layer.hpp create mode 100644 caffe/include/caffe/layers/image_data_layer.hpp create mode 100644 caffe/include/caffe/layers/infogain_loss_layer.hpp create mode 100644 caffe/include/caffe/layers/inner_product_layer.hpp create mode 100644 caffe/include/caffe/layers/input_layer.hpp create mode 100644 caffe/include/caffe/layers/log_layer.hpp create mode 100644 caffe/include/caffe/layers/loss_layer.hpp create mode 100644 caffe/include/caffe/layers/lrn_layer.hpp create mode 100644 caffe/include/caffe/layers/lstm_layer.hpp create mode 100644 caffe/include/caffe/layers/memory_data_layer.hpp create mode 100644 caffe/include/caffe/layers/multinomial_logistic_loss_layer.hpp create mode 100644 caffe/include/caffe/layers/mvn_layer.hpp create mode 100644 caffe/include/caffe/layers/neuron_layer.hpp create mode 100644 caffe/include/caffe/layers/parameter_layer.hpp create mode 100644 caffe/include/caffe/layers/pooling_layer.hpp create mode 100644 caffe/include/caffe/layers/power_layer.hpp create mode 100644 caffe/include/caffe/layers/prelu_layer.hpp create mode 100644 caffe/include/caffe/layers/python_layer.hpp create mode 100644 caffe/include/caffe/layers/recurrent_layer.hpp create mode 100644 caffe/include/caffe/layers/reduction_layer.hpp create mode 100644 caffe/include/caffe/layers/relu_layer.hpp create mode 100644 caffe/include/caffe/layers/reshape_layer.hpp create mode 100644 caffe/include/caffe/layers/rnn_layer.hpp create mode 100644 caffe/include/caffe/layers/scale_layer.hpp create mode 100644 caffe/include/caffe/layers/sigmoid_cross_entropy_loss_layer.hpp create mode 100644 caffe/include/caffe/layers/sigmoid_layer.hpp create mode 100644 caffe/include/caffe/layers/silence_layer.hpp create mode 100644 caffe/include/caffe/layers/slice_layer.hpp create mode 100644 caffe/include/caffe/layers/softmax_layer.hpp create mode 100644 caffe/include/caffe/layers/softmax_loss_layer.hpp create mode 100644 caffe/include/caffe/layers/split_layer.hpp create mode 100644 caffe/include/caffe/layers/spp_layer.hpp create mode 100644 caffe/include/caffe/layers/tanh_layer.hpp create mode 100644 caffe/include/caffe/layers/threshold_layer.hpp create mode 100644 caffe/include/caffe/layers/tile_layer.hpp create mode 100644 caffe/include/caffe/layers/window_data_layer.hpp create mode 100644 caffe/include/caffe/net.hpp create mode 100644 caffe/include/caffe/parallel.hpp create mode 100644 caffe/include/caffe/sgd_solvers.hpp create mode 100644 caffe/include/caffe/solver.hpp create mode 100644 caffe/include/caffe/solver_factory.hpp create mode 100644 caffe/include/caffe/syncedmem.hpp create mode 100644 caffe/include/caffe/test/test_caffe_main.hpp create mode 100644 caffe/include/caffe/test/test_gradient_check_util.hpp create mode 100644 caffe/include/caffe/util/benchmark.hpp create mode 100644 caffe/include/caffe/util/blocking_queue.hpp create mode 100644 caffe/include/caffe/util/cudnn.hpp create mode 100644 caffe/include/caffe/util/db.hpp create mode 100644 caffe/include/caffe/util/db_leveldb.hpp create mode 100644 caffe/include/caffe/util/db_lmdb.hpp create mode 100644 caffe/include/caffe/util/device_alternate.hpp create mode 100644 caffe/include/caffe/util/format.hpp create mode 100644 caffe/include/caffe/util/gpu_util.cuh create mode 100644 caffe/include/caffe/util/hdf5.hpp create mode 100644 caffe/include/caffe/util/im2col.hpp create mode 100644 caffe/include/caffe/util/insert_splits.hpp create mode 100644 caffe/include/caffe/util/io.hpp create mode 100644 caffe/include/caffe/util/math_functions.hpp create mode 100644 caffe/include/caffe/util/mkl_alternate.hpp create mode 100644 caffe/include/caffe/util/nccl.hpp create mode 100644 caffe/include/caffe/util/rng.hpp create mode 100644 caffe/include/caffe/util/signal_handler.h create mode 100644 caffe/include/caffe/util/upgrade_proto.hpp create mode 100644 caffe/matlab/+caffe/+test/test_io.m create mode 100644 caffe/matlab/+caffe/+test/test_net.m create mode 100644 caffe/matlab/+caffe/+test/test_solver.m create mode 100644 caffe/matlab/+caffe/Blob.m create mode 100644 caffe/matlab/+caffe/Layer.m create mode 100644 caffe/matlab/+caffe/Net.m create mode 100644 caffe/matlab/+caffe/Solver.m create mode 100644 caffe/matlab/+caffe/get_net.m create mode 100644 caffe/matlab/+caffe/get_solver.m create mode 100644 caffe/matlab/+caffe/imagenet/ilsvrc_2012_mean.mat create mode 100644 caffe/matlab/+caffe/io.m create mode 100644 caffe/matlab/+caffe/private/CHECK.m create mode 100644 caffe/matlab/+caffe/private/CHECK_FILE_EXIST.m create mode 100644 caffe/matlab/+caffe/private/caffe_.cpp create mode 100644 caffe/matlab/+caffe/private/is_valid_handle.m create mode 100644 caffe/matlab/+caffe/reset_all.m create mode 100644 caffe/matlab/+caffe/run_tests.m create mode 100644 caffe/matlab/+caffe/set_device.m create mode 100644 caffe/matlab/+caffe/set_mode_cpu.m create mode 100644 caffe/matlab/+caffe/set_mode_gpu.m create mode 100644 caffe/matlab/+caffe/version.m create mode 100644 caffe/matlab/CMakeLists.txt create mode 100644 caffe/matlab/demo/classification_demo.m create mode 100644 caffe/matlab/hdf5creation/demo.m create mode 100644 caffe/matlab/hdf5creation/store2hdf5.m create mode 100644 caffe/python/CMakeLists.txt create mode 100644 caffe/python/caffe/__init__.py create mode 100644 caffe/python/caffe/_caffe.cpp create mode 100644 caffe/python/caffe/classifier.py create mode 100644 caffe/python/caffe/coord_map.py create mode 100644 caffe/python/caffe/detector.py create mode 100644 caffe/python/caffe/draw.py create mode 100644 caffe/python/caffe/imagenet/ilsvrc_2012_mean.npy create mode 100644 caffe/python/caffe/io.py create mode 100644 caffe/python/caffe/net_spec.py create mode 100644 caffe/python/caffe/pycaffe.py create mode 100644 caffe/python/caffe/test/test_coord_map.py create mode 100644 caffe/python/caffe/test/test_io.py create mode 100644 caffe/python/caffe/test/test_layer_type_list.py create mode 100644 caffe/python/caffe/test/test_net.py create mode 100644 caffe/python/caffe/test/test_net_spec.py create mode 100644 caffe/python/caffe/test/test_python_layer.py create mode 100644 caffe/python/caffe/test/test_python_layer_with_param_str.py create mode 100644 caffe/python/caffe/test/test_solver.py create mode 100755 caffe/python/classify.py create mode 100755 caffe/python/detect.py create mode 100755 caffe/python/draw_net.py create mode 100644 caffe/python/requirements.txt create mode 100644 caffe/python/train.py create mode 100755 caffe/scripts/build_docs.sh create mode 100755 caffe/scripts/copy_notebook.py create mode 100755 caffe/scripts/cpp_lint.py create mode 100755 caffe/scripts/deploy_docs.sh create mode 100755 caffe/scripts/download_model_binary.py create mode 100755 caffe/scripts/download_model_from_gist.sh create mode 100755 caffe/scripts/gather_examples.sh create mode 100755 caffe/scripts/split_caffe_proto.py create mode 100755 caffe/scripts/travis/build.sh create mode 100644 caffe/scripts/travis/configure-cmake.sh create mode 100644 caffe/scripts/travis/configure-make.sh create mode 100755 caffe/scripts/travis/configure.sh create mode 100755 caffe/scripts/travis/defaults.sh create mode 100755 caffe/scripts/travis/install-deps.sh create mode 100755 caffe/scripts/travis/install-python-deps.sh create mode 100755 caffe/scripts/travis/setup-venv.sh create mode 100755 caffe/scripts/travis/test.sh create mode 100755 caffe/scripts/upload_model_to_gist.sh create mode 100644 caffe/src/caffe/CMakeLists.txt create mode 100644 caffe/src/caffe/blob.cpp create mode 100644 caffe/src/caffe/common.cpp create mode 100644 caffe/src/caffe/data_transformer.cpp create mode 100644 caffe/src/caffe/internal_thread.cpp create mode 100644 caffe/src/caffe/layer.cpp create mode 100644 caffe/src/caffe/layer_factory.cpp create mode 100644 caffe/src/caffe/layers/absval_layer.cpp create mode 100644 caffe/src/caffe/layers/absval_layer.cu create mode 100644 caffe/src/caffe/layers/accuracy_layer.cpp create mode 100644 caffe/src/caffe/layers/argmax_layer.cpp create mode 100644 caffe/src/caffe/layers/base_conv_layer.cpp create mode 100644 caffe/src/caffe/layers/base_data_layer.cpp create mode 100644 caffe/src/caffe/layers/base_data_layer.cu create mode 100644 caffe/src/caffe/layers/batch_norm_layer.cpp create mode 100644 caffe/src/caffe/layers/batch_norm_layer.cu create mode 100644 caffe/src/caffe/layers/batch_reindex_layer.cpp create mode 100644 caffe/src/caffe/layers/batch_reindex_layer.cu create mode 100644 caffe/src/caffe/layers/bias_layer.cpp create mode 100644 caffe/src/caffe/layers/bias_layer.cu create mode 100644 caffe/src/caffe/layers/bnll_layer.cpp create mode 100644 caffe/src/caffe/layers/bnll_layer.cu create mode 100644 caffe/src/caffe/layers/concat_layer.cpp create mode 100644 caffe/src/caffe/layers/concat_layer.cu create mode 100644 caffe/src/caffe/layers/contrastive_loss_layer.cpp create mode 100644 caffe/src/caffe/layers/contrastive_loss_layer.cu create mode 100644 caffe/src/caffe/layers/conv_layer.cpp create mode 100644 caffe/src/caffe/layers/conv_layer.cu create mode 100644 caffe/src/caffe/layers/crop_layer.cpp create mode 100644 caffe/src/caffe/layers/crop_layer.cu create mode 100644 caffe/src/caffe/layers/cudnn_conv_layer.cpp create mode 100644 caffe/src/caffe/layers/cudnn_conv_layer.cu create mode 100644 caffe/src/caffe/layers/cudnn_lcn_layer.cpp create mode 100644 caffe/src/caffe/layers/cudnn_lcn_layer.cu create mode 100644 caffe/src/caffe/layers/cudnn_lrn_layer.cpp create mode 100644 caffe/src/caffe/layers/cudnn_lrn_layer.cu create mode 100644 caffe/src/caffe/layers/cudnn_pooling_layer.cpp create mode 100644 caffe/src/caffe/layers/cudnn_pooling_layer.cu create mode 100644 caffe/src/caffe/layers/cudnn_relu_layer.cpp create mode 100644 caffe/src/caffe/layers/cudnn_relu_layer.cu create mode 100644 caffe/src/caffe/layers/cudnn_sigmoid_layer.cpp create mode 100644 caffe/src/caffe/layers/cudnn_sigmoid_layer.cu create mode 100644 caffe/src/caffe/layers/cudnn_softmax_layer.cpp create mode 100644 caffe/src/caffe/layers/cudnn_softmax_layer.cu create mode 100644 caffe/src/caffe/layers/cudnn_tanh_layer.cpp create mode 100644 caffe/src/caffe/layers/cudnn_tanh_layer.cu create mode 100644 caffe/src/caffe/layers/data_layer.cpp create mode 100644 caffe/src/caffe/layers/deconv_layer.cpp create mode 100644 caffe/src/caffe/layers/deconv_layer.cu create mode 100644 caffe/src/caffe/layers/dropout_layer.cpp create mode 100644 caffe/src/caffe/layers/dropout_layer.cu create mode 100644 caffe/src/caffe/layers/dummy_data_layer.cpp create mode 100644 caffe/src/caffe/layers/eltwise_layer.cpp create mode 100644 caffe/src/caffe/layers/eltwise_layer.cu create mode 100644 caffe/src/caffe/layers/elu_layer.cpp create mode 100644 caffe/src/caffe/layers/elu_layer.cu create mode 100644 caffe/src/caffe/layers/embed_layer.cpp create mode 100644 caffe/src/caffe/layers/embed_layer.cu create mode 100644 caffe/src/caffe/layers/euclidean_loss_layer.cpp create mode 100644 caffe/src/caffe/layers/euclidean_loss_layer.cu create mode 100644 caffe/src/caffe/layers/exp_layer.cpp create mode 100644 caffe/src/caffe/layers/exp_layer.cu create mode 100644 caffe/src/caffe/layers/filter_layer.cpp create mode 100644 caffe/src/caffe/layers/filter_layer.cu create mode 100644 caffe/src/caffe/layers/flatten_layer.cpp create mode 100644 caffe/src/caffe/layers/hdf5_data_layer.cpp create mode 100644 caffe/src/caffe/layers/hdf5_data_layer.cu create mode 100644 caffe/src/caffe/layers/hdf5_output_layer.cpp create mode 100644 caffe/src/caffe/layers/hdf5_output_layer.cu create mode 100644 caffe/src/caffe/layers/hinge_loss_layer.cpp create mode 100644 caffe/src/caffe/layers/im2col_layer.cpp create mode 100644 caffe/src/caffe/layers/im2col_layer.cu create mode 100644 caffe/src/caffe/layers/image_data_layer.cpp create mode 100644 caffe/src/caffe/layers/infogain_loss_layer.cpp create mode 100644 caffe/src/caffe/layers/inner_product_layer.cpp create mode 100644 caffe/src/caffe/layers/inner_product_layer.cu create mode 100644 caffe/src/caffe/layers/input_layer.cpp create mode 100644 caffe/src/caffe/layers/log_layer.cpp create mode 100644 caffe/src/caffe/layers/log_layer.cu create mode 100644 caffe/src/caffe/layers/loss_layer.cpp create mode 100644 caffe/src/caffe/layers/lrn_layer.cpp create mode 100644 caffe/src/caffe/layers/lrn_layer.cu create mode 100644 caffe/src/caffe/layers/lstm_layer.cpp create mode 100644 caffe/src/caffe/layers/lstm_unit_layer.cpp create mode 100644 caffe/src/caffe/layers/lstm_unit_layer.cu create mode 100644 caffe/src/caffe/layers/memory_data_layer.cpp create mode 100644 caffe/src/caffe/layers/multinomial_logistic_loss_layer.cpp create mode 100644 caffe/src/caffe/layers/mvn_layer.cpp create mode 100644 caffe/src/caffe/layers/mvn_layer.cu create mode 100644 caffe/src/caffe/layers/neuron_layer.cpp create mode 100644 caffe/src/caffe/layers/parameter_layer.cpp create mode 100644 caffe/src/caffe/layers/pooling_layer.cpp create mode 100644 caffe/src/caffe/layers/pooling_layer.cu create mode 100644 caffe/src/caffe/layers/power_layer.cpp create mode 100644 caffe/src/caffe/layers/power_layer.cu create mode 100644 caffe/src/caffe/layers/prelu_layer.cpp create mode 100644 caffe/src/caffe/layers/prelu_layer.cu create mode 100644 caffe/src/caffe/layers/recurrent_layer.cpp create mode 100644 caffe/src/caffe/layers/recurrent_layer.cu create mode 100644 caffe/src/caffe/layers/reduction_layer.cpp create mode 100644 caffe/src/caffe/layers/reduction_layer.cu create mode 100644 caffe/src/caffe/layers/relu_layer.cpp create mode 100644 caffe/src/caffe/layers/relu_layer.cu create mode 100644 caffe/src/caffe/layers/reshape_layer.cpp create mode 100644 caffe/src/caffe/layers/rnn_layer.cpp create mode 100644 caffe/src/caffe/layers/scale_layer.cpp create mode 100644 caffe/src/caffe/layers/scale_layer.cu create mode 100644 caffe/src/caffe/layers/sigmoid_cross_entropy_loss_layer.cpp create mode 100644 caffe/src/caffe/layers/sigmoid_cross_entropy_loss_layer.cu create mode 100644 caffe/src/caffe/layers/sigmoid_layer.cpp create mode 100644 caffe/src/caffe/layers/sigmoid_layer.cu create mode 100644 caffe/src/caffe/layers/silence_layer.cpp create mode 100644 caffe/src/caffe/layers/silence_layer.cu create mode 100644 caffe/src/caffe/layers/slice_layer.cpp create mode 100644 caffe/src/caffe/layers/slice_layer.cu create mode 100644 caffe/src/caffe/layers/softmax_layer.cpp create mode 100644 caffe/src/caffe/layers/softmax_layer.cu create mode 100644 caffe/src/caffe/layers/softmax_loss_layer.cpp create mode 100644 caffe/src/caffe/layers/softmax_loss_layer.cu create mode 100644 caffe/src/caffe/layers/split_layer.cpp create mode 100644 caffe/src/caffe/layers/split_layer.cu create mode 100644 caffe/src/caffe/layers/spp_layer.cpp create mode 100644 caffe/src/caffe/layers/tanh_layer.cpp create mode 100644 caffe/src/caffe/layers/tanh_layer.cu create mode 100644 caffe/src/caffe/layers/threshold_layer.cpp create mode 100644 caffe/src/caffe/layers/threshold_layer.cu create mode 100644 caffe/src/caffe/layers/tile_layer.cpp create mode 100644 caffe/src/caffe/layers/tile_layer.cu create mode 100644 caffe/src/caffe/layers/window_data_layer.cpp create mode 100644 caffe/src/caffe/net.cpp create mode 100644 caffe/src/caffe/parallel.cpp create mode 100644 caffe/src/caffe/proto/caffe.proto create mode 100644 caffe/src/caffe/solver.cpp create mode 100644 caffe/src/caffe/solvers/adadelta_solver.cpp create mode 100644 caffe/src/caffe/solvers/adadelta_solver.cu create mode 100644 caffe/src/caffe/solvers/adagrad_solver.cpp create mode 100644 caffe/src/caffe/solvers/adagrad_solver.cu create mode 100644 caffe/src/caffe/solvers/adam_solver.cpp create mode 100644 caffe/src/caffe/solvers/adam_solver.cu create mode 100644 caffe/src/caffe/solvers/nesterov_solver.cpp create mode 100644 caffe/src/caffe/solvers/nesterov_solver.cu create mode 100644 caffe/src/caffe/solvers/rmsprop_solver.cpp create mode 100644 caffe/src/caffe/solvers/rmsprop_solver.cu create mode 100644 caffe/src/caffe/solvers/sgd_solver.cpp create mode 100644 caffe/src/caffe/solvers/sgd_solver.cu create mode 100644 caffe/src/caffe/syncedmem.cpp create mode 100644 caffe/src/caffe/test/CMakeLists.txt create mode 100644 caffe/src/caffe/test/test_accuracy_layer.cpp create mode 100644 caffe/src/caffe/test/test_argmax_layer.cpp create mode 100644 caffe/src/caffe/test/test_batch_norm_layer.cpp create mode 100644 caffe/src/caffe/test/test_batch_reindex_layer.cpp create mode 100644 caffe/src/caffe/test/test_benchmark.cpp create mode 100644 caffe/src/caffe/test/test_bias_layer.cpp create mode 100644 caffe/src/caffe/test/test_blob.cpp create mode 100644 caffe/src/caffe/test/test_caffe_main.cpp create mode 100644 caffe/src/caffe/test/test_common.cpp create mode 100644 caffe/src/caffe/test/test_concat_layer.cpp create mode 100644 caffe/src/caffe/test/test_contrastive_loss_layer.cpp create mode 100644 caffe/src/caffe/test/test_convolution_layer.cpp create mode 100644 caffe/src/caffe/test/test_crop_layer.cpp create mode 100644 caffe/src/caffe/test/test_data/generate_sample_data.py create mode 100644 caffe/src/caffe/test/test_data/sample_data.h5 create mode 100644 caffe/src/caffe/test/test_data/sample_data_2_gzip.h5 create mode 100644 caffe/src/caffe/test/test_data/sample_data_list.txt create mode 100644 caffe/src/caffe/test/test_data/solver_data.h5 create mode 100644 caffe/src/caffe/test/test_data/solver_data_list.txt create mode 100644 caffe/src/caffe/test/test_data_layer.cpp create mode 100644 caffe/src/caffe/test/test_data_transformer.cpp create mode 100644 caffe/src/caffe/test/test_db.cpp create mode 100644 caffe/src/caffe/test/test_deconvolution_layer.cpp create mode 100644 caffe/src/caffe/test/test_dummy_data_layer.cpp create mode 100644 caffe/src/caffe/test/test_eltwise_layer.cpp create mode 100644 caffe/src/caffe/test/test_embed_layer.cpp create mode 100644 caffe/src/caffe/test/test_euclidean_loss_layer.cpp create mode 100644 caffe/src/caffe/test/test_filler.cpp create mode 100644 caffe/src/caffe/test/test_filter_layer.cpp create mode 100644 caffe/src/caffe/test/test_flatten_layer.cpp create mode 100644 caffe/src/caffe/test/test_gradient_based_solver.cpp create mode 100644 caffe/src/caffe/test/test_hdf5_output_layer.cpp create mode 100644 caffe/src/caffe/test/test_hdf5data_layer.cpp create mode 100644 caffe/src/caffe/test/test_hinge_loss_layer.cpp create mode 100644 caffe/src/caffe/test/test_im2col_kernel.cu create mode 100644 caffe/src/caffe/test/test_im2col_layer.cpp create mode 100644 caffe/src/caffe/test/test_image_data_layer.cpp create mode 100644 caffe/src/caffe/test/test_infogain_loss_layer.cpp create mode 100644 caffe/src/caffe/test/test_inner_product_layer.cpp create mode 100644 caffe/src/caffe/test/test_internal_thread.cpp create mode 100644 caffe/src/caffe/test/test_io.cpp create mode 100644 caffe/src/caffe/test/test_layer_factory.cpp create mode 100644 caffe/src/caffe/test/test_lrn_layer.cpp create mode 100644 caffe/src/caffe/test/test_lstm_layer.cpp create mode 100644 caffe/src/caffe/test/test_math_functions.cpp create mode 100644 caffe/src/caffe/test/test_maxpool_dropout_layers.cpp create mode 100644 caffe/src/caffe/test/test_memory_data_layer.cpp create mode 100644 caffe/src/caffe/test/test_multinomial_logistic_loss_layer.cpp create mode 100644 caffe/src/caffe/test/test_mvn_layer.cpp create mode 100644 caffe/src/caffe/test/test_net.cpp create mode 100644 caffe/src/caffe/test/test_neuron_layer.cpp create mode 100644 caffe/src/caffe/test/test_platform.cpp create mode 100644 caffe/src/caffe/test/test_pooling_layer.cpp create mode 100644 caffe/src/caffe/test/test_power_layer.cpp create mode 100644 caffe/src/caffe/test/test_protobuf.cpp create mode 100644 caffe/src/caffe/test/test_random_number_generator.cpp create mode 100644 caffe/src/caffe/test/test_reduction_layer.cpp create mode 100644 caffe/src/caffe/test/test_reshape_layer.cpp create mode 100644 caffe/src/caffe/test/test_rnn_layer.cpp create mode 100644 caffe/src/caffe/test/test_scale_layer.cpp create mode 100644 caffe/src/caffe/test/test_sigmoid_cross_entropy_loss_layer.cpp create mode 100644 caffe/src/caffe/test/test_slice_layer.cpp create mode 100644 caffe/src/caffe/test/test_softmax_layer.cpp create mode 100644 caffe/src/caffe/test/test_softmax_with_loss_layer.cpp create mode 100644 caffe/src/caffe/test/test_solver.cpp create mode 100644 caffe/src/caffe/test/test_solver_factory.cpp create mode 100644 caffe/src/caffe/test/test_split_layer.cpp create mode 100644 caffe/src/caffe/test/test_spp_layer.cpp create mode 100644 caffe/src/caffe/test/test_stochastic_pooling.cpp create mode 100644 caffe/src/caffe/test/test_syncedmem.cpp create mode 100644 caffe/src/caffe/test/test_tanh_layer.cpp create mode 100644 caffe/src/caffe/test/test_threshold_layer.cpp create mode 100644 caffe/src/caffe/test/test_tile_layer.cpp create mode 100644 caffe/src/caffe/test/test_upgrade_proto.cpp create mode 100644 caffe/src/caffe/test/test_util_blas.cpp create mode 100644 caffe/src/caffe/util/benchmark.cpp create mode 100644 caffe/src/caffe/util/blocking_queue.cpp create mode 100644 caffe/src/caffe/util/cudnn.cpp create mode 100644 caffe/src/caffe/util/db.cpp create mode 100644 caffe/src/caffe/util/db_leveldb.cpp create mode 100644 caffe/src/caffe/util/db_lmdb.cpp create mode 100644 caffe/src/caffe/util/hdf5.cpp create mode 100644 caffe/src/caffe/util/im2col.cpp create mode 100644 caffe/src/caffe/util/im2col.cu create mode 100644 caffe/src/caffe/util/insert_splits.cpp create mode 100644 caffe/src/caffe/util/io.cpp create mode 100644 caffe/src/caffe/util/math_functions.cpp create mode 100644 caffe/src/caffe/util/math_functions.cu create mode 100644 caffe/src/caffe/util/signal_handler.cpp create mode 100644 caffe/src/caffe/util/upgrade_proto.cpp create mode 100644 caffe/src/gtest/CMakeLists.txt create mode 100644 caffe/src/gtest/gtest-all.cpp create mode 100644 caffe/src/gtest/gtest.h create mode 100644 caffe/src/gtest/gtest_main.cc create mode 100644 caffe/tools/CMakeLists.txt create mode 100644 caffe/tools/caffe.cpp create mode 100644 caffe/tools/compute_image_mean.cpp create mode 100644 caffe/tools/convert_imageset.cpp create mode 100644 caffe/tools/device_query.cpp create mode 100755 caffe/tools/extra/extract_seconds.py create mode 100755 caffe/tools/extra/launch_resize_and_crop_images.sh create mode 100755 caffe/tools/extra/parse_log.py create mode 100755 caffe/tools/extra/parse_log.sh create mode 100644 caffe/tools/extra/plot_log.gnuplot.example create mode 100755 caffe/tools/extra/plot_training_log.py.example create mode 100755 caffe/tools/extra/resize_and_crop_images.py create mode 100755 caffe/tools/extra/summarize.py create mode 100644 caffe/tools/extract_features.cpp create mode 100644 caffe/tools/finetune_net.cpp create mode 100644 caffe/tools/net_speed_benchmark.cpp create mode 100644 caffe/tools/test_net.cpp create mode 100644 caffe/tools/train_net.cpp create mode 100644 caffe/tools/upgrade_net_proto_binary.cpp create mode 100644 caffe/tools/upgrade_net_proto_text.cpp create mode 100644 caffe/tools/upgrade_solver_proto_text.cpp create mode 100755 data/imagenet_models/README.md create mode 100644 evaluation/CUHK03_evaluation.m create mode 100755 evaluation/CUHK03_extract_feature.m create mode 100755 evaluation/KISSME/toolbox/COPYRIGHT create mode 100755 evaluation/KISSME/toolbox/CrossValidatePairs.m create mode 100644 evaluation/KISSME/toolbox/KISSME.m create mode 100755 evaluation/KISSME/toolbox/TrainValidateMarket.m create mode 100755 evaluation/KISSME/toolbox/evalData.m create mode 100755 evaluation/KISSME/toolbox/helper/PairMetricLearning.m create mode 100755 evaluation/KISSME/toolbox/helper/SOPD.cpp create mode 100755 evaluation/KISSME/toolbox/helper/SOPD.mexa64 create mode 100755 evaluation/KISSME/toolbox/helper/ToyCarPairsToLabels.m create mode 100755 evaluation/KISSME/toolbox/helper/calcMCMC.m create mode 100755 evaluation/KISSME/toolbox/helper/calcmAP.m create mode 100755 evaluation/KISSME/toolbox/helper/cdistM.m create mode 100755 evaluation/KISSME/toolbox/helper/col_sum.m create mode 100755 evaluation/KISSME/toolbox/helper/exportAndCropFigure.m create mode 100755 evaluation/KISSME/toolbox/helper/icg_plotroc.m create mode 100755 evaluation/KISSME/toolbox/helper/icg_roc.m create mode 100755 evaluation/KISSME/toolbox/helper/pairsToLabels.m create mode 100755 evaluation/KISSME/toolbox/helper/sqdist.m create mode 100755 evaluation/KISSME/toolbox/helper/validateCovMatrix.m create mode 100755 evaluation/KISSME/toolbox/init.m create mode 100755 evaluation/KISSME/toolbox/install3dpartylibs.m create mode 100755 evaluation/KISSME/toolbox/learnAlgos/LearnAlgo.m create mode 100755 evaluation/KISSME/toolbox/learnAlgos/LearnAlgoITML.m create mode 100755 evaluation/KISSME/toolbox/learnAlgos/LearnAlgoKISSME.m create mode 100755 evaluation/KISSME/toolbox/learnAlgos/LearnAlgoLDML.m create mode 100755 evaluation/KISSME/toolbox/learnAlgos/LearnAlgoLMNN.m create mode 100755 evaluation/KISSME/toolbox/learnAlgos/LearnAlgoMLEuclidean.m create mode 100755 evaluation/KISSME/toolbox/learnAlgos/LearnAlgoMahal.m create mode 100755 evaluation/KISSME/toolbox/learnAlgos/LearnAlgoSVM.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.DS_Store create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/all-wcprops create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/dir-prop-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/entries create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/format create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/applypca.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/demo.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/energyclassify.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/install.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/knnclassify.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/lmnn.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/pca.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/runlmnn.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/setpaths.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/text-base/applypca.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/text-base/demo.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/text-base/energyclassify.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/text-base/install.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/text-base/knnclassify.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/text-base/lmnn.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/text-base/pca.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/text-base/runlmnn.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/.svn/text-base/setpaths.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/applypca.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/data/.svn/all-wcprops create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/data/.svn/dir-prop-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/data/.svn/entries create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/data/.svn/format create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/data/.svn/prop-base/bal2.mat.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/data/.svn/prop-base/iris2.mat.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/data/.svn/text-base/bal2.mat.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/data/.svn/text-base/iris2.mat.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/data/bal2.mat create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/data/iris2.mat create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/demo.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/energyclassify.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/all-wcprops create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/dir-prop-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/entries create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/format create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/prop-base/extractpars.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/prop-base/mat.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/prop-base/mexall.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/prop-base/vec.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/text-base/extractpars.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/text-base/mat.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/text-base/mexall.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/text-base/vec.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/distance.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/extractpars.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/mat.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/mexall.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/mexallwindows.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/vec.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/install.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/installWINDOWS.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/knnclassify.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/lmnn.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/all-wcprops create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/dir-prop-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/entries create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/format create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/SOD.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/SOD.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/SODW.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/SODW.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/addchv.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/addh.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/addv.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/cdist.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/cdist.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/count.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/count.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/distance.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/distance.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/findimps3Dac.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/findimps3Dac.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/findlessh.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/findlessh.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/mink.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/mink.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/mulh.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/mulh.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/mulv.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/sd.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/sd.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/sumiflessh2.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/sumiflessv2.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/SOD.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/SOD.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/SODW.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/SODW.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/addchv.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/addh.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/addv.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/cdist.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/cdist.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/count.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/count.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/distance.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/distance.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/findimps3Dac.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/findimps3Dac.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/findlessh.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/findlessh.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/mink.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/mink.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/mulh.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/mulh.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/mulv.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/sd.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/sd.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/sumiflessh2.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/text-base/sumiflessv2.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SOD.c create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SOD.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SOD.mexmaci create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SOD.mexmaci64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SOD.mexw64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SODW.c create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SODW.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SODW.mexmaci create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SODW.mexmaci64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SODW.mexw64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addchv.c create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addchv.mexmaci create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addchv.mexmaci64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addchv.mexw64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addh.c create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addh.mexmaci create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addh.mexmaci64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addh.mexw64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addv.c create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addv.mexmaci create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addv.mexmaci64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addv.mexw64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/cdist.c create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/cdist.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/cdist.mexmaci create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/cdist.mexmaci64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/cdist.mexw64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/count.c create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/count.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/count.mexmaci create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/count.mexmaci64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/count.mexw64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findimps3Dac.c create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findimps3Dac.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findimps3Dac.mexmaci create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findimps3Dac.mexmaci64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findimps3Dac.mexw64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findlessh.c create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findlessh.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findlessh.mexmaci create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findlessh.mexmaci64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findlessh.mexw64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mink.c create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mink.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mink.mexmaci create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mink.mexmaci64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mink.mexw64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mulh.c create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mulh.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mulh.mexmaci create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mulh.mexmaci64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mulh.mexw64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mulv.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sd.c create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sd.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sd.mexmaci create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sd.mexmaci64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sd.mexw64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessh2.c create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessh2.mexmaci create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessh2.mexmaci64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessh2.mexw64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessv2.c create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessv2.mexmaci create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessv2.mexmaci64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessv2.mexw64 create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/pca.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/runlmnn.m create mode 100755 evaluation/KISSME/toolbox/lib/LMNN/setpaths.m create mode 100755 evaluation/KISSME/toolbox/lib/MildML_0.1/README create mode 100755 evaluation/KISSME/toolbox/lib/MildML_0.1/compute_tasks.c create mode 100755 evaluation/KISSME/toolbox/lib/MildML_0.1/hist_count.m create mode 100755 evaluation/KISSME/toolbox/lib/MildML_0.1/ldml_learn.m create mode 100755 evaluation/KISSME/toolbox/lib/MildML_0.1/mexall.m create mode 100755 evaluation/KISSME/toolbox/lib/MildML_0.1/mildml_evalg_sparse.c create mode 100755 evaluation/KISSME/toolbox/lib/MildML_0.1/mildml_evalg_sparse.mexa64 create mode 100755 evaluation/KISSME/toolbox/lib/MildML_0.1/mildml_fg.m create mode 100755 evaluation/KISSME/toolbox/lib/MildML_0.1/mildml_learn.m create mode 100755 evaluation/KISSME/toolbox/lib/MildML_0.1/minimize.m create mode 100755 evaluation/KISSME/toolbox/lib/MildML_0.1/vec.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._.DS_Store create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._.svn create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._applypca.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._data create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._demo.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._energyclassify.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._install.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._installWINDOWS.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._knnclassify.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._lmnn.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._pca.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._runlmnn.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._setpaths.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._all-wcprops create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._dir-prop-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._entries create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._format create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._prop-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._props create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._text-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._tmp create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._applypca.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._demo.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._energyclassify.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._install.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._knnclassify.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._lmnn.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._pca.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._runlmnn.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._setpaths.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._applypca.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._demo.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._energyclassify.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._install.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._knnclassify.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._lmnn.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._pca.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._runlmnn.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._setpaths.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/tmp/._prop-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/tmp/._props create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/tmp/._text-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/._.svn create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/._bal2.mat create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/._iris2.mat create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._all-wcprops create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._dir-prop-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._entries create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._format create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._prop-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._props create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._text-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._tmp create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/prop-base/._bal2.mat.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/prop-base/._iris2.mat.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/text-base/._bal2.mat.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/text-base/._iris2.mat.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/tmp/._prop-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/tmp/._props create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/tmp/._text-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._.svn create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._extractpars.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._mat.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._mexall.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._mexallwindows.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._vec.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._all-wcprops create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._dir-prop-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._entries create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._format create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._prop-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._props create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._text-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._tmp create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/prop-base/._extractpars.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/prop-base/._mat.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/prop-base/._mexall.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/prop-base/._vec.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/text-base/._extractpars.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/text-base/._mat.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/text-base/._mexall.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/text-base/._vec.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/tmp/._prop-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/tmp/._props create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/tmp/._text-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._.svn create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SOD.c create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SOD.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SODW.c create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SODW.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._addchv.c create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._addh.c create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._addv.c create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._cdist.c create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._cdist.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._count.c create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._count.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findimps3Dac.c create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findimps3Dac.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findlessh.c create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findlessh.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mink.c create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mink.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mulh.c create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mulh.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mulv.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sd.c create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sd.m create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sumiflessh2.c create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sumiflessv2.c create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._all-wcprops create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._dir-prop-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._entries create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._format create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._prop-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._props create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._text-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._tmp create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SOD.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SOD.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SODW.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SODW.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._addchv.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._addh.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._addv.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._cdist.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._cdist.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._count.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._count.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._distance.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._distance.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._findimps3Dac.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._findimps3Dac.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._findlessh.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._findlessh.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mink.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mink.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mulh.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mulh.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mulv.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sd.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sd.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sumiflessh2.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sumiflessv2.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SOD.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SOD.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SODW.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SODW.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._addchv.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._addh.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._addv.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._cdist.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._cdist.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._count.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._count.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._distance.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._distance.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._findimps3Dac.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._findimps3Dac.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._findlessh.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._findlessh.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mink.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mink.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mulh.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mulh.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mulv.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sd.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sd.m.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sumiflessh2.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sumiflessv2.c.svn-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/tmp/._prop-base create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/tmp/._props create mode 100755 evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/tmp/._text-base create mode 100755 evaluation/KISSME/toolbox/lib/itml/ComputeDistanceExtremes.m create mode 100755 evaluation/KISSME/toolbox/lib/itml/CrossValidateKNN.m create mode 100755 evaluation/KISSME/toolbox/lib/itml/EuclideanDistance.m create mode 100755 evaluation/KISSME/toolbox/lib/itml/GetConstraints.m create mode 100755 evaluation/KISSME/toolbox/lib/itml/ItmlAlg.m create mode 100755 evaluation/KISSME/toolbox/lib/itml/KNN.m create mode 100755 evaluation/KISSME/toolbox/lib/itml/MetricLearning.m create mode 100755 evaluation/KISSME/toolbox/lib/itml/MetricLearningAutotuneKnn.m create mode 100755 evaluation/KISSME/toolbox/lib/itml/README create mode 100755 evaluation/KISSME/toolbox/lib/itml/SetDefaultParams.m create mode 100755 evaluation/KISSME/toolbox/lib/itml/Test.m create mode 100755 evaluation/KISSME/toolbox/lib/itml/data/iris.mtx create mode 100755 evaluation/KISSME/toolbox/lib/itml/data/iris.truth create mode 100755 evaluation/LOMO_XQDA/LICENSE create mode 100755 evaluation/LOMO_XQDA/README.txt create mode 100755 evaluation/LOMO_XQDA/bin/Retinex.mexa64 create mode 100755 evaluation/LOMO_XQDA/bin/Retinex.mexglx create mode 100755 evaluation/LOMO_XQDA/bin/Retinex.mexw32 create mode 100755 evaluation/LOMO_XQDA/bin/Retinex.mexw64 create mode 100755 evaluation/LOMO_XQDA/code/Demo_LOMO.m create mode 100755 evaluation/LOMO_XQDA/code/Demo_XQDA.m create mode 100755 evaluation/LOMO_XQDA/code/EvalCMC.m create mode 100755 evaluation/LOMO_XQDA/code/LOMO.m create mode 100755 evaluation/LOMO_XQDA/code/MahDist.m create mode 100755 evaluation/LOMO_XQDA/code/SILTP.m create mode 100755 evaluation/LOMO_XQDA/code/XQDA.m create mode 100755 evaluation/LOMO_XQDA/images/000_45_a.bmp create mode 100755 evaluation/LOMO_XQDA/images/000_45_b.bmp create mode 100755 evaluation/LOMO_XQDA/results/cuhk01_lomo_xqda.mat create mode 100755 evaluation/LOMO_XQDA/results/cuhk03_detected_lomo_xqda.mat create mode 100755 evaluation/LOMO_XQDA/results/cuhk03_labeled_lomo_xqda.mat create mode 100755 evaluation/LOMO_XQDA/results/qmul_grid_lomo_xqda.mat create mode 100755 evaluation/LOMO_XQDA/results/qmul_grid_lomo_xqda_camera-network.mat create mode 100755 evaluation/LOMO_XQDA/results/viper_lomo_xqda.mat create mode 100644 evaluation/Market_1501_evaluation.m create mode 100755 evaluation/Market_1501_extract_feature.m create mode 100644 evaluation/data/CUHK03/cuhk03_new_protocol_config_detected.mat create mode 100644 evaluation/data/CUHK03/cuhk03_new_protocol_config_labeled.mat create mode 100644 evaluation/data/CUHK03/gen_train_test_split.m create mode 100644 evaluation/data/CUHK03/save_img.m create mode 100644 evaluation/data/CUHK03/save_train_txt.m create mode 100644 evaluation/data/CUHK03/train_cuhk03_detected.txt create mode 100644 evaluation/data/CUHK03/train_cuhk03_labeled.txt create mode 120000 evaluation/data/Market-1501/bounding_box_test create mode 120000 evaluation/data/Market-1501/bounding_box_train create mode 120000 evaluation/data/Market-1501/gt_bbox create mode 120000 evaluation/data/Market-1501/gt_query create mode 120000 evaluation/data/Market-1501/query create mode 100755 evaluation/data/Market-1501/queryCam.mat create mode 100755 evaluation/data/Market-1501/queryID.mat create mode 100755 evaluation/data/Market-1501/testCam.mat create mode 100755 evaluation/data/Market-1501/testID.mat create mode 100644 evaluation/data/Market-1501/train.txt create mode 100755 evaluation/data/Market-1501/train_cam.mat create mode 100755 evaluation/data/Market-1501/train_label.mat create mode 100644 evaluation/data/Market-1501/val.txt create mode 100644 evaluation/utils/applypca2.m create mode 100644 evaluation/utils/compute_AP.m create mode 100644 evaluation/utils/compute_AP_multiCam.m create mode 100644 evaluation/utils/compute_r1_multiCam.m create mode 100644 evaluation/utils/draw_confusion_matrix.m create mode 100644 evaluation/utils/evaluation.m create mode 100644 evaluation/utils/gen_train_sample_kissme.m create mode 100644 evaluation/utils/gen_train_sample_xqda.m create mode 100644 evaluation/utils/info_mars.m create mode 100644 evaluation/utils/prepare_img.m create mode 100644 evaluation/utils/process_box_feat.m create mode 100644 evaluation/utils/process_box_feat_prune.m create mode 100755 experiments/CUHK03/train_IDE_CaffeNet_detected.sh create mode 100755 experiments/CUHK03/train_IDE_CaffeNet_detected~ create mode 100755 experiments/CUHK03/train_IDE_CaffeNet_labeled.sh create mode 100755 experiments/CUHK03/train_IDE_CaffeNet_labeled~ create mode 100755 experiments/CUHK03/train_IDE_ResNet_50_detected.sh create mode 100755 experiments/CUHK03/train_IDE_ResNet_50_labeled.sh create mode 100755 experiments/CUHK03/train_IDE_ResNet_50_ld.sh create mode 100755 experiments/Market-1501/train_IDE_ResNet_50.sh create mode 100644 models/CUHK03/CaffeNet/CaffeNet_detected_solver.prototxt create mode 100644 models/CUHK03/CaffeNet/CaffeNet_detected_train_val.prototxt create mode 100644 models/CUHK03/CaffeNet/CaffeNet_labeled_solver.prototxt create mode 100644 models/CUHK03/CaffeNet/CaffeNet_labeled_train_val.prototxt create mode 100644 models/CUHK03/CaffeNet/CaffeNet_test.prototxt create mode 100755 models/CUHK03/ResNet_50/ResNet_50_IDE_detected_solver.prototxt create mode 100755 models/CUHK03/ResNet_50/ResNet_50_IDE_detected_train_val.prototxt create mode 100755 models/CUHK03/ResNet_50/ResNet_50_IDE_labeled_solver.prototxt create mode 100755 models/CUHK03/ResNet_50/ResNet_50_IDE_labeled_train_val.prototxt create mode 100644 models/CUHK03/ResNet_50/ResNet_50_test.prototxt create mode 100755 models/Market-1501/ResNet_50/ResNet_50_IDE_solver.prototxt create mode 100755 models/Market-1501/ResNet_50/ResNet_50_IDE_train_val.prototxt create mode 100644 models/Market-1501/ResNet_50/ResNet_50_test.prototxt diff --git a/README.md b/README.md index ea3e30d..cc15252 100644 --- a/README.md +++ b/README.md @@ -1 +1,119 @@ -# k-reciprocal-re-ranking \ No newline at end of file +<<<<<<< HEAD +# Re-ranking Person Re-identification with k-reciprocal Encoding +================================================================ + +### This code has the IDE baseline for the Market-1501 and CUHK03 new training/testing protocol. + +### The re-ranking code is available upon request. + +If you find this code useful in your research, please consider citing: + + @article{zhong2017re, + title={Re-ranking Person Re-identification with k-reciprocal Encoding}, + author={Zhong, Zhun and Zheng, Liang and Cao, Donglin and Li, Shaozi}, + booktitle={CVPR}, + year={2017} + } + + +### Requirements: Caffe + +Requirements for `Caffe` and `matcaffe` (see: [Caffe installation instructions](http://caffe.berkeleyvision.org/installation.html)) + +### Installation +1. Build Caffe and matcaffe + ```Shell + cd $Re-ranking_ROOT/caffe + # Now follow the Caffe installation instructions here: + # http://caffe.berkeleyvision.org/installation.html + make -j8 && make matcaffe + ``` + +2. Download pre-computed imagenet models, Market-1501 dataset and CUHK03 dataset + ```Shell + Please download the pre-trained imagenet models and put it in the "data/imagenet_models" folder. + Please download Market-1501 dataset and unzip it in the "evaluation/data/Market-1501" folder. + Please download CUHK03 dataset and unzip it in the "evaluation/data/CUHK03" folder. + ``` + +- [Pre-trained imagenet models](https://pan.baidu.com/s/1o7YZT8Y) + +- [Market-1501](https://pan.baidu.com/s/1ntIi2Op) + +- CUHK03 [[Baiduyun]](https://pan.baidu.com/s/1o8txURK) [[Google drive]](https://drive.google.com/open?id=0B7TOZKXmIjU3OUhfd3BPaVRHZVE) + +### The new training/testing protocol for CUHK03 +The new training/testing protocol split for CUHK03 in our paper is in the "evaluation/data/CUHK03/" folder. +- cuhk03_new_protocol_config_detected.mat +- cuhk03_new_protocol_config_labeled.mat + +### Training and testing IDE model + +1. Training + ```Shell + cd $Re-ranking_ROOT + # train IDE ResNet_50 for Market-1501 + ./experiments/Market-1501/train_IDE_ResNet_50.sh + + # train IDE ResNet_50 for CUHK03 + ./experiments/CUHK03/train_IDE_ResNet_50_labeled.sh + ./experiments/CUHK03/train_IDE_ResNet_50_detected.sh + ``` +2. Feature Extraction + ```Shell + cd $Re-ranking_ROOT/evaluation + # extract feature for Market-1501 + matlab Market_1501_extract_feature.m + + # extract feature for CUHK03 + matlab CUHK03_extract_feature.m + ``` + +3. Evaluation with our re-ranking method + ```Shell + # evaluation for Market-1501 + matlab Market_1501_evaluation.m + + # evaluation for CUHK03 + matlab CUHK03_evaluation.m + ``` + +### Results +You can download our pre-trained IDE models and IDE features, and put them in the "out_put" and "evaluation/feat" folder, respectively. + +- IDE models [[Baiduyun]](https://pan.baidu.com/s/1jHVj2C2) [[Google drive]](https://drive.google.com/open?id=0B7TOZKXmIjU3ZTNsWGt3azcxUUU) + +- IDE features [[Baiduyun]](https://pan.baidu.com/s/1c1TtKcw) [[Google drive]](https://drive.google.com/open?id=0B7TOZKXmIjU3ODhaRm8yN2QzRHc) + +Using the above IDE models and IDE features, you can reproduce the results with our re-ranking method as follows: + +- Market-1501 + +|Methods |   Rank@1 | mAP| +| -------- | ----- | ---- | +|IDE_ResNet_50 + Euclidean | 78.92% | 55.03%| +|IDE_ResNet_50 + XQDA | 77.58% | 56.06%| + +For Market-1501, these results are better than those reported in our paper, since we add a dropout = 0.5 layer after pool5. + +- CUHK03 under the new training/testing protocol + +| | Labeled | Labeled| detected | detected| +| -------| ----- | ---- |---- |---- | +|Methods | Rank@1 | mAP| Rank@1 | mAP| +|IDE_CaffeNet + Euclidean | 15.6% | 14.9%| 15.1% | 14.2%| +|IDE_CaffeNet + XQDA | 21.9% | 20.0%|21.1% | 19.0%| +|IDE_ResNet_50 + Euclidean | 22.2% | 21.0%|21.3% | 19.7%| +|IDE_ResNet_50 + XQDA | 32.0% | 29.6%|31.1% | 28.2%| + +### Contact us + +If you have any questions about this code, please do not hesitate to contact us. + +[Zhun Zhong](http://zhunzhong.site) + +[Liang Zheng](http://liangzheng.com.cn) + +======= +# person-re-ranking +>>>>>>> 8479ff10372e05534e4294c41347581dd73ec201 diff --git a/caffe/.Doxyfile b/caffe/.Doxyfile new file mode 100644 index 0000000..432c9c6 --- /dev/null +++ b/caffe/.Doxyfile @@ -0,0 +1,2335 @@ +# Doxyfile 1.8.8 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv +# for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "Caffe" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify an logo or icon that is included in +# the documentation. The maximum height of the logo should not exceed 55 pixels +# and the maximum width should not exceed 200 pixels. Doxygen will copy the logo +# to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = ./doxygen/ + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a +# new page for each member. If set to NO, the documentation of a member will be +# part of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by by putting a % sign in front of the word +# or globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO these classes will be included in the various overviews. This option has +# no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the +# todo list. This list is created by putting \todo commands in the +# documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the +# test list. This list is created by putting \test commands in the +# documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES the list +# will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = YES + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = NO + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO doxygen will only warn about wrong or incomplete parameter +# documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. +# Note: If this tag is empty the current directory is searched. + +INPUT = ./include/caffe \ + ./src/caffe + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank the +# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, +# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, +# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, +# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, +# *.qsf, *.as and *.js. + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = ./src/caffe/test/ \ + ./include/caffe/test/ + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER ) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES, then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see http://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefor more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra stylesheet files is of importance (e.g. the last +# stylesheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the stylesheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to NO can help when comparing the output of multiple runs. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: http://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler ( hhc.exe). If non-empty +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated ( +# YES) or that it should be included in the master .chm file ( NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated ( +# YES) or a normal table of contents ( NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# http://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using prerendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from http://www.mathjax.org before deployment. +# The default value is: http://cdn.mathjax.org/mathjax/latest. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://www.mathjax.org/mathjax + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /