Spaces:
Running on Zero
Running on Zero
File size: 8,476 Bytes
cd458ae | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | # Copyright 2026 Ideogram AI and The HuggingFace Team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from ...utils import logging
from ..modular_pipeline import SequentialPipelineBlocks
from ..modular_pipeline_utils import InsertableDict, OutputParam
from .before_denoise import (
Ideogram4PrepareAdditionalInputsStep,
Ideogram4PrepareLatentsStep,
Ideogram4SetTimestepsStep,
Ideogram4TextInputsStep,
)
from .decoders import Ideogram4DecodeStep
from .denoise import Ideogram4AfterDenoiseStep, Ideogram4DenoiseStep
from .encoders import Ideogram4PromptUpsampleStep, Ideogram4TextEncoderStep
logger = logging.get_logger(__name__) # pylint: disable=invalid-name
# Core denoise: consumes the per-prompt text features and produces the unpatchified latents
# (batch/latents/timesteps/ids inputs -> denoising loop -> unpatchify).
CORE_DENOISE_BLOCKS = InsertableDict(
[
("input", Ideogram4TextInputsStep()),
("prepare_latents", Ideogram4PrepareLatentsStep()),
("set_timesteps", Ideogram4SetTimestepsStep()),
("prepare_additional_inputs", Ideogram4PrepareAdditionalInputsStep()),
("denoise", Ideogram4DenoiseStep()),
("after_denoise", Ideogram4AfterDenoiseStep()),
]
)
# auto_docstring
class Ideogram4CoreDenoiseStep(SequentialPipelineBlocks):
"""
Core denoising workflow for Ideogram4 text-to-image: prepares the batch/latents/timesteps and the packed denoiser
inputs, runs the asymmetric-CFG denoising loop over the conditional and unconditional transformers, and
unpatchifies the result for the decoder.
Components:
transformer (`Ideogram4Transformer2DModel`) scheduler (`FlowMatchEulerDiscreteScheduler`)
unconditional_transformer (`Ideogram4Transformer2DModel`)
Inputs:
num_images_per_prompt (`int`, *optional*, defaults to 1):
The number of images to generate per prompt.
text_features (`Tensor`):
Per-prompt text features from the encoder.
text_lengths (`list`):
Per-prompt text-token counts from the encoder.
latents (`Tensor`, *optional*):
Pre-generated noisy latents for image generation.
height (`int`):
The height in pixels of the generated image.
width (`int`):
The width in pixels of the generated image.
generator (`Generator`, *optional*):
Torch generator for deterministic generation.
num_inference_steps (`int`, *optional*, defaults to 48):
The number of denoising steps.
mu (`float`, *optional*, defaults to 0.0):
Base mean of the logit-normal schedule.
std (`float`, *optional*, defaults to 1.5):
Std of the logit-normal schedule.
guidance_schedule (`list`, *optional*, defaults to (7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0,
7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0,
7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 3.0, 3.0, 3.0)):
Per-step guidance scale schedule (length num_inference_steps).
Outputs:
latents (`Tensor`):
Unpatchified (B, ae_channels, H, W) latents.
"""
model_name = "ideogram4"
block_classes = list(CORE_DENOISE_BLOCKS.values())
block_names = list(CORE_DENOISE_BLOCKS.keys())
@property
def description(self) -> str:
return (
"Core denoising workflow for Ideogram4 text-to-image: prepares the batch/latents/timesteps and the packed "
"denoiser inputs, runs the asymmetric-CFG denoising loop over the conditional and unconditional "
"transformers, and unpatchifies the result for the decoder."
)
@property
def outputs(self) -> list[OutputParam]:
# The only meaningful product of the core step is the unpatchified latents; the batch/timesteps/packed-sequence
# inputs prepared along the way are consumed within the loop and are not updated by it.
return [OutputParam.template("latents", description="Unpatchified (B, ae_channels, H, W) latents.")]
# auto_docstring
class Ideogram4AutoBlocks(SequentialPipelineBlocks):
"""
Auto Modular pipeline for text-to-image generation using Ideogram4: (optional) prompt upsampling -> encode text ->
core denoise (asymmetric CFG over two transformers) -> decode.
Supported workflows:
- `text2image`: requires `prompt`
Components:
text_encoder (`Qwen3VLModel`): The Qwen3-VL text encoder. tokenizer (`Qwen2Tokenizer`): The tokenizer paired
with the text encoder. prompt_enhancer_head (`Ideogram4PromptEnhancerHead`): LM head grafted onto the text
encoder for prompt upsampling. transformer (`Ideogram4Transformer2DModel`) scheduler
(`FlowMatchEulerDiscreteScheduler`) unconditional_transformer (`Ideogram4Transformer2DModel`) vae
(`AutoencoderKLFlux2`) image_processor (`VaeImageProcessor`)
Inputs:
prompt (`str`):
The prompt or prompts to guide image generation.
prompt_upsampling (`bool`, *optional*, defaults to False):
If True, rewrite the prompt into Ideogram4's native JSON caption before encoding.
prompt_upsampling_temperature (`float`, *optional*, defaults to 1.0):
Sampling temperature for prompt upsampling.
height (`int`, *optional*):
The height in pixels of the generated image.
width (`int`, *optional*):
The width in pixels of the generated image.
max_sequence_length (`int`, *optional*, defaults to 2048):
Maximum sequence length for prompt encoding.
generator (`Generator`, *optional*):
Torch generator for deterministic generation.
num_images_per_prompt (`int`, *optional*, defaults to 1):
The number of images to generate per prompt.
latents (`Tensor`, *optional*):
Pre-generated noisy latents for image generation.
num_inference_steps (`int`, *optional*, defaults to 48):
The number of denoising steps.
mu (`float`, *optional*, defaults to 0.0):
Base mean of the logit-normal schedule.
std (`float`, *optional*, defaults to 1.5):
Std of the logit-normal schedule.
guidance_schedule (`list`, *optional*, defaults to (7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0,
7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0,
7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 3.0, 3.0, 3.0)):
Per-step guidance scale schedule (length num_inference_steps).
output_type (`str`, *optional*, defaults to pil):
Output format: 'pil', 'np', 'pt'.
Outputs:
images (`list`):
Generated images.
"""
model_name = "ideogram4"
block_classes = [
Ideogram4PromptUpsampleStep(),
Ideogram4TextEncoderStep(),
Ideogram4CoreDenoiseStep(),
Ideogram4DecodeStep(),
]
block_names = ["prompt_upsample", "text_encoder", "denoise", "decode"]
# Workflow map declaring the trigger conditions for each supported workflow.
# `True` means the workflow triggers when the input is not None.
_workflow_map = {
"text2image": {"prompt": True},
}
@property
def description(self) -> str:
return (
"Auto Modular pipeline for text-to-image generation using Ideogram4: (optional) prompt upsampling -> "
"encode text -> core denoise (asymmetric CFG over two transformers) -> decode."
)
@property
def outputs(self) -> list[OutputParam]:
return [OutputParam.template("images")]
|