summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorEvan Shelhamer <shelhamer@imaginarynumber.net>2014-03-24 11:22:56 -0700
committerEvan Shelhamer <shelhamer@imaginarynumber.net>2014-03-27 11:20:35 -0700
commit6db92e838b4b5bfc1be95f1a1b182a7a57cc5cef (patch)
treef21e92af20ea8850cacde8c92b235bcefe9c1654 /tools
parent923a847b21e4a06192a99bfbb406a2436b5ca504 (diff)
downloadcaffeonacl-6db92e838b4b5bfc1be95f1a1b182a7a57cc5cef.tar.gz
caffeonacl-6db92e838b4b5bfc1be95f1a1b182a7a57cc5cef.tar.bz2
caffeonacl-6db92e838b4b5bfc1be95f1a1b182a7a57cc5cef.zip
Standardize copyright, add root-level CONTRIBUTORS credit
Diffstat (limited to 'tools')
-rw-r--r--tools/compute_image_mean.cpp2
-rw-r--r--tools/convert_imageset.cpp2
-rw-r--r--tools/device_query.cpp2
-rw-r--r--tools/dump_network.cpp2
-rwxr-xr-xtools/extra/extract_seconds.py2
-rw-r--r--tools/extract_features.cpp2
-rw-r--r--tools/finetune_net.cpp2
-rw-r--r--tools/net_speed_benchmark.cpp2
-rw-r--r--tools/test_net.cpp2
-rw-r--r--tools/train_net.cpp2
10 files changed, 10 insertions, 10 deletions
diff --git a/tools/compute_image_mean.cpp b/tools/compute_image_mean.cpp
index cb494f25..b803ab2f 100644
--- a/tools/compute_image_mean.cpp
+++ b/tools/compute_image_mean.cpp
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
#include <glog/logging.h>
#include <leveldb/db.h>
diff --git a/tools/convert_imageset.cpp b/tools/convert_imageset.cpp
index 50b53e6d..4e196d70 100644
--- a/tools/convert_imageset.cpp
+++ b/tools/convert_imageset.cpp
@@ -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:
diff --git a/tools/device_query.cpp b/tools/device_query.cpp
index 920e81b1..6b120ba0 100644
--- a/tools/device_query.cpp
+++ b/tools/device_query.cpp
@@ -1,4 +1,4 @@
-// Copyright 2014 Sergio Guadarrama
+// Copyright 2014 BVLC and contributors.
#include "caffe/common.hpp"
diff --git a/tools/dump_network.cpp b/tools/dump_network.cpp
index 21d0256f..f5c36820 100644
--- a/tools/dump_network.cpp
+++ b/tools/dump_network.cpp
@@ -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
diff --git a/tools/extra/extract_seconds.py b/tools/extra/extract_seconds.py
index ea68e155..f791afa3 100755
--- a/tools/extra/extract_seconds.py
+++ b/tools/extra/extract_seconds.py
@@ -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])
diff --git a/tools/extract_features.cpp b/tools/extract_features.cpp
index e547db59..4274db44 100644
--- a/tools/extract_features.cpp
+++ b/tools/extract_features.cpp
@@ -1,4 +1,4 @@
-// Copyright 2014 kloudkl@github
+// Copyright 2014 BVLC and contributors.
#include <stdio.h> // for snprintf
#include <cuda_runtime.h>
diff --git a/tools/finetune_net.cpp b/tools/finetune_net.cpp
index 2aad7385..8d25954f 100644
--- a/tools/finetune_net.cpp
+++ b/tools/finetune_net.cpp
@@ -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:
diff --git a/tools/net_speed_benchmark.cpp b/tools/net_speed_benchmark.cpp
index 43f7b493..db95cc17 100644
--- a/tools/net_speed_benchmark.cpp
+++ b/tools/net_speed_benchmark.cpp
@@ -1,4 +1,4 @@
-// Copyright 2013 Yangqing Jia
+// Copyright 2014 BVLC and contributors.
#include <cuda_runtime.h>
#include <fcntl.h>
diff --git a/tools/test_net.cpp b/tools/test_net.cpp
index c4c992aa..63922314 100644
--- a/tools/test_net.cpp
+++ b/tools/test_net.cpp
@@ -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
diff --git a/tools/train_net.cpp b/tools/train_net.cpp
index 3bd4f878..f9516421 100644
--- a/tools/train_net.cpp
+++ b/tools/train_net.cpp
@@ -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.