"docs/vscode:/vscode.git/clone" did not exist on "9f52a36fad37bcb26e19dfc767d4405310f52399"
Commit 6a0c21bd authored by rusty1s's avatar rusty1s
Browse files

add comment

parent 7e84bf5f
......@@ -22,9 +22,12 @@ from torch_geometric_autoscale import metis, permute, SubgraphLoader
class GNN(ScalableGNN):
def __init__(self, num_nodes, in_channels, hidden_channels, out_channels, num_layers):
# pool_size determines the number of pinned CPU buffers
# buffer_size determines the size of pinned CPU buffers
super(GNN, self).__init__(num_nodes, hidden_channels, num_layers,
pool_size=2, buffer_size=5000)
self.convs = ModuleList()
self.convs.append(SAGEConv(in_channels, hidden_channels))
for _ in range(num_layers - 2):
......
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