Unverified Commit f5c9be3a authored by Michael's avatar Michael Committed by GitHub
Browse files

Remove <cat-toy> validation prompt from...

Remove <cat-toy> validation prompt from examples/textual_inversion/textual_inversion_sdxl.py (#6877)

Remove <cat-toy> validation prompt from textual_inversion_sdxl.py

The `<cat-toy>` validation prompt is a default choice for the example task in the README. But no other part of `textual_inversion_sdxl.py` references the cat toy and `textual_inversion.py` has a default validation prompt of `None` as well.

So bring `textual_inversion_sdxl.py` in line with `textual_inversion.py` and change default validation prompt to `None`
parent 1824d005
...@@ -372,7 +372,7 @@ def parse_args(): ...@@ -372,7 +372,7 @@ def parse_args():
parser.add_argument( parser.add_argument(
"--validation_prompt", "--validation_prompt",
type=str, type=str,
default="A <cat-toy> backpack", default=None,
help="A prompt that is used during validation to verify that the model is learning.", help="A prompt that is used during validation to verify that the model is learning.",
) )
parser.add_argument( parser.add_argument(
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment