Spaces:
Runtime error
Runtime error
menouar
commited on
Commit
·
6f22c73
1
Parent(s):
6c5232f
Correct the label of max_steps
Browse files
utils/components_creator.py
CHANGED
@@ -113,8 +113,8 @@ def add_training_args_1() -> Set[Component]:
|
|
113 |
info="Total number of training epochs to perform.",
|
114 |
interactive=True, elem_id=NUM_TRAIN_EPOCHS_ID)
|
115 |
max_steps = gr.Slider(-1, 100, step=1, value=-1, label="max_steps",
|
116 |
-
info="Total number of training steps to perform.
|
117 |
-
"num_train_epochs.",
|
118 |
interactive=True, elem_id=MAX_STEPS_ID)
|
119 |
out_components: Set[Component] = set()
|
120 |
out_components.add(epochs)
|
|
|
113 |
info="Total number of training epochs to perform.",
|
114 |
interactive=True, elem_id=NUM_TRAIN_EPOCHS_ID)
|
115 |
max_steps = gr.Slider(-1, 100, step=1, value=-1, label="max_steps",
|
116 |
+
info="Total number of training steps to perform. If set to a positive number it overrides "
|
117 |
+
"'num_train_epochs'.",
|
118 |
interactive=True, elem_id=MAX_STEPS_ID)
|
119 |
out_components: Set[Component] = set()
|
120 |
out_components.add(epochs)
|