@@ -47,10 +47,11 @@ def main():
47
47
parser .add_argument ('--model_name' , default = "test10" , help = 'model name' )
48
48
parser .add_argument ('--device' , default = "cpu" , help = 'cpu or cuda' )
49
49
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' )
54
55
55
56
opt = parser .parse_args ()
56
57
print (opt )
0 commit comments