From 7c7430470d79f7fccdf0cfc1cefb12b018d9c573 Mon Sep 17 00:00:00 2001 From: wangyanfei01 Date: Thu, 15 Dec 2016 16:55:31 +0800 Subject: [PATCH] follow comments: more readable LOG --- paddle/trainer/Tester.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/paddle/trainer/Tester.cpp b/paddle/trainer/Tester.cpp index 24f7271734..24fac3e5a8 100644 --- a/paddle/trainer/Tester.cpp +++ b/paddle/trainer/Tester.cpp @@ -48,9 +48,9 @@ Tester::Tester(const std::shared_ptr& config, testDataProvider_(testDataProvider) { if (config_->getOptConfig().use_sparse_remote_updater()) { LOG(FATAL) << "It's prohibited to set sparse_remote_update " - << "in some layers if testing will be under going " - << "in the middle of training. You can do testing " - << "within separate process."; + << "when doing train and test jobs in the same " + << "process. You could run paddle --job=test in " + << "a separate process."; } testEvaluator_.reset(gradientMachine_->makeEvaluator()); if (intconfig_->distributeTest) { -- GitLab