Skip to content

Commit 6b5398d

Browse files
committed
Fix arguments description
1 parent 7cdeda7 commit 6b5398d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

train.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,11 @@ def main():
4747
parser.add_argument('--model_name', default="test10", help='model name')
4848
parser.add_argument('--device', default="cpu", help='cpu or cuda')
4949
parser.add_argument('--n_samples', type=int, default=None, help='Number of samples to train on')
50-
parser.add_argument('--print_every', type=int, default=1000, help='Number of samples to train on')
51-
parser.add_argument('--iterations', type=int, default=100, help='Number of samples to train on')
52-
parser.add_argument('--graph', type=bool, default=False, help='Number of samples to train on')
53-
parser.add_argument('--gat', type=bool, default=False, help='Number of samples to train on')
50+
parser.add_argument('--print_every', type=int, default=1000, help='Print results after a fixed '
51+
'number of iterations')
52+
parser.add_argument('--iterations', type=int, default=100, help='Number of iterations to train for')
53+
parser.add_argument('--graph', type=bool, default=False, help='Whether to use a graph encoder')
54+
parser.add_argument('--gat', type=bool, default=False, help='Whether to use GAT or GCN')
5455

5556
opt = parser.parse_args()
5657
print(opt)

0 commit comments

Comments
 (0)