1
0
mirror of https://github.com/huggingface/diffusers.git synced 2026-01-29 07:22:12 +03:00

[docs] [dreambooth] note random crop (#2085)

* [docs] [dreambooth] note random crop

documenting default random crop behavior
This commit is contained in:
Will Berman
2023-01-24 08:37:34 -08:00
committed by GitHub
parent 16bb5058b9
commit febaf86302

View File

@@ -156,7 +156,10 @@ def parse_args(input_args=None):
),
)
parser.add_argument(
"--center_crop", action="store_true", help="Whether to center crop images before resizing to resolution"
"--center_crop",
default=False,
action="store_true",
help="Whether to center crop images before resizing to resolution. If not set, images are randomly cropped.",
)
parser.add_argument(
"--train_text_encoder",