Commit a4355bea authored by rusty1s's avatar rusty1s
Browse files

typo

parent 63254509
...@@ -62,7 +62,7 @@ def scatter_div(src, index, dim=-1, out=None, dim_size=None, fill_value=1): ...@@ -62,7 +62,7 @@ def scatter_div(src, index, dim=-1, out=None, dim_size=None, fill_value=1):
If :attr:`dim_size` is not given, a minimal sized output tensor is If :attr:`dim_size` is not given, a minimal sized output tensor is
returned. (default: :obj:`None`) returned. (default: :obj:`None`)
fill_value (int, optional): If :attr:`out` is not given, automatically fill_value (int, optional): If :attr:`out` is not given, automatically
fill output tensor with :attr:`fill_value`. (default: :obj:`0`) fill output tensor with :attr:`fill_value`. (default: :obj:`1`)
:rtype: :class:`Tensor` :rtype: :class:`Tensor`
......
...@@ -61,7 +61,7 @@ def scatter_mul(src, index, dim=-1, out=None, dim_size=None, fill_value=1): ...@@ -61,7 +61,7 @@ def scatter_mul(src, index, dim=-1, out=None, dim_size=None, fill_value=1):
If :attr:`dim_size` is not given, a minimal sized output tensor is If :attr:`dim_size` is not given, a minimal sized output tensor is
returned. (default: :obj:`None`) returned. (default: :obj:`None`)
fill_value (int, optional): If :attr:`out` is not given, automatically fill_value (int, optional): If :attr:`out` is not given, automatically
fill output tensor with :attr:`fill_value`. (default: :obj:`0`) fill output tensor with :attr:`fill_value`. (default: :obj:`1`)
:rtype: :class:`Tensor` :rtype: :class:`Tensor`
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment