Skip to content

Commit

Permalink
fix #4967
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Jul 12, 2022
1 parent 845e5d8 commit 38befa3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benchmark/citation/gcn.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def forward(self, data):
return F.log_softmax(x, dim=1)


dataset = get_planetoid_dataset(args.dataset, args.no_normalize_features)
dataset = get_planetoid_dataset(args.dataset, not args.no_normalize_features)
permute_masks = random_planetoid_splits if args.random_splits else None
run(dataset, Net(dataset), args.runs, args.epochs, args.lr, args.weight_decay,
args.early_stopping, permute_masks)
2 changes: 1 addition & 1 deletion benchmark/citation/sgc.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def forward(self, data):
return F.log_softmax(x, dim=1)


dataset = get_planetoid_dataset(args.dataset, args.no_normalize_features)
dataset = get_planetoid_dataset(args.dataset, not args.no_normalize_features)
permute_masks = random_planetoid_splits if args.random_splits else None
run(dataset, Net(dataset), args.runs, args.epochs, args.lr, args.weight_decay,
args.early_stopping, permute_masks)

0 comments on commit 38befa3

Please sign in to comment.