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
pyg_autoscale
Commits
eec1d4c7
Commit
eec1d4c7
authored
Feb 02, 2021
by
rusty1s
Browse files
typos
parent
a44bec9e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
README.md
README.md
+3
-3
No files found.
README.md
View file @
eec1d4c7
...
@@ -26,11 +26,11 @@ class GNN(ScalableGNN):
...
@@ -26,11 +26,11 @@ class GNN(ScalableGNN):
self
.
convs
.
append
(
GCNConv
(
hidden_channels
,
hidden_channels
))
self
.
convs
.
append
(
GCNConv
(
hidden_channels
,
hidden_channels
))
self
.
convs
.
append
(
GCNConv
(
hidden_channels
,
out_channels
))
self
.
convs
.
append
(
GCNConv
(
hidden_channels
,
out_channels
))
def
forward
(
self
,
x
,
adj
,
batch_size
,
n_id
):
def
forward
(
self
,
x
,
adj
_t
,
batch_size
,
n_id
):
for
conv
,
history
in
zip
(
self
.
convs
[:
-
1
],
self
.
histories
):
for
conv
,
history
in
zip
(
self
.
convs
[:
-
1
],
self
.
histories
):
x
=
conv
(
x
,
adj
).
relu_
()
x
=
conv
(
x
,
adj
_t
).
relu_
()
x
=
self
.
push_and_pull
(
history
,
x
,
batch_size
,
n_id
)
x
=
self
.
push_and_pull
(
history
,
x
,
batch_size
,
n_id
)
return
self
.
convs
[
-
1
](
x
,
adj
return
self
.
convs
[
-
1
](
x
,
adj
_t
)
```
```
## Installation
## Installation
...
...
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