Skip to content

Commit

Permalink
[community pipeline rf-inversion] - fix example in doc (#10179)
Browse files Browse the repository at this point in the history
* fix example in doc

* remove redundancies

* change param
  • Loading branch information
linoytsaban authored Dec 10, 2024
1 parent 65b98b5 commit 43534a8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/community/pipeline_flux_rf_inversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@
Examples:
```py
>>> import torch
>>> from diffusers import FluxPipeline
>>> import requests
>>> import PIL
>>> from io import BytesIO
>>> from diffusers import DiffusionPipeline
>>> pipe = DiffusionPipeline.from_pretrained(
... "black-forest-labs/FLUX.1-dev",
Expand All @@ -77,10 +80,7 @@
... image_latents=image_latents,
... latent_image_ids=latent_image_ids,
... start_timestep=0,
... stop_timestep=.38,
... num_inference_steps=28,
... eta=0.9,
... stop_timestep=.38,
... stop_timestep=.25,
... num_inference_steps=28,
... eta=0.9,
... ).images[0]
Expand Down

0 comments on commit 43534a8

Please sign in to comment.