Flux Compilation
Multi Mode Control Net
FluxPipeline provides support for multiple image generation pipelines with and without controlnets, including text-to-image (txt2img), image-to-image (img2img), and inpainting.
Important Note
Ensure that a volume mount
is added to the deployment, as all images generated are dumped inside /data/outputs
directory in the container.
Model Optimization Configuration
Optimization Settings
For optimization, under the optimization config, use:
- Higher threshold values result in greater speed gains but may degrade image generation accuracy.
- We recommend a threshold of 0.1, which can provide up to a 40% speed improvement during inference while maintaining reasonable quality.
Pipeline Settings
For optimization, under the optimization config, use:
- Multi-mode ControlNet model can be added under the controlnets section.
- Each ControlNet model requires a name, source, and authentication details if needed.
- Instead of using multiple single-mode ControlNets, all conditioning sources are unified within a single model.
Current Limitations
- Supports only one multi-mode ControlNet model.
- Does not support multi-mode ControlNet with additional single-mode ControlNets.
- This means if using a multi-mode model (FLUX.1-dev-ControlNet-Union-Pro), you cannot combine it with other standalone ControlNets.
Understanding ControlNet Parameters
When using MultiMode Controlnet, these parameters define the multi-mode behavior:
Parameter | Description |
---|---|
control_image | List of images used as conditioning (e.g., depth map, canny edges). |
controlnet_conditioning_scale | List of scaling factors for each conditioning image. |
control_mode | Defines the influence level for each control image. |
Supported Pipelines
- txt2img - Generates an image from text input.
- txt2img_controlnet - Generates an image based on an input image and a given prompt.
- img2img - Modifies specific regions of an image based on a mask and a given prompt.
- img2img_controlnet - Generates an image based on an input image and a given prompt with controlnet support.
- inpaint - Modifies specific regions of an image based on a mask and a given prompt.
- inpaint_controlnet - Modifies specific regions of an image based on a mask and a given prompt with controlnet support.
Example Requests
txt2img
txt2img_controlnet
img2img
img2img_controlnet
Note : Currently num_images_per_prompt = 1
is supported.
inpaint
inpaint_controlnet
Note : Currently num_images_per_prompt = 1
is supported.
Example Response
Key Notes
- Ensure volume mounting in deployment for image storage.
- ControlNet models are
not loaded by default
. - Ensure all 3
control_
params are sent out in request. - Supports
multiple pipelines
for text-to-image, image-to-image, and inpainting.