Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
diffusers
Commits
8c14ca3d
Unverified
Commit
8c14ca3d
authored
Jan 02, 2023
by
Pedro Cuenca
Committed by
GitHub
Jan 02, 2023
Browse files
Fixes to the help for `report_to` in training scripts (#1888)
Fixes to the help for report_to in training scripts.
parent
fa1f4701
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
12 deletions
+8
-12
examples/dreambooth/train_dreambooth.py
examples/dreambooth/train_dreambooth.py
+2
-3
examples/text_to_image/train_text_to_image.py
examples/text_to_image/train_text_to_image.py
+2
-3
examples/text_to_image/train_text_to_image_flax.py
examples/text_to_image/train_text_to_image_flax.py
+2
-3
examples/textual_inversion/textual_inversion.py
examples/textual_inversion/textual_inversion.py
+2
-3
No files found.
examples/dreambooth/train_dreambooth.py
View file @
8c14ca3d
...
@@ -253,9 +253,8 @@ def parse_args(input_args=None):
...
@@ -253,9 +253,8 @@ def parse_args(input_args=None):
type
=
str
,
type
=
str
,
default
=
"tensorboard"
,
default
=
"tensorboard"
,
help
=
(
help
=
(
'The integration to report the results and logs to. Supported platforms are `"tensorboard"`,'
'The integration to report the results and logs to. Supported platforms are `"tensorboard"`'
' `"wandb"` and `"comet_ml"`. Use `"all"` (default) to report to all integrations.'
' (default), `"wandb"` and `"comet_ml"`. Use `"all"` to report to all integrations.'
"Only applicable when `--with_tracking` is passed."
),
),
)
)
parser
.
add_argument
(
parser
.
add_argument
(
...
...
examples/text_to_image/train_text_to_image.py
View file @
8c14ca3d
...
@@ -232,9 +232,8 @@ def parse_args():
...
@@ -232,9 +232,8 @@ def parse_args():
type
=
str
,
type
=
str
,
default
=
"tensorboard"
,
default
=
"tensorboard"
,
help
=
(
help
=
(
'The integration to report the results and logs to. Supported platforms are `"tensorboard"`,'
'The integration to report the results and logs to. Supported platforms are `"tensorboard"`'
' `"wandb"` and `"comet_ml"`. Use `"all"` (default) to report to all integrations.'
' (default), `"wandb"` and `"comet_ml"`. Use `"all"` to report to all integrations.'
"Only applicable when `--with_tracking` is passed."
),
),
)
)
parser
.
add_argument
(
"--local_rank"
,
type
=
int
,
default
=-
1
,
help
=
"For distributed training: local_rank"
)
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
View file @
8c14ca3d
...
@@ -182,9 +182,8 @@ def parse_args():
...
@@ -182,9 +182,8 @@ def parse_args():
type
=
str
,
type
=
str
,
default
=
"tensorboard"
,
default
=
"tensorboard"
,
help
=
(
help
=
(
'The integration to report the results and logs to. Supported platforms are `"tensorboard"`,'
'The integration to report the results and logs to. Supported platforms are `"tensorboard"`'
' `"wandb"` and `"comet_ml"`. Use `"all"` (default) to report to all integrations.'
' (default), `"wandb"` and `"comet_ml"`. Use `"all"` to report to all integrations.'
"Only applicable when `--with_tracking` is passed."
),
),
)
)
parser
.
add_argument
(
parser
.
add_argument
(
...
...
examples/textual_inversion/textual_inversion.py
View file @
8c14ca3d
...
@@ -224,9 +224,8 @@ def parse_args():
...
@@ -224,9 +224,8 @@ def parse_args():
type
=
str
,
type
=
str
,
default
=
"tensorboard"
,
default
=
"tensorboard"
,
help
=
(
help
=
(
'The integration to report the results and logs to. Supported platforms are `"tensorboard"`,'
'The integration to report the results and logs to. Supported platforms are `"tensorboard"`'
' `"wandb"` and `"comet_ml"`. Use `"all"` (default) to report to all integrations.'
' (default), `"wandb"` and `"comet_ml"`. Use `"all"` to report to all integrations.'
"Only applicable when `--with_tracking` is passed."
),
),
)
)
parser
.
add_argument
(
"--local_rank"
,
type
=
int
,
default
=-
1
,
help
=
"For distributed training: local_rank"
)
parser
.
add_argument
(
"--local_rank"
,
type
=
int
,
default
=-
1
,
help
=
"For distributed training: local_rank"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment