Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Flux Image-To-Image pipeline #1524

Merged
merged 5 commits into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions examples/stable-diffusion/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,27 @@ python image_to_image_generation.py \
--bf16
```

### FLUX.1 Image to Image

Here is how to generate FLUX.1 images with a single prompt and one input image:

```bash
python image_to_image_generation.py \
--model_name_or_path "black-forest-labs/FLUX.1-dev" \
--src_image_path "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png" \
--prompts "cat wizard, gandalf, lord of the rings, detailed, fantasy, cute, adorable, Pixar, Disney, 8k" \
--num_images_per_prompt 40 \
--batch_size 10 \
--strength 0.9 \
--guidance_scale 3.5 \
--num_inference_steps 30 \
--image_save_dir /tmp/flux_images \
--use_habana \
--use_hpu_graphs \
--gaudi_config Habana/stable-diffusion \
--bf16
```

### Stable Diffusion Image Variations

Here is how to generate images with one image, it does not accept prompt input
Expand Down
41 changes: 40 additions & 1 deletion examples/stable-diffusion/image_to_image_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
GaudiDDIMScheduler,
GaudiEulerAncestralDiscreteScheduler,
GaudiEulerDiscreteScheduler,
GaudiFlowMatchEulerDiscreteScheduler,
)
from optimum.habana.utils import set_seed

Expand Down Expand Up @@ -74,7 +75,7 @@ def main():
type=str,
nargs="*",
default=None,
help="The second prompt or prompts to guide the image generation (applicable to SDXL).",
help="The second prompt or prompts to guide the image generation (applicable to SDXL and FLUX).",
)
parser.add_argument(
"--num_images_per_prompt", type=int, default=1, help="The number of images to generate per prompt."
Expand All @@ -101,6 +102,18 @@ def main():
" of slower inference."
),
)
parser.add_argument(
"--strength",
type=float,
default=0.9,
help=(
"Applicable to FLUX. Indicates extent to transform the reference image. Must be between 0 and 1. Image is used as a"
" starting point and more noise is added the higher the `strength`. The number of denoising steps depends"
" on the amount of noise initially added. When `strength` is 1, added noise is maximum and the denoising"
" process runs for the full number of iterations specified in `num_inference_steps`. A value of 1 essentially"
" ignores reference image."
),
)
parser.add_argument(
"--guidance_scale",
type=float,
Expand Down Expand Up @@ -210,6 +223,9 @@ def main():
res["height"] = args.height
sdxl_models = ["stable-diffusion-xl", "sdxl"]
sdxl = False
flux_models = ["FLUX.1"]
flux = False

kwargs = {
"use_habana": args.use_habana,
"use_hpu_graphs": args.use_hpu_graphs,
Expand All @@ -221,6 +237,10 @@ def main():
from optimum.habana.diffusers import GaudiStableDiffusionXLImg2ImgPipeline as Img2ImgPipeline

sdxl = True
elif any(model in args.model_name_or_path for model in flux_models):
from optimum.habana.diffusers import GaudiFluxImg2ImgPipeline as Img2ImgPipeline

flux = True
elif "instruct-pix2pix" in args.model_name_or_path:
from optimum.habana.diffusers import GaudiStableDiffusionInstructPix2PixPipeline as Img2ImgPipeline

Expand Down Expand Up @@ -274,10 +294,14 @@ def main():
pipeline.scheduler = GaudiEulerAncestralDiscreteScheduler.from_config(pipeline.scheduler.config)
elif pipeline.scheduler.config._class_name == "EulerDiscreteScheduler":
pipeline.scheduler = GaudiEulerDiscreteScheduler.from_config(pipeline.scheduler.config)
elif pipeline.scheduler.config._class_name == "FlowMatchEulerDiscreteScheduler":
pipeline.scheduler = GaudiFlowMatchEulerDiscreteScheduler.from_config(pipeline.scheduler.config)
else:
pipeline.scheduler = GaudiDDIMScheduler.from_config(pipeline.scheduler.config)

# Set seed before running the model
set_seed(args.seed)

# Generate images
if sdxl:
outputs = pipeline(
Expand All @@ -296,6 +320,21 @@ def main():
profiling_steps=args.profiling_steps,
**res,
)
elif flux:
outputs = pipeline(
image=image,
prompt=args.prompts,
prompt_2=args.prompts_2,
num_images_per_prompt=args.num_images_per_prompt,
batch_size=args.batch_size,
num_inference_steps=args.num_inference_steps,
strength=args.strength,
guidance_scale=args.guidance_scale,
output_type=args.output_type,
profiling_warmup_steps=args.profiling_warmup_steps,
profiling_steps=args.profiling_steps,
**res,
)
else:
outputs = pipeline(
image=image,
Expand Down
2 changes: 0 additions & 2 deletions examples/stable-diffusion/text_to_image_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,10 +499,8 @@ def main():
elif flux:
# Flux pipelines
if controlnet:
# Import Flux+ControlNet pipeline
raise ValueError("Flux+ControlNet pipeline is not currenly supported")
elif inpainting:
# Import FLux Inpainting pipeline
raise ValueError("Flux Inpainting pipeline is not currenly supported")
else:
# Import Flux pipeline
Expand Down
1 change: 1 addition & 0 deletions optimum/habana/diffusers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
)
from .pipelines.ddpm.pipeline_ddpm import GaudiDDPMPipeline
from .pipelines.flux.pipeline_flux import GaudiFluxPipeline
from .pipelines.flux.pipeline_flux_img2img import GaudiFluxImg2ImgPipeline
from .pipelines.pipeline_utils import GaudiDiffusionPipeline
from .pipelines.stable_diffusion.pipeline_stable_diffusion import GaudiStableDiffusionPipeline
from .pipelines.stable_diffusion.pipeline_stable_diffusion_depth2img import GaudiStableDiffusionDepth2ImgPipeline
Expand Down
Loading