Skip to content

Commit cc5fcf3

Browse files
committed
nettest.py: Update default argument values
Update default values for command line arguments to better match current training setup.
1 parent b7c5756 commit cc5fcf3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

nettest.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,17 +94,17 @@ def main(args):
9494
help='folder containing nets to test')
9595
parser.add_argument('-c', '--concurrency', type=int, default=1,
9696
help='the number of games to run in parallell (default 1)')
97-
parser.add_argument('-g', '--games', type=int, default=200,
98-
help='the number of games to to play in each match (default 200)')
97+
parser.add_argument('-g', '--games', type=int, default=1000,
98+
help='the number of games to to play in each match (default 1000)')
9999
parser.add_argument('-o', '--output',
100100
help='file to store all playes games in (deafult games.pgn)',
101101
type=str, default='games.pgn')
102102
parser.add_argument('-w', '--wait', action='store_true',
103103
help='Wait for new nets to test')
104-
parser.add_argument('-t', '--time', type=int, default=5,
105-
help='base time per game (default 5s)')
106-
parser.add_argument('-i', '--increment', type=float, default=0.05,
107-
help='base time per game (default 0.05s)')
104+
parser.add_argument('-t', '--time', type=int, default=10,
105+
help='base time per game (default 10s)')
106+
parser.add_argument('-i', '--increment', type=float, default=0.1,
107+
help='base time per game (default 0.1s)')
108108

109109
args = parser.parse_args()
110110

0 commit comments

Comments
 (0)