DarkMoonDragon
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -64,7 +64,14 @@ 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 =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
```
|
69 |
|
70 |
|
|
|
64 |
|
65 |
pipeline = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev")
|
66 |
pipeline.load_lora_weights("DarkMoonDragon/TurboRender-flux-dev")
|
67 |
+
image = pipe(
|
68 |
+
prompt="your prompt",
|
69 |
+
guidance_scale=3.5,
|
70 |
+
height=1024,
|
71 |
+
width=1024,
|
72 |
+
num_inference_steps=10,
|
73 |
+
generator=torch.Generator(device='cuda').manual_seed(0)
|
74 |
+
).images[0]
|
75 |
```
|
76 |
|
77 |
|