We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65b98b5 commit 43534a8Copy full SHA for 43534a8
examples/community/pipeline_flux_rf_inversion.py
@@ -53,7 +53,10 @@
53
Examples:
54
```py
55
>>> import torch
56
- >>> from diffusers import FluxPipeline
+ >>> import requests
57
+ >>> import PIL
58
+ >>> from io import BytesIO
59
+ >>> from diffusers import DiffusionPipeline
60
61
>>> pipe = DiffusionPipeline.from_pretrained(
62
... "black-forest-labs/FLUX.1-dev",
@@ -77,10 +80,7 @@
77
80
... image_latents=image_latents,
78
81
... latent_image_ids=latent_image_ids,
79
82
... start_timestep=0,
- ... stop_timestep=.38,
- ... num_inference_steps=28,
- ... eta=0.9,
83
+ ... stop_timestep=.25,
84
... num_inference_steps=28,
85
... eta=0.9,
86
... ).images[0]
0 commit comments