"git@developer.sourcefind.cn:OpenDAS/dgl.git" did not exist on "cdf7334cc6e0972e992b4339e1611b0dcb14804e"
Commit 98954c56 authored by MilkshakeForReal's avatar MilkshakeForReal Committed by Zihao Ye
Browse files

[docs]update conv.py (#822)

* Update conv.py

* Update conv.py

change `oto` to `to
parent 36ec71a2
...@@ -1197,7 +1197,7 @@ class SGConv(nn.Module): ...@@ -1197,7 +1197,7 @@ class SGConv(nn.Module):
bias : bool bias : bool
If True, adds a learnable bias to the output. Default: ``True``. If True, adds a learnable bias to the output. Default: ``True``.
norm : callable activation function/layer or None, optional norm : callable activation function/layer or None, optional
If not None, applies normalization oto the updated node features. If not None, applies normalization to the updated node features.
""" """
def __init__(self, def __init__(self,
in_feats, in_feats,
...@@ -1607,7 +1607,7 @@ class DenseSAGEConv(nn.Module): ...@@ -1607,7 +1607,7 @@ class DenseSAGEConv(nn.Module):
bias : bool bias : bool
If True, adds a learnable bias to the output. Default: ``True``. If True, adds a learnable bias to the output. Default: ``True``.
norm : callable activation function/layer or None, optional norm : callable activation function/layer or None, optional
If not None, applies normalization oto the updated node features. If not None, applies normalization to the updated node features.
activation : callable activation function/layer or None, optional activation : callable activation function/layer or None, optional
If not None, applies an activation function to the updated node features. If not None, applies an activation function to the updated node features.
Default: ``None``. Default: ``None``.
......
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