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 d536e0d commit 609d1f8Copy full SHA for 609d1f8
torch_scatter/std.py
@@ -43,6 +43,8 @@ def scatter_std(src, index, dim=-1, out=None, dim_size=None, unbiased=True):
43
unbiased (bool, optional): If set to :obj:`False`, then the standard-
44
deviation will be calculated via the biased estimator.
45
(default: :obj:`True`)
46
+
47
+ :rtype: :class:`Tensor`
48
"""
49
src, out, index, dim = gen(src, index, dim, out, dim_size, fill_value=0)
50
0 commit comments