Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dgl
Commits
6b0d42db
Unverified
Commit
6b0d42db
authored
Sep 25, 2020
by
Junki Ishikawa
Committed by
GitHub
Sep 25, 2020
Browse files
Fix typo (#2235)
Co-authored-by:
Chao Ma
<
mctt90@gmail.com
>
parent
36daf66f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
python/dgl/nn/pytorch/conv/gatconv.py
python/dgl/nn/pytorch/conv/gatconv.py
+1
-1
python/dgl/nn/pytorch/conv/nnconv.py
python/dgl/nn/pytorch/conv/nnconv.py
+1
-1
python/dgl/nn/pytorch/conv/sageconv.py
python/dgl/nn/pytorch/conv/sageconv.py
+1
-1
No files found.
python/dgl/nn/pytorch/conv/gatconv.py
View file @
6b0d42db
...
...
@@ -33,7 +33,7 @@ class GATConv(nn.Module):
----------
in_feats : int, or pair of ints
Input feature size; i.e, the number of dimensions of :math:`h_i^{(l)}`.
ATConv can be applied on homogeneous graph and unidirectional
G
ATConv can be applied on homogeneous graph and unidirectional
`bipartite graph <https://docs.dgl.ai/generated/dgl.bipartite.html?highlight=bipartite>`__.
If the layer is to be applied to a unidirectional bipartite graph, ``in_feats``
specifies the input feature size on both the source and destination nodes. If
...
...
python/dgl/nn/pytorch/conv/nnconv.py
View file @
6b0d42db
...
...
@@ -28,7 +28,7 @@ class NNConv(nn.Module):
----------
in_feats : int
Input feature size; i.e, the number of dimensions of :math:`h_j^{(l)}`.
NN can be applied on homogeneous graph and unidirectional
NN
Conv
can be applied on homogeneous graph and unidirectional
`bipartite graph <https://docs.dgl.ai/generated/dgl.bipartite.html?highlight=bipartite>`__.
If the layer is to be applied on a unidirectional bipartite graph, ``in_feats``
specifies the input feature size on both the source and destination nodes. If
...
...
python/dgl/nn/pytorch/conv/sageconv.py
View file @
6b0d42db
...
...
@@ -30,7 +30,7 @@ class SAGEConv(nn.Module):
in_feats : int, or pair of ints
Input feature size; i.e, the number of dimensions of :math:`h_i^{(l)}`.
GAT
Conv can be applied on homogeneous graph and unidirectional
SAGE
Conv can be applied on homogeneous graph and unidirectional
`bipartite graph <https://docs.dgl.ai/generated/dgl.bipartite.html?highlight=bipartite>`__.
If the layer applies on a unidirectional bipartite graph, ``in_feats``
specifies the input feature size on both the source and destination nodes. If
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment