Unverified Commit ab0af814 authored by Hongzhi (Steve), Chen's avatar Hongzhi (Steve), Chen Committed by GitHub
Browse files

Clarify the message name, which is 'm'. (#4462)


Co-authored-by: default avatarUbuntu <ubuntu@ip-172-31-34-29.ap-northeast-1.compute.internal>
Co-authored-by: default avatarRhett Ying <85214957+Rhett-Ying@users.noreply.github.com>
parent 97b2ab53
...@@ -123,8 +123,8 @@ class SAGEConv(nn.Module): ...@@ -123,8 +123,8 @@ class SAGEConv(nn.Module):
# three concepts here: # three concepts here:
# #
# * Message function ``fn.copy_u('h', 'm')`` that # * Message function ``fn.copy_u('h', 'm')`` that
# copies the node feature under name ``'h'`` as *messages* sent to # copies the node feature under name ``'h'`` as *messages* with name
# neighbors. # ``'m'`` sent to neighbors.
# #
# * Reduce function ``fn.mean('m', 'h_N')`` that averages # * Reduce function ``fn.mean('m', 'h_N')`` that averages
# all the received messages under name ``'m'`` and saves the result as a # all the received messages under name ``'m'`` and saves the result as a
......
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