From 636feba552ab1f9a1ecdd3748e1245fa45b76d0d Mon Sep 17 00:00:00 2001 From: Linh Nguyen <89931753+linhqyy@users.noreply.github.com> Date: Wed, 29 Nov 2023 21:47:16 +0700 Subject: [PATCH] Rename output_dir argument (#5916) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix typo in output_dir argument: "text-inversion-model" → "dreambooth-model" --- examples/dreambooth/train_dreambooth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/dreambooth/train_dreambooth.py b/examples/dreambooth/train_dreambooth.py index 4185450114..c3f19efbdc 100644 --- a/examples/dreambooth/train_dreambooth.py +++ b/examples/dreambooth/train_dreambooth.py @@ -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.")