Skip to content
Snippets Groups Projects
Commit 96b8c28e authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[scripts.train] Fix description

parent 2e79aae0
No related branches found
No related tags found
1 merge request!40Lightning acc
Pipeline #87617 passed
...@@ -86,12 +86,11 @@ def reusable_options(f): ...@@ -86,12 +86,11 @@ def reusable_options(f):
"parameter, used in conjunction with the batch-size, may be used to " "parameter, used in conjunction with the batch-size, may be used to "
"reduce the number of samples loaded in each iteration, to affect memory " "reduce the number of samples loaded in each iteration, to affect memory "
"usage in exchange for processing time (more iterations). This is " "usage in exchange for processing time (more iterations). This is "
"especially interesting when one is training on GPUs with a limited amount " "useful interesting when one is training on GPUs with a limited amount "
"of onboard RAM. processing time (more iterations). This is especially interesting " "of onboard RAM. The default of 1 forces the whole batch to be "
"when one is training on GPUs with limited RAM. The default of 1 forces " "processed at once. Otherwise the batch is multiplied by "
"the whole batch to be processed at once. Otherwise the batch is " "accumulate-grad-batches pieces, and gradients are accumulated "
"multiplied by accumulate-grad-batches pieces, and gradients are accumulated " "to complete each training step.",
"to complete each step.",
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