We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45bd0a5 commit 7c74304Copy full SHA for 7c74304
paddle/trainer/Tester.cpp
@@ -48,9 +48,9 @@ Tester::Tester(const std::shared_ptr<TrainerConfigHelper>& config,
48
testDataProvider_(testDataProvider) {
49
if (config_->getOptConfig().use_sparse_remote_updater()) {
50
LOG(FATAL) << "It's prohibited to set sparse_remote_update "
51
- << "in some layers if testing will be under going "
52
- << "in the middle of training. You can do testing "
53
- << "within separate process.";
+ << "when doing train and test jobs in the same "
+ << "process. You could run paddle --job=test in "
+ << "a separate process.";
54
}
55
testEvaluator_.reset(gradientMachine_->makeEvaluator());
56
if (intconfig_->distributeTest) {
0 commit comments