summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/device_query.cpp2
-rw-r--r--tools/finetune_net.cpp4
-rw-r--r--tools/net_speed_benchmark.cpp4
-rw-r--r--tools/test_net.cpp2
-rw-r--r--tools/train_net.cpp4
5 files changed, 8 insertions, 8 deletions
diff --git a/tools/device_query.cpp b/tools/device_query.cpp
index 2678154c..03799e52 100644
--- a/tools/device_query.cpp
+++ b/tools/device_query.cpp
@@ -1,7 +1,7 @@
#include "caffe/common.hpp"
int main(int argc, char** argv) {
- LOG(FATAL) << "Deprecated. Use caffe.bin devicequery "
+ LOG(FATAL) << "Deprecated. Use caffe device_query "
"[--device_id=0] instead.";
return 0;
}
diff --git a/tools/finetune_net.cpp b/tools/finetune_net.cpp
index 2966de48..81c0c354 100644
--- a/tools/finetune_net.cpp
+++ b/tools/finetune_net.cpp
@@ -1,7 +1,7 @@
#include "caffe/caffe.hpp"
int main(int argc, char** argv) {
- LOG(FATAL) << "Deprecated. Use caffe.bin train --solver_proto_file=... "
- "[--pretrained_net_file=...] instead.";
+ LOG(FATAL) << "Deprecated. Use caffe train --solver=... "
+ "[--weights=...] instead.";
return 0;
}
diff --git a/tools/net_speed_benchmark.cpp b/tools/net_speed_benchmark.cpp
index ff112bdf..cd16e8d0 100644
--- a/tools/net_speed_benchmark.cpp
+++ b/tools/net_speed_benchmark.cpp
@@ -1,7 +1,7 @@
#include "caffe/caffe.hpp"
int main(int argc, char** argv) {
- LOG(FATAL) << "Deprecated. Use caffe.bin speedtest --net_proto_file=... "
- "[--run_iterations=50] [--speedtest_with_gpu] [--device_id=0]";
+ LOG(FATAL) << "Deprecated. Use caffe time --model=... "
+ "[--iterations=50] [--gpu] [--device_id=0]";
return 0;
}
diff --git a/tools/test_net.cpp b/tools/test_net.cpp
index cebbc4b1..92e14eee 100644
--- a/tools/test_net.cpp
+++ b/tools/test_net.cpp
@@ -1,7 +1,7 @@
#include "caffe/caffe.hpp"
int main(int argc, char** argv) {
- LOG(FATAL) << "Deprecated. Use caffe.bin test --model=... "
+ LOG(FATAL) << "Deprecated. Use caffe test --model=... "
"--weights=... instead.";
return 0;
}
diff --git a/tools/train_net.cpp b/tools/train_net.cpp
index 26aeb40b..622bca31 100644
--- a/tools/train_net.cpp
+++ b/tools/train_net.cpp
@@ -1,7 +1,7 @@
#include "caffe/caffe.hpp"
int main(int argc, char** argv) {
- LOG(FATAL) << "Deprecated. Use caffe.bin train --solver_proto_file=... "
- "[--resume_point_file=...] instead.";
+ LOG(FATAL) << "Deprecated. Use caffe train --solver=... "
+ "[--snapshot=...] instead.";
return 0;
}