From 1ccbfbb663399d3aa363af513e5a8352f3afdb35 Mon Sep 17 00:00:00 2001 From: Kuba Date: Fri, 15 Dec 2023 01:55:43 +0100 Subject: [PATCH] [docs] Add missing `\` in lora.md (#6174) --- docs/source/en/training/lora.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/en/training/lora.md b/docs/source/en/training/lora.md index 9ad088917d..b8ca21c4b3 100644 --- a/docs/source/en/training/lora.md +++ b/docs/source/en/training/lora.md @@ -179,7 +179,7 @@ accelerate launch --mixed_precision="fp16" train_text_to_image_lora.py \ --pretrained_model_name_or_path=$MODEL_NAME \ --dataset_name=$DATASET_NAME \ --dataloader_num_workers=8 \ - --resolution=512 + --resolution=512 \ --center_crop \ --random_flip \ --train_batch_size=1 \ @@ -214,4 +214,4 @@ image = pipeline("A pokemon with blue eyes").images[0] Congratulations on training a new model with LoRA! To learn more about how to use your new model, the following guides may be helpful: - Learn how to [load different LoRA formats](../using-diffusers/loading_adapters#LoRA) trained using community trainers like Kohya and TheLastBen. -- Learn how to use and [combine multiple LoRA's](../tutorials/using_peft_for_inference) with PEFT for inference. \ No newline at end of file +- Learn how to use and [combine multiple LoRA's](../tutorials/using_peft_for_inference) with PEFT for inference.