Skip to content
Snippets Groups Projects
Commit dbee52bf authored by Gokhan OZBULAK's avatar Gokhan OZBULAK
Browse files

Fixed help text for new usage. #25

parent 9c5d7379
No related branches found
No related tags found
1 merge request!40Lightning acc
...@@ -83,15 +83,14 @@ def reusable_options(f): ...@@ -83,15 +83,14 @@ def reusable_options(f):
"-c", "-c",
help="Number of chunks in every batch (this parameter affects " help="Number of chunks in every batch (this parameter affects "
"memory requirements for the network). The number of samples " "memory requirements for the network). The number of samples "
"loaded for every iteration will be batch-size/batch-chunk-count. " "loaded for every iteration will be batch-size*batch-chunk-count. "
"batch-size needs to be divisible by batch-chunk-count, otherwise an " "This parameter is used to reduce the number of samples loaded in each "
"error will be raised. This parameter is used to reduce the number of " "iteration, in order to reduce the memory usage in exchange for "
"samples loaded in each iteration, in order to reduce the memory usage " "processing time (more iterations). This is especially interesting "
"in exchange for processing time (more iterations). This is especially " "when one is training on GPUs with limited RAM. The default of 1 forces "
"interesting when one is training on GPUs with limited RAM. The " "the whole batch to be processed at once. Otherwise the batch is "
"default of 1 forces the whole batch to be processed at once. Otherwise " "multiplied by batch-chunk-count pieces, and gradients are accumulated "
"the batch is broken into batch-chunk-count pieces, and gradients are " "to complete each batch.",
"accumulated to complete each batch.",
required=True, required=True,
show_default=True, show_default=True,
default=1, default=1,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment