Skip to content

Commit 8c14ca3

Browse files
authored
Fixes to the help for report_to in training scripts (#1888)
Fixes to the help for report_to in training scripts.
1 parent fa1f470 commit 8c14ca3

File tree

4 files changed

+8
-12
lines changed

4 files changed

+8
-12
lines changed

examples/dreambooth/train_dreambooth.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,9 +253,8 @@ def parse_args(input_args=None):
253253
type=str,
254254
default="tensorboard",
255255
help=(
256-
'The integration to report the results and logs to. Supported platforms are `"tensorboard"`,'
257-
' `"wandb"` and `"comet_ml"`. Use `"all"` (default) to report to all integrations.'
258-
"Only applicable when `--with_tracking` is passed."
256+
'The integration to report the results and logs to. Supported platforms are `"tensorboard"`'
257+
' (default), `"wandb"` and `"comet_ml"`. Use `"all"` to report to all integrations.'
259258
),
260259
)
261260
parser.add_argument(

examples/text_to_image/train_text_to_image.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,9 +232,8 @@ def parse_args():
232232
type=str,
233233
default="tensorboard",
234234
help=(
235-
'The integration to report the results and logs to. Supported platforms are `"tensorboard"`,'
236-
' `"wandb"` and `"comet_ml"`. Use `"all"` (default) to report to all integrations.'
237-
"Only applicable when `--with_tracking` is passed."
235+
'The integration to report the results and logs to. Supported platforms are `"tensorboard"`'
236+
' (default), `"wandb"` and `"comet_ml"`. Use `"all"` to report to all integrations.'
238237
),
239238
)
240239
parser.add_argument("--local_rank", type=int, default=-1, help="For distributed training: local_rank")

examples/text_to_image/train_text_to_image_flax.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,8 @@ def parse_args():
182182
type=str,
183183
default="tensorboard",
184184
help=(
185-
'The integration to report the results and logs to. Supported platforms are `"tensorboard"`,'
186-
' `"wandb"` and `"comet_ml"`. Use `"all"` (default) to report to all integrations.'
187-
"Only applicable when `--with_tracking` is passed."
185+
'The integration to report the results and logs to. Supported platforms are `"tensorboard"`'
186+
' (default), `"wandb"` and `"comet_ml"`. Use `"all"` to report to all integrations.'
188187
),
189188
)
190189
parser.add_argument(

examples/textual_inversion/textual_inversion.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,8 @@ def parse_args():
224224
type=str,
225225
default="tensorboard",
226226
help=(
227-
'The integration to report the results and logs to. Supported platforms are `"tensorboard"`,'
228-
' `"wandb"` and `"comet_ml"`. Use `"all"` (default) to report to all integrations.'
229-
"Only applicable when `--with_tracking` is passed."
227+
'The integration to report the results and logs to. Supported platforms are `"tensorboard"`'
228+
' (default), `"wandb"` and `"comet_ml"`. Use `"all"` to report to all integrations.'
230229
),
231230
)
232231
parser.add_argument("--local_rank", type=int, default=-1, help="For distributed training: local_rank")

0 commit comments

Comments
 (0)