Fix default value for batchsize in learn docs.

This commit is contained in:
Tomasz Sobczyk
2020-11-14 15:32:06 +01:00
committed by nodchip
parent 691da3bdad
commit 9b930023fb
+3 -3
View File
@@ -16,7 +16,7 @@ Currently the following options are available:
`set_recommended_uci_options` - this is a modifier not a parameter, no value follows it. If specified then some UCI options are set to recommended values.
`bat` - the size of a batch in multiples of 10000. This determines how many entries are read and shuffled at once during training. Default: 1000 (meaning batch size of 1000000).
`bat` - the size of a batch in multiples of 10000. This determines how many entries are read and shuffled at once during training. Default: 100 (meaning batch size of 1000000).
`targetdir` - path to the direction from which training data will be read. All files in this directory are read sequentially. If not specified then only the list of files from positional arguments will be used. If specified then files from the given directory will be used after the explicitly specified files.
@@ -24,7 +24,7 @@ Currently the following options are available:
`basedir` - the base directory for the paths. Default: "" (current directory)
`batchsize` - same as `bat` but doesn't scale by 10000
`batchsize` - same as `bat` but doesn't scale by 10000. Default: 1000000
`lr` - initial learning rate. Default: 1.
@@ -105,4 +105,4 @@ Currently the following options are available:
`buffer_size`
`shuffleq`
`shufflem`
`output_file_name`
`output_file_name`