summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorEvan Shelhamer <shelhamer@imaginarynumber.net>2014-08-06 00:43:17 -0700
committerEvan Shelhamer <shelhamer@imaginarynumber.net>2014-08-06 18:35:29 -0700
commitb97b88f0c2b7e32ab9e17d4325ef6bc4251c0cc8 (patch)
tree4578bb1f73f116b563b0accb3734de9fdabd7512 /tools
parent9410e93480f232e9bcce052414b268d8b8b6af3a (diff)
downloadcaffeonacl-b97b88f0c2b7e32ab9e17d4325ef6bc4251c0cc8.tar.gz
caffeonacl-b97b88f0c2b7e32ab9e17d4325ef6bc4251c0cc8.tar.bz2
caffeonacl-b97b88f0c2b7e32ab9e17d4325ef6bc4251c0cc8.zip
LICENSE governs the whole project so strip file headers
Diffstat (limited to 'tools')
-rw-r--r--tools/caffe.cpp1
-rw-r--r--tools/compute_image_mean.cpp2
-rw-r--r--tools/convert_imageset.cpp1
-rw-r--r--tools/device_query.cpp2
-rw-r--r--tools/dump_network.cpp2
-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
-rw-r--r--tools/upgrade_net_proto_binary.cpp2
-rw-r--r--tools/upgrade_net_proto_text.cpp2
12 files changed, 0 insertions, 22 deletions
diff --git a/tools/caffe.cpp b/tools/caffe.cpp
index ec414298..ee12bca8 100644
--- a/tools/caffe.cpp
+++ b/tools/caffe.cpp
@@ -1,4 +1,3 @@
-// Copyright 2014 BVLC and contributors.
#include <gflags/gflags.h>
#include <glog/logging.h>
diff --git a/tools/compute_image_mean.cpp b/tools/compute_image_mean.cpp
index 79bfdc7c..fe3497fa 100644
--- a/tools/compute_image_mean.cpp
+++ b/tools/compute_image_mean.cpp
@@ -1,5 +1,3 @@
-// Copyright 2014 BVLC and contributors.
-
#include <glog/logging.h>
#include <leveldb/db.h>
#include <lmdb.h>
diff --git a/tools/convert_imageset.cpp b/tools/convert_imageset.cpp
index 21ff0d38..0ddafa0c 100644
--- a/tools/convert_imageset.cpp
+++ b/tools/convert_imageset.cpp
@@ -1,4 +1,3 @@
-// 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 efdbbbbc..2678154c 100644
--- a/tools/device_query.cpp
+++ b/tools/device_query.cpp
@@ -1,5 +1,3 @@
-// Copyright 2014 BVLC and contributors.
-
#include "caffe/common.hpp"
int main(int argc, char** argv) {
diff --git a/tools/dump_network.cpp b/tools/dump_network.cpp
index 89840169..90895fdc 100644
--- a/tools/dump_network.cpp
+++ b/tools/dump_network.cpp
@@ -1,5 +1,3 @@
-// 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
// files stored in protobuffer binary formats.
diff --git a/tools/extract_features.cpp b/tools/extract_features.cpp
index 06e07fe6..49e8f989 100644
--- a/tools/extract_features.cpp
+++ b/tools/extract_features.cpp
@@ -1,5 +1,3 @@
-// Copyright 2014 BVLC and contributors.
-
#include <stdio.h> // for snprintf
#include <string>
#include <vector>
diff --git a/tools/finetune_net.cpp b/tools/finetune_net.cpp
index 213ff017..2966de48 100644
--- a/tools/finetune_net.cpp
+++ b/tools/finetune_net.cpp
@@ -1,5 +1,3 @@
-// Copyright 2014 BVLC and contributors.
-
#include "caffe/caffe.hpp"
int main(int argc, char** argv) {
diff --git a/tools/net_speed_benchmark.cpp b/tools/net_speed_benchmark.cpp
index f520e1d7..ff112bdf 100644
--- a/tools/net_speed_benchmark.cpp
+++ b/tools/net_speed_benchmark.cpp
@@ -1,5 +1,3 @@
-// Copyright 2014 BVLC and contributors.
-
#include "caffe/caffe.hpp"
int main(int argc, char** argv) {
diff --git a/tools/test_net.cpp b/tools/test_net.cpp
index b6f827e6..de97ab89 100644
--- a/tools/test_net.cpp
+++ b/tools/test_net.cpp
@@ -1,5 +1,3 @@
-// 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
// are loaded from a pre-trained network.
diff --git a/tools/train_net.cpp b/tools/train_net.cpp
index 08602d4a..26aeb40b 100644
--- a/tools/train_net.cpp
+++ b/tools/train_net.cpp
@@ -1,5 +1,3 @@
-// Copyright 2014 BVLC and contributors.
-
#include "caffe/caffe.hpp"
int main(int argc, char** argv) {
diff --git a/tools/upgrade_net_proto_binary.cpp b/tools/upgrade_net_proto_binary.cpp
index ed703f02..d7a62e32 100644
--- a/tools/upgrade_net_proto_binary.cpp
+++ b/tools/upgrade_net_proto_binary.cpp
@@ -1,5 +1,3 @@
-// Copyright 2014 BVLC and contributors.
-//
// This is a script to upgrade "V0" network prototxts to the new format.
// Usage:
// upgrade_net_proto_binary v0_net_proto_file_in net_proto_file_out
diff --git a/tools/upgrade_net_proto_text.cpp b/tools/upgrade_net_proto_text.cpp
index d05d1ac5..1176585b 100644
--- a/tools/upgrade_net_proto_text.cpp
+++ b/tools/upgrade_net_proto_text.cpp
@@ -1,5 +1,3 @@
-// Copyright 2014 BVLC and contributors.
-//
// This is a script to upgrade "V0" network prototxts to the new format.
// Usage:
// upgrade_net_proto_text v0_net_proto_file_in net_proto_file_out