Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

fix bad encode char #16641

Merged
merged 1 commit into from
Oct 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/operator/contrib/allclose_op-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ struct AllCloseParam : public dmlc::Parameter<AllCloseParam> {
.describe("Absolute tolerance.");
DMLC_DECLARE_FIELD(equal_nan)
.set_default(true)
.describe("Whether to compare NaNs as equal. If True, NaNs in A will be considered equal "
"to NaNs in B in the output array.");
.describe("Whether to compare NaN's as equal. If True, NaN's in A will be considered equal "
"to NaN's in B in the output array.");
}
};

Expand Down
2 changes: 1 addition & 1 deletion src/operator/numpy/np_einsum_op-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ struct NumpyEinsumParam: public dmlc::Parameter<NumpyEinsumParam> {
.set_default("")
.describe("Specifies the subscripts for summation as comma separated list"
" of subscript labels. An implicit (classical Einstein summation) calculation"
" is performed unless the explicit indicator ‘->’ is included as well as"
" is performed unless the explicit indicator '->' is included as well as"
" subscript labels of the precise output form.");
DMLC_DECLARE_FIELD(optimize)
.set_default(0);
Expand Down