Browse Source

!9490 fix BUG about output info of log

From: @shenwei41
Reviewed-by: @heleiwang,@pandoublefeng
Signed-off-by: @pandoublefeng
tags/v1.1.0
mindspore-ci-bot Gitee 5 years ago
parent
commit
010206a11d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mindspore/ccsrc/minddata/dataset/kernels/data/random_choice_op.cc

+ 1
- 1
mindspore/ccsrc/minddata/dataset/kernels/data/random_choice_op.cc View File

@@ -42,7 +42,7 @@ uint32_t RandomChoiceOp::NumOutput() {
for (auto &op : ops_) {
uint32_t cur_num = op->NumOutput();
if (num_output != cur_num) {
MS_LOG(WARNING) << "Unable to determine NumInput, ops in RandomChoice don't have the same number of input.";
MS_LOG(WARNING) << "Unable to determine NumOutput, ops in RandomChoice don't have the same number of output.";
return 0;
}
}


Loading…
Cancel
Save