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
0851b4df
Unverified
Commit
0851b4df
authored
Jul 05, 2021
by
WangYQ
Committed by
GitHub
Jul 05, 2021
Browse files
Sageconv doc (#3093)
* revise the doc of forward function in SAGEConv * remove trailing space
parent
9c41c22d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
python/dgl/nn/pytorch/conv/sageconv.py
python/dgl/nn/pytorch/conv/sageconv.py
+3
-2
No files found.
python/dgl/nn/pytorch/conv/sageconv.py
View file @
0851b4df
...
@@ -197,8 +197,9 @@ class SAGEConv(nn.Module):
...
@@ -197,8 +197,9 @@ class SAGEConv(nn.Module):
Returns
Returns
-------
-------
torch.Tensor
torch.Tensor
The output feature of shape :math:`(N, D_{out})` where :math:`D_{out}`
The output feature of shape :math:`(N_{dst}, D_{out})`
is size of output feature.
where :math:`N_{dst}` is the number of destination nodes in the input graph,
math:`D_{out}` is size of output feature.
"""
"""
self
.
_compatibility_check
()
self
.
_compatibility_check
()
with
graph
.
local_scope
():
with
graph
.
local_scope
():
...
...
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