DarkMoonDragon
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -58,6 +58,14 @@ TurboRender-flux-dev generates better results compared to the original flux dev
|
|
58 |
|
59 |
The LoRA was trained in just 8 hours with 1x A100 GPU.
|
60 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
|
62 |
|
63 |
## Trigger words
|
|
|
58 |
|
59 |
The LoRA was trained in just 8 hours with 1x A100 GPU.
|
60 |
|
61 |
+
Usage example
|
62 |
+
``` python
|
63 |
+
from diffusers import DiffusionPipeline
|
64 |
+
|
65 |
+
pipeline = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev")
|
66 |
+
pipeline.load_lora_weights("DarkMoonDragon/TurboRender-flux-dev")
|
67 |
+
image = pipeline("your prompt").images[0]
|
68 |
+
```
|
69 |
|
70 |
|
71 |
## Trigger words
|