@@ -7,16 +7,16 @@ def get_args():
77 parser .add_argument ("-n" , "--name" , help = "Name of the experiment" , type = str , required = True )
88 parser .add_argument ("-oe" , "--overwrite-experiment" , help = "Overwrite existing experiment" , action = "store_true" ,
99 required = False )
10- parser .add_argument ("-e" , "--global-epochs" , help = "Number of global (server) epochs" , type = int , default = 10 ,
10+ parser .add_argument ("-e" , "--global-epochs" , help = "Number of global (server) epochs" , type = int , default = 1000 ,
1111 required = False )
1212 parser .add_argument ("-c" , "--clients" , help = "Number of clients" , type = int , default = 100 , required = False )
13- parser .add_argument ("-f" , "--fraction" , help = "Client fraction to use" , type = float , default = 0.2 ,
13+ parser .add_argument ("-f" , "--fraction" , help = "Client fraction to use" , type = float , default = 0.1 ,
1414 required = False )
1515 parser .add_argument ("-d" , "--debug" , help = "Debugging" , action = "store_true" , required = False )
1616
17- parser .add_argument ("-lr" , "--learning-rate" , help = "Learning rate" , type = float , default = 0.01 , required = False )
17+ parser .add_argument ("-lr" , "--learning-rate" , help = "Learning rate" , type = float , default = 0.15 , required = False )
1818 parser .add_argument ("-b" , "--batch-size" , help = "Batch Size" , type = int , default = 32 , required = False )
19- parser .add_argument ("-ce" , "--client-epochs" , help = "Number of epochs for the clients" , type = int , default = 5 ,
19+ parser .add_argument ("-ce" , "--client-epochs" , help = "Number of epochs for the clients" , type = int , default = 1 ,
2020 required = False )
2121 args = parser .parse_args ()
2222 return args
0 commit comments