You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/en/training/lora.md
+50Lines changed: 50 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -378,6 +378,56 @@ images_fusion = pipe(
378
378
).images
379
379
```
380
380
381
+
## Working with multiple LoRA checkpoints
382
+
383
+
With the `fuse_lora()` method as described above, it's possible to load multiple LoRA checkpoints. Let's work through a complete example. First we load the base pipeline:
384
+
385
+
```python
386
+
from diffusers import StableDiffusionXLPipeline, AutoencoderKL
Currently, unfusing multiple LoRA checkpoints is not possible.
428
+
429
+
</Tip>
430
+
381
431
## Supporting different LoRA checkpoints from Diffusers
382
432
383
433
🤗 Diffusers supports loading checkpoints from popular LoRA trainers such as [Kohya](https://github.com/kohya-ss/sd-scripts/) and [TheLastBen](https://github.com/TheLastBen/fast-stable-diffusion). In this section, we outline the current API's details and limitations.
0 commit comments