1
0
mirror of https://github.com/huggingface/diffusers.git synced 2026-01-27 17:22:53 +03:00

Rename output_dir argument (#5916)

Fix typo in output_dir argument: "text-inversion-model" → "dreambooth-model"
This commit is contained in:
Linh Nguyen
2023-11-29 21:47:16 +07:00
committed by GitHub
parent 79dc7df03e
commit 636feba552

View File

@@ -300,7 +300,7 @@ def parse_args(input_args=None):
parser.add_argument(
"--output_dir",
type=str,
default="text-inversion-model",
default="dreambooth-model",
help="The output directory where the model predictions and checkpoints will be written.",
)
parser.add_argument("--seed", type=int, default=None, help="A seed for reproducible training.")