This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
Huawei_Technology
/
mindspore
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
13
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
improve keywordarg tostring function
tags/v1.0.0
buxue
5 years ago
parent
4cdd93eb12
commit
1c28300d24
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
mindspore/core/ir/value.cc
+ 1
- 1
mindspore/core/ir/value.cc
View File
@@ -266,7 +266,7 @@ std::string KeywordArg::ToString() const {
buffer << "KeywordArg[";
buffer << "key : " << key_;
MS_EXCEPTION_IF_NULL(value_);
buffer << "value : " << value_->ToString();
buffer << "
,
value : " << value_->ToString();
buffer << "]";
return buffer.str();
}
Write
Preview
Loading…
Cancel
Save