From f9b9c631778112758cbbf2f212050a35e6734672 Mon Sep 17 00:00:00 2001 From: xuyucai <986327386@qq.com> Date: Mon, 6 Apr 2026 22:40:50 +0800 Subject: [PATCH] =?UTF-8?q?Fix=20grammar=20in=20LoRA=20documentation=20(Lo?= =?UTF-8?q?RA's=20=E2=86=92=20LoRAs,=20trigger=20it=20=E2=86=92=20trigger?= =?UTF-8?q?=20them)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/source/en/quicktour.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/en/quicktour.md b/docs/source/en/quicktour.md index 1ccc8eeadcc2..897120aa2f87 100644 --- a/docs/source/en/quicktour.md +++ b/docs/source/en/quicktour.md @@ -101,9 +101,9 @@ export_to_video(video, "output.mp4", fps=16) ## LoRA -Adapters insert a small number of trainable parameters to the original base model. Only the inserted parameters are fine-tuned while the rest of the model weights remain frozen. This makes it fast and cheap to fine-tune a model on a new style. Among adapters, [LoRA's](./tutorials/using_peft_for_inference) are the most popular. +Adapters insert a small number of trainable parameters to the original base model. Only the inserted parameters are fine-tuned while the rest of the model weights remain frozen. This makes it fast and cheap to fine-tune a model on a new style. Among adapters, [LoRAs](./tutorials/using_peft_for_inference) are the most popular. -Add a LoRA to a pipeline with the [`~loaders.QwenImageLoraLoaderMixin.load_lora_weights`] method. Some LoRA's require a special word to trigger it, such as `Realism`, in the example below. Check a LoRA's model card to see if it requires a trigger word. +Add a LoRA to a pipeline with the [`~loaders.QwenImageLoraLoaderMixin.load_lora_weights`] method. Some LoRAs require a special word to trigger them, such as `Realism`, in the example below. Check a LoRA's model card to see if it requires a trigger word. ```py import torch