From 901917f59f9e34916e38751a9c64dcda0545f2c0 Mon Sep 17 00:00:00 2001 From: mrchatam Date: Sat, 12 Sep 2026 19:01:19 +0000 Subject: [PATCH] docs: fix 'allow to' grammar in text-to-image LoRA README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "allow to control" → "allow controlling". --- examples/text_to_image/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/text_to_image/README.md b/examples/text_to_image/README.md index d51a04414137..788c021b77f5 100644 --- a/examples/text_to_image/README.md +++ b/examples/text_to_image/README.md @@ -191,7 +191,7 @@ In a nutshell, LoRA allows adapting pretrained models by adding pairs of rank-de - Previous pretrained weights are kept frozen so that model is not prone to [catastrophic forgetting](https://www.pnas.org/doi/10.1073/pnas.1611835114). - Rank-decomposition matrices have significantly fewer parameters than original model, which means that trained LoRA weights are easily portable. -- LoRA attention layers allow to control to which extent the model is adapted toward new training images via a `scale` parameter. +- LoRA attention layers allow controlling to which extent the model is adapted toward new training images via a `scale` parameter. [cloneofsimo](https://github.com/cloneofsimo) was the first to try out LoRA training for Stable Diffusion in the popular [lora](https://github.com/cloneofsimo/lora) GitHub repository.