Skip to content

Commit

Permalink
modify default lr and fanout.
Browse files Browse the repository at this point in the history
  • Loading branch information
mfbalin committed Aug 21, 2024
1 parent fc4c814 commit 77c2bb9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/graphbolt/pyg/hetero/node_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ def parse_args():
parser.add_argument(
"--lr",
type=float,
default=0.003,
default=0.001,
help="Learning rate for optimization.",
)
parser.add_argument(
Expand All @@ -383,9 +383,9 @@ def parse_args():
parser.add_argument(
"--fanout",
type=str,
default="10,25",
default="25,10",
help="Fan-out of neighbor sampling. It is IMPORTANT to keep len(fanout)"
" identical with the number of layers in your model. Default: ",
" identical with the number of layers in your model. Default: 25,10",
)
parser.add_argument(
"--mode",
Expand Down

0 comments on commit 77c2bb9

Please sign in to comment.