Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed May 27, 2023
1 parent dccc482 commit 7e809ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/hetero/hierarchical_sage.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ def __init__(self, edge_types, hidden_channels, out_channels, num_layers):

self.lin = Linear(hidden_channels, out_channels)

def forward(self, x_dict, edge_index_dict, num_sampled_edges_dict=None,
num_sampled_nodes_dict=None):
def forward(self, x_dict, edge_index_dict, num_sampled_edges_dict,
num_sampled_nodes_dict):

for i, conv in enumerate(self.convs):
x_dict, edge_index_dict, _ = trim_to_layer(
Expand Down

0 comments on commit 7e809ab

Please sign in to comment.