Standardize copyright, add root-level CONTRIBUTORS credit
authorEvan Shelhamer <shelhamer@imaginarynumber.net>
Mon, 24 Mar 2014 18:22:56 +0000 (11:22 -0700)
committerEvan Shelhamer <shelhamer@imaginarynumber.net>
Thu, 27 Mar 2014 18:20:35 +0000 (11:20 -0700)
118 files changed:
CONTRIBUTORS.md [new file with mode: 0644]
examples/cifar10/convert_cifar_data.cpp
examples/lenet/convert_mnist_data.cpp
include/caffe/blob.hpp
include/caffe/caffe.hpp
include/caffe/filler.hpp
include/caffe/layer.hpp
include/caffe/net.hpp
include/caffe/solver.hpp
include/caffe/syncedmem.hpp
include/caffe/util/benchmark.hpp
include/caffe/util/im2col.hpp
include/caffe/util/insert_splits.hpp
include/caffe/util/io.hpp
include/caffe/util/math_functions.hpp
include/caffe/util/mkl_alternate.hpp
include/caffe/vision_layers.hpp
matlab/caffe/matcaffe.cpp
python/caffe/_caffe.cpp
src/caffe/blob.cpp
src/caffe/layer_factory.cpp
src/caffe/layers/bnll_layer.cpp
src/caffe/layers/bnll_layer.cu
src/caffe/layers/concat_layer.cpp
src/caffe/layers/concat_layer.cu
src/caffe/layers/conv_layer.cpp
src/caffe/layers/conv_layer.cu
src/caffe/layers/data_layer.cpp
src/caffe/layers/data_layer.cu
src/caffe/layers/dropout_layer.cpp
src/caffe/layers/dropout_layer.cu
src/caffe/layers/flatten_layer.cpp
src/caffe/layers/flatten_layer.cu
src/caffe/layers/hdf5_data_layer.cpp
src/caffe/layers/hdf5_data_layer.cu
src/caffe/layers/hdf5_output_layer.cpp
src/caffe/layers/hdf5_output_layer.cu
src/caffe/layers/im2col_layer.cpp
src/caffe/layers/im2col_layer.cu
src/caffe/layers/images_layer.cpp
src/caffe/layers/images_layer.cu
src/caffe/layers/inner_product_layer.cpp
src/caffe/layers/inner_product_layer.cu
src/caffe/layers/loss_layer.cpp
src/caffe/layers/lrn_layer.cpp
src/caffe/layers/lrn_layer.cu
src/caffe/layers/neuron_layer.cpp
src/caffe/layers/padding_layer.cpp
src/caffe/layers/padding_layer.cu
src/caffe/layers/pooling_layer.cpp
src/caffe/layers/pooling_layer.cu
src/caffe/layers/relu_layer.cpp
src/caffe/layers/relu_layer.cu
src/caffe/layers/sigmoid_layer.cpp
src/caffe/layers/sigmoid_layer.cu
src/caffe/layers/softmax_layer.cpp
src/caffe/layers/softmax_layer.cu
src/caffe/layers/softmax_loss_layer.cpp
src/caffe/layers/softmax_loss_layer.cu
src/caffe/layers/split_layer.cpp
src/caffe/layers/split_layer.cu
src/caffe/layers/tanh_layer.cpp
src/caffe/layers/tanh_layer.cu
src/caffe/layers/window_data_layer.cpp
src/caffe/layers/window_data_layer.cu
src/caffe/net.cpp
src/caffe/proto/caffe.proto
src/caffe/solver.cpp
src/caffe/syncedmem.cpp
src/caffe/test/test_benchmark.cpp
src/caffe/test/test_blob.cpp
src/caffe/test/test_caffe_main.cpp
src/caffe/test/test_caffe_main.hpp
src/caffe/test/test_common.cpp
src/caffe/test/test_concat_layer.cpp
src/caffe/test/test_convolution_layer.cpp
src/caffe/test/test_data_layer.cpp
src/caffe/test/test_euclidean_loss_layer.cpp
src/caffe/test/test_filler.cpp
src/caffe/test/test_flatten_layer.cpp
src/caffe/test/test_gradient_check_util.hpp
src/caffe/test/test_hdf5_output_layer.cpp
src/caffe/test/test_hdf5data_layer.cpp
src/caffe/test/test_im2col_layer.cpp
src/caffe/test/test_images_layer.cpp
src/caffe/test/test_innerproduct_layer.cpp
src/caffe/test/test_lrn_layer.cpp
src/caffe/test/test_math_functions.cpp
src/caffe/test/test_multinomial_logistic_loss_layer.cpp
src/caffe/test/test_net.cpp
src/caffe/test/test_neuron_layer.cpp
src/caffe/test/test_padding_layer.cpp
src/caffe/test/test_platform.cpp
src/caffe/test/test_pooling_layer.cpp
src/caffe/test/test_protobuf.cpp
src/caffe/test/test_softmax_layer.cpp
src/caffe/test/test_softmax_with_loss_layer.cpp
src/caffe/test/test_split_layer.cpp
src/caffe/test/test_stochastic_pooling.cpp
src/caffe/test/test_syncedmem.cpp
src/caffe/test/test_tanh_layer.cpp
src/caffe/test/test_util_blas.cpp
src/caffe/util/benchmark.cpp
src/caffe/util/im2col.cpp
src/caffe/util/im2col.cu
src/caffe/util/insert_splits.cpp
src/caffe/util/io.cpp
src/caffe/util/math_functions.cu
tools/compute_image_mean.cpp
tools/convert_imageset.cpp
tools/device_query.cpp
tools/dump_network.cpp
tools/extra/extract_seconds.py
tools/extract_features.cpp
tools/finetune_net.cpp
tools/net_speed_benchmark.cpp
tools/test_net.cpp
tools/train_net.cpp

diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
new file mode 100644 (file)
index 0000000..2de2a71
--- /dev/null
@@ -0,0 +1,17 @@
+# Contributors
+
+Caffe is developed by a core set of BVLC members and the open-source community.
+
+We thank all of our [contributors](https://github.com/BVLC/caffe/graphs/contributors)!
+
+**For the detailed history of contributions** of a given file, try
+
+    git blame file
+
+to see line-by-line credits and
+
+    git log --follow file
+
+to see the change log even across renames and rewrites.
+
+Please refer to the [acknowledgements](http://caffe.berkeleyvision.org/#acknowledgements) on the Caffe site for further details.
index 648dd37..8e223b2 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright Yangqing Jia 2013
+// Copyright 2014 BVLC and contributors.
 //
 // This script converts the CIFAR dataset to the leveldb format used
 // by caffe to perform classification.
index 1bf1d66..593a2d2 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright Yangqing Jia 2013
+// Copyright 2014 BVLC and contributors.
 //
 // This script converts the MNIST dataset to the leveldb format used
 // by caffe to perform classification.
index 75cc3c6..e7de81b 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #ifndef CAFFE_BLOB_HPP_
 #define CAFFE_BLOB_HPP_
index 6557dfd..ada0695 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright Yangqing Jia 2013
+// Copyright 2014 BVLC and contributors.
 // caffe.hpp is the header file that you need to include in your code. It wraps
 // all the internal caffe header files into one for simpler inclusion.
 
index 7c10022..ba473e1 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 // Fillers are random number generators that fills a blob using the specified
 // algorithm. The expectation is that they are only going to be used during
index c3a88d5..34639ed 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #ifndef CAFFE_LAYER_H_
 #define CAFFE_LAYER_H_
index 81fe25d..b97c1cc 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #ifndef CAFFE_NET_HPP_
 #define CAFFE_NET_HPP_
index a5dafe6..7d1523c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright Yangqing Jia 2013
+// Copyright 2014 BVLC and contributors.
 
 #ifndef CAFFE_OPTIMIZATION_SOLVER_HPP_
 #define CAFFE_OPTIMIZATION_SOLVER_HPP_
index 97688cb..e265c45 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #ifndef CAFFE_SYNCEDMEM_HPP_
 #define CAFFE_SYNCEDMEM_HPP_
index fd6719a..1d26314 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 kloud@github
+// Copyright 2014 BVLC and contributors.
 
 #ifndef CAFFE_UTIL_BENCHMARK_H_
 #define CAFFE_UTIL_BENCHMARK_H_
index 17da49c..a649d8c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #ifndef _CAFFE_UTIL_IM2COL_HPP_
 #define _CAFFE_UTIL_IM2COL_HPP_
index 37972b3..af824e6 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 Jeff Donahue
+// Copyright 2014 BVLC and contributors.
 
 #ifndef _CAFFE_UTIL_INSERT_SPLITS_HPP_
 #define _CAFFE_UTIL_INSERT_SPLITS_HPP_
index e540572..89f9c18 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright Yangqing Jia 2013
+// Copyright 2014 BVLC and contributors.
 
 #ifndef CAFFE_UTIL_IO_H_
 #define CAFFE_UTIL_IO_H_
index 81097ef..ce62003 100644 (file)
@@ -1,5 +1,4 @@
-// Copyright 2013 Yangqing Jia
-// Copyright 2014 kloudkl@github
+// Copyright 2014 BVLC and contributors.
 
 #ifndef CAFFE_UTIL_MATH_FUNCTIONS_H_
 #define CAFFE_UTIL_MATH_FUNCTIONS_H_
index 39038dd..c30eab8 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Rowland Depp
+// Copyright 2014 BVLC and contributors.
 
 #ifndef CAFFE_UTIL_MKL_ALTERNATE_H_
 #define CAFFE_UTIL_MKL_ALTERNATE_H_
index a511f92..a8305ab 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #ifndef CAFFE_VISION_LAYERS_HPP_
 #define CAFFE_VISION_LAYERS_HPP_
index 1913abd..7dca641 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright Ross Girshick and Yangqing Jia 2013
+// Copyright 2014 BVLC and contributors.
 //
 // matcaffe.cpp provides a wrapper of the caffe::Net class as well as some
 // caffe::Caffe functions so that one could easily call it from matlab.
index 137cc28..1dbbbc0 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright Yangqing Jia 2013
+// Copyright 2014 BVLC and contributors.
 // pycaffe provides a wrapper of the caffe::Net class as well as some
 // caffe::Caffe functions so that one could easily call it from Python.
 // Note that for python, we will simply use float as the data type.
index 6838036..5356d05 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cuda_runtime.h>
 #include <cublas_v2.h>
index 32a5f7f..90785af 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #ifndef CAFFE_LAYER_FACTORY_HPP_
 #define CAFFE_LAYER_FACTORY_HPP_
index e7a4fba..d08adc4 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <algorithm>
 #include <vector>
index 7252c02..75bea00 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <algorithm>
 #include <vector>
index e654510..2ce863b 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 Sergio Guadarrama
+// Copyright 2014 BVLC and contributors.
 
 #include <vector>
 
index 8a20cea..9270f1c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 Sergio Guadarrama
+// Copyright 2014 BVLC and contributors.
 
 #include <vector>
 
index cb1bca6..c3caceb 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <vector>
 
index f8f6055..da76b4d 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <vector>
 
index f2ff7ff..1ab28c6 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <stdint.h>
 #include <leveldb/db.h>
index 57a375e..86f4757 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <stdint.h>
 #include <leveldb/db.h>
index f07547a..78acf3a 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <vector>
 
index dc1f3cf..6d995d1 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <algorithm>
 #include <limits>
index d8d5c4b..78e4d0c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <vector>
 
index fa1e6aa..c1f5e48 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <vector>
 
index 3f87dbc..03baf5f 100644 (file)
@@ -1,9 +1,5 @@
-// Copyright 2014 BVLC.
+// Copyright 2014 BVLC and contributors.
 /*
-Contributors:
-- Sergey Karayev, 2014.
-- Tobias Domhan, 2014.
-
 TODO:
 - load file in a separate thread ("prefetch")
 - can be smarter about the memcpy call instead of doing it row-by-row
index 261d404..2f743ef 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright Sergey Karayev 2014
+// Copyright 2014 BVLC and contributors.
 /*
 TODO:
 - only load parts of the file, in accordance with a prototxt param "max_mem"
index f8433c1..e491697 100644 (file)
@@ -1,8 +1,4 @@
 // Copyright 2014 BVLC and contributors.
-/*
-Contributors:
-- kloudkl@github, 2014.
-*/
 
 #include <vector>
 
index b5d1088..b994825 100644 (file)
@@ -1,8 +1,4 @@
 // Copyright 2014 BVLC and contributors.
-/*
-Contributors:
-- kloudkl@github, 2014.
-*/
 
 #include <vector>
 
index a01bfb7..fc9f52e 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <vector>
 
index 64731cc..4074d9e 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <vector>
 
index 396ed3d..5154f9a 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <stdint.h>
 #include <leveldb/db.h>
index 187be33..9a73daa 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cuda_runtime.h>
 #include <stdint.h>
index 6ea228f..9b2c7ef 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <vector>
 
index 37463b5..ac0e0be 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cublas_v2.h>
 
index ef0074d..e232008 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <algorithm>
 #include <cmath>
index 698deba..c43aaf4 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <vector>
 
index 1dcd0c0..b8cd99a 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <vector>
 
index 5def755..e9dbd0e 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <vector>
 
index 658cc6a..6b22638 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <iostream>  // NOLINT(readability/streams)
 #include <vector>
index d476df5..8023fef 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <iostream>  // NOLINT(readability/streams)
 #include <vector>
index 3fd421c..355ea29 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <algorithm>
 #include <cfloat>
index 63b4d0d..e8dc2a2 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <algorithm>
 #include <cfloat>
index 18c675c..7a33e55 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <algorithm>
 #include <vector>
index 27f5da5..51e5ef2 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <algorithm>
 #include <vector>
index 4489795..601ba47 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 Tobias Domhan
+// Copyright 2014 BVLC and contributors.
 
 #include <algorithm>
 #include <cmath>
index 3dbdc39..d10b4d9 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 Tobias Domhan
+// Copyright 2014 BVLC and contributors.
 
 #include <algorithm>
 #include <cmath>
index 0d2e457..e998360 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 //
 #include <algorithm>
 #include <vector>
index 5efa490..a264a81 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <algorithm>
 #include <cfloat>
index f9bd82e..fecd7a5 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <algorithm>
 #include <cfloat>
index ab7ee6e..24a3c38 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <algorithm>
 #include <cfloat>
index a8a240f..5ca95f3 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 Jeff Donahue
+// Copyright 2014 BVLC and contributors.
 
 #include <vector>
 
index deccf99..5b2814b 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 Jeff Donahue
+// Copyright 2014 BVLC and contributors.
 
 #include <vector>
 
index c265792..46d11d0 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 Aravindh Mahendran
+// Copyright 2014 BVLC and contributors.
 // TanH neuron activation function layer.
 // Adapted from ReLU layer code written by Yangqing Jia
 
index 899b841..13bb001 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 Aravindh Mahendran
+// Copyright 2014 BVLC and contributors.
 // TanH neuron activation function layer.
 // Adapted from ReLU layer code written by Yangqing Jia
 
index d447cba..bf62bcb 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Ross Girshick
+// Copyright 2014 BVLC and contributors.
 //
 // Based on data_layer.cpp by Yangqing Jia.
 
index ae477c0..d46b5e0 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Ross Girshick
+// Copyright 2014 BVLC and contributors.
 //
 // Based on data_layer.cpp by Yangqing Jia.
 
index 3018285..1ba0e83 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright Yangqing Jia 2013
+// Copyright 2014 BVLC and contributors.
 
 #include <map>
 #include <set>
index 362764a..77d6d57 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 package caffe;
 
@@ -125,7 +125,7 @@ message LayerParameter {
   // the other dimensions must be the same for all the bottom blobs.
   // By default it will concatenate blobs along the channels dimension.
   optional uint32 concat_dim = 65 [default = 1];
-  
+
   optional HDF5OutputParameter hdf5_output_param = 1001;
 }
 
index fb46c4e..5fa150c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright Yangqing Jia 2013
+// Copyright 2014 BVLC and contributors.
 
 #include <cstdio>
 
index 8f6ecf6..c33f3e6 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cuda_runtime.h>
 
index 8614f48..40eee9c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 kloud@github
+// Copyright 2014 BVLC and contributors.
 
 #include <unistd.h>  // for usleep
 #include <cuda_runtime.h>
index 7ce1a38..5d38e54 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cstring>
 
index 4674bb4..ecc117e 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 // The main caffe test code. Your test cpp code should include this hpp
 // to allow a main function to be compiled into the binary.
index 68374ae..df64cbb 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 // The main caffe test code. Your test cpp code should include this hpp
 // to allow a main function to be compiled into the binary.
index 12e7168..7839c37 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cstring>
 
index 3515ef9..8ce7ce1 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 Sergio Guadarrama
+// Copyright 2014 BVLC and contributors.
 
 #include <cstring>
 #include <vector>
index e1a3618..db23680 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cstring>
 #include <vector>
index 35c3439..032b0eb 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <string>
 #include <vector>
index d408860..d5e4107 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cmath>
 #include <cstdlib>
index c4388c2..e8b556a 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cstring>
 
index f241135..139488b 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cstring>
 #include <vector>
index 6e89524..6ef76e2 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #ifndef CAFFE_TEST_GRADIENT_CHECK_UTIL_H_
 #define CAFFE_TEST_GRADIENT_CHECK_UTIL_H_
index 3cbfb3f..09a4085 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 kloudkl@github
+// Copyright 2014 BVLC and contributors.
 
 #include <cuda_runtime.h>
 #include <string>
index 51ef544..b03fe72 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <string>
 #include <vector>
index ac2f8fe..31a0115 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cstring>
 #include <vector>
index 594a654..e8ed7c1 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 Sergio Guadarrama
+// Copyright 2014 BVLC and contributors.
 
 #include <cuda_runtime.h>
 
index eac33b9..5b18317 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cstring>
 #include <vector>
index cbdb7d1..a96684d 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <algorithm>
 #include <cstring>
index ca059a9..354dad4 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 kloudkl@github
+// Copyright 2014 BVLC and contributors.
 
 #include <stdint.h>  // for uint32_t & uint64_t
 #include <time.h>
index 5a61df7..6fc01e3 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cmath>
 #include <cstdlib>
index fd7265c..77b3516 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 kloudkl@github
+// Copyright 2014 BVLC and contributors.
 
 #include <google/protobuf/text_format.h>
 #include <leveldb/db.h>
index b236702..105f321 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cstring>
 #include <vector>
index ad1f6bf..c775f3b 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cuda_runtime.h>
 #include <cstring>
index bd2dcd3..c3868f3 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cstdlib>
 #include <cstdio>
index ae2e51e..11b9ce2 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cstring>
 #include <vector>
index d8d511d..0618d8c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 // This is simply a script that tries serializing protocol buffer in text
 // format. Nothing special here and no actual code is being tested.
index 1d4260a..3ba302d 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cmath>
 #include <cstring>
index 77668e5..2a15b84 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cmath>
 #include <cstdlib>
index afec9c9..2c7c986 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 Jeff Donahue
+// Copyright 2014 BVLC and contributors.
 
 #include <cstring>
 #include <string>
index aedd6f3..daf2c36 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <algorithm>
 #include <cstring>
index 161ca45..cd74758 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cstring>
 #include <vector>
index 6248e50..82cb96c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 Aravindh Mahendran
+// Copyright 2014 BVLC and contributors.
 // Adapted from other test files
 
 #include <cmath>
index 57f4eaf..2e4c679 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cstring>
 
index 21c38ad..0bd8521 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 kloud@github
+// Copyright 2014 BVLC and contributors.
 
 #include <boost/date_time/posix_time/posix_time.hpp>
 #include <cuda_runtime.h>
index 4ed3af8..037410e 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cmath>
 #include <cstdlib>
index 8776e8e..28325fd 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <algorithm>
 #include <cmath>
index d208bcd..f72f20c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 Jeff Donahue
+// Copyright 2014 BVLC and contributors.
 
 #include <map>
 #include <string>
index 053d7a4..fdad21d 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <stdint.h>
 #include <fcntl.h>
index 85753aa..82524cb 100644 (file)
@@ -1,5 +1,4 @@
-// Copyright 2013 Yangqing Jia
-// Copyright 2014 kloudkl@github
+// Copyright 2014 BVLC and contributors.
 
 #include <math_functions.h>  // CUDA's, not caffe's, for fabs, signbit
 #include <cmath>
index cb494f2..b803ab2 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <glog/logging.h>
 #include <leveldb/db.h>
index 50b53e6..4e196d7 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 // This program converts a set of images to a leveldb by storing them as Datum
 // proto buffers.
 // Usage:
index 920e81b..6b120ba 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 Sergio Guadarrama
+// Copyright 2014 BVLC and contributors.
 
 
 #include "caffe/common.hpp"
index 21d0256..f5c3682 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 //
 // This program takes in a trained network and an input blob, and then dumps
 // all the intermediate blobs produced by the net to individual binary
index ea68e15..f791afa 100755 (executable)
@@ -40,4 +40,4 @@ if __name__ == '__main__':
     if len(sys.argv) < 3:
         print('Usage: ./extract_seconds input_file output_file')
         exit(1)
-    extract_seconds(sys.argv[1], sys.argv[2])
\ No newline at end of file
+    extract_seconds(sys.argv[1], sys.argv[2])
index e547db5..4274db4 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 kloudkl@github
+// Copyright 2014 BVLC and contributors.
 
 #include <stdio.h>  // for snprintf
 #include <cuda_runtime.h>
index 2aad738..8d25954 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 //
 // This is a simple script that allows one to quickly finetune a network.
 // Usage:
index 43f7b49..db95cc1 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 
 #include <cuda_runtime.h>
 #include <fcntl.h>
index c4c992a..6392231 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 //
 // This is a simple script that allows one to quickly test a network whose
 // structure is specified by text format protocol buffers, and whose parameter
index 3bd4f87..f951642 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
 //
 // This is a simple script that allows one to quickly train a network whose
 // parameters are specified by text format protocol buffers.