Spaces:
Running on Zero
Running on Zero
File size: 15,856 Bytes
9e3b8ca | 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 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 | # Copyright 2026 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.
import torch
from transformers import Qwen2Tokenizer, Qwen3Model, T5TokenizerFast
from ...configuration_utils import FrozenDict
from ...guiders import ClassifierFreeGuidance
from ...image_processor import VaeImageProcessor
from ...models import AutoencoderKLQwenImage
from ..modular_pipeline import ModularPipelineBlocks, PipelineState
from ..modular_pipeline_utils import ComponentSpec, InputParam, OutputParam
from .modular_pipeline import AnimaModularPipeline
class AnimaTextEncoderStep(ModularPipelineBlocks):
model_name = "anima"
@property
def description(self) -> str:
return "Text encoder step that encodes Anima prompts into Qwen states and T5 token ids."
@property
def expected_components(self) -> list[ComponentSpec]:
return [
ComponentSpec("text_encoder", Qwen3Model),
ComponentSpec("tokenizer", Qwen2Tokenizer),
ComponentSpec("t5_tokenizer", T5TokenizerFast),
ComponentSpec(
"guider",
ClassifierFreeGuidance,
config=FrozenDict({"guidance_scale": 4.0}),
default_creation_method="from_config",
),
]
@property
def inputs(self) -> list[InputParam]:
return [
InputParam.template("prompt"),
InputParam.template("negative_prompt"),
InputParam.template("max_sequence_length"),
]
@property
def intermediate_outputs(self) -> list[OutputParam]:
return [
OutputParam(
"qwen_prompt_embeds",
type_hint=torch.Tensor,
description="Qwen prompt embeddings to be consumed by the Anima text conditioner.",
),
OutputParam(
"qwen_attention_mask",
type_hint=torch.Tensor,
description="Qwen prompt attention mask to be consumed by the Anima text conditioner.",
),
OutputParam(
"t5_input_ids",
type_hint=torch.Tensor,
description="T5 prompt token ids to be consumed by the Anima text conditioner.",
),
OutputParam(
"t5_attention_mask",
type_hint=torch.Tensor,
description="T5 prompt attention mask to be consumed by the Anima text conditioner.",
),
OutputParam(
"negative_qwen_prompt_embeds",
type_hint=torch.Tensor,
description="Negative Qwen prompt embeddings to be consumed by the Anima text conditioner.",
),
OutputParam(
"negative_qwen_attention_mask",
type_hint=torch.Tensor,
description="Negative Qwen prompt attention mask to be consumed by the Anima text conditioner.",
),
OutputParam(
"negative_t5_input_ids",
type_hint=torch.Tensor,
description="Negative T5 prompt token ids to be consumed by the Anima text conditioner.",
),
OutputParam(
"negative_t5_attention_mask",
type_hint=torch.Tensor,
description="Negative T5 prompt attention mask to be consumed by the Anima text conditioner.",
),
]
@staticmethod
def check_inputs(block_state):
if not isinstance(block_state.prompt, str) and not isinstance(block_state.prompt, list):
raise ValueError(f"`prompt` has to be of type `str` or `list` but is {type(block_state.prompt)}")
if block_state.max_sequence_length is not None and block_state.max_sequence_length > 4096:
raise ValueError(
f"`max_sequence_length` cannot be greater than 4096 but is {block_state.max_sequence_length}"
)
@staticmethod
def _get_qwen_prompt_embeds(
components: AnimaModularPipeline,
prompt: str | list[str],
max_sequence_length: int,
device: torch.device,
dtype: torch.dtype,
) -> tuple[torch.Tensor, torch.Tensor]:
prompt = [prompt] if isinstance(prompt, str) else prompt
text_inputs = components.tokenizer(
prompt,
padding="longest",
max_length=max_sequence_length,
truncation=True,
return_tensors="pt",
)
text_input_ids = text_inputs.input_ids.to(device)
prompt_attention_mask = text_inputs.attention_mask.to(device)
if text_input_ids.shape[-1] == 0:
text_input_ids = text_input_ids.new_zeros((text_input_ids.shape[0], 1))
prompt_attention_mask = prompt_attention_mask.new_zeros((prompt_attention_mask.shape[0], 1))
prompt_embeds = components.text_encoder(
input_ids=text_input_ids,
attention_mask=prompt_attention_mask,
output_hidden_states=False,
).last_hidden_state
prompt_embeds = prompt_embeds.to(dtype=dtype, device=device)
prompt_embeds = prompt_embeds * prompt_attention_mask.to(prompt_embeds).unsqueeze(-1)
return prompt_embeds, prompt_attention_mask
@staticmethod
def _get_t5_prompt_ids(
components: AnimaModularPipeline,
prompt: str | list[str],
max_sequence_length: int,
device: torch.device,
) -> tuple[torch.Tensor, torch.Tensor]:
prompt = [prompt] if isinstance(prompt, str) else prompt
text_inputs = components.t5_tokenizer(
prompt,
padding="longest",
max_length=max_sequence_length,
truncation=True,
return_tensors="pt",
)
return text_inputs.input_ids.to(device), text_inputs.attention_mask.to(device)
@classmethod
def encode_prompt(
cls,
components: AnimaModularPipeline,
prompt: str | list[str],
negative_prompt: str | list[str] | None = None,
prepare_unconditional_embeds: bool = True,
max_sequence_length: int = 512,
device: torch.device | None = None,
dtype: torch.dtype | None = None,
) -> dict[str, torch.Tensor | None]:
device = device or components._execution_device
dtype = dtype or components.text_encoder.dtype
prompt = [prompt] if isinstance(prompt, str) else prompt
batch_size = len(prompt)
prompt_embeds, prompt_attention_mask = cls._get_qwen_prompt_embeds(
components=components,
prompt=prompt,
max_sequence_length=max_sequence_length,
device=device,
dtype=dtype,
)
t5_input_ids, t5_attention_mask = cls._get_t5_prompt_ids(
components=components,
prompt=prompt,
max_sequence_length=max_sequence_length,
device=device,
)
negative_prompt_embeds = None
negative_prompt_attention_mask = None
negative_t5_input_ids = None
negative_t5_attention_mask = None
if prepare_unconditional_embeds:
negative_prompt = negative_prompt if negative_prompt is not None else ""
negative_prompt = batch_size * [negative_prompt] if isinstance(negative_prompt, str) else negative_prompt
if prompt is not None and type(prompt) is not type(negative_prompt):
raise TypeError(
f"`negative_prompt` should be the same type to `prompt`, but got {type(negative_prompt)} !="
f" {type(prompt)}."
)
if batch_size != len(negative_prompt):
raise ValueError(
f"`negative_prompt`: {negative_prompt} has batch size {len(negative_prompt)}, but `prompt`:"
f" {prompt} has batch size {batch_size}. Please make sure that passed `negative_prompt` matches"
" the batch size of `prompt`."
)
negative_prompt_embeds, negative_prompt_attention_mask = cls._get_qwen_prompt_embeds(
components=components,
prompt=negative_prompt,
max_sequence_length=max_sequence_length,
device=device,
dtype=dtype,
)
negative_t5_input_ids, negative_t5_attention_mask = cls._get_t5_prompt_ids(
components=components,
prompt=negative_prompt,
max_sequence_length=max_sequence_length,
device=device,
)
return {
"qwen_prompt_embeds": prompt_embeds,
"qwen_attention_mask": prompt_attention_mask,
"t5_input_ids": t5_input_ids,
"t5_attention_mask": t5_attention_mask,
"negative_qwen_prompt_embeds": negative_prompt_embeds,
"negative_qwen_attention_mask": negative_prompt_attention_mask,
"negative_t5_input_ids": negative_t5_input_ids,
"negative_t5_attention_mask": negative_t5_attention_mask,
}
@torch.no_grad()
def __call__(self, components: AnimaModularPipeline, state: PipelineState) -> PipelineState:
block_state = self.get_block_state(state)
self.check_inputs(block_state)
prompt_outputs = self.encode_prompt(
components=components,
prompt=block_state.prompt,
negative_prompt=block_state.negative_prompt,
prepare_unconditional_embeds=components.guider.num_conditions > 1,
max_sequence_length=block_state.max_sequence_length,
device=components._execution_device,
dtype=components.text_encoder.dtype,
)
for name, value in prompt_outputs.items():
setattr(block_state, name, value)
self.set_block_state(state, block_state)
return components, state
# Copied from diffusers.modular_pipelines.qwenimage.encoders.retrieve_latents
def retrieve_latents(
encoder_output: torch.Tensor, generator: torch.Generator | None = None, sample_mode: str = "sample"
):
if hasattr(encoder_output, "latent_dist") and sample_mode == "sample":
return encoder_output.latent_dist.sample(generator)
elif hasattr(encoder_output, "latent_dist") and sample_mode == "argmax":
return encoder_output.latent_dist.mode()
elif hasattr(encoder_output, "latents"):
return encoder_output.latents
else:
raise AttributeError("Could not access latents of provided encoder_output")
# Copied from diffusers.modular_pipelines.qwenimage.encoders.encode_vae_image
def encode_vae_image(
image: torch.Tensor,
vae: AutoencoderKLQwenImage,
generator: torch.Generator,
device: torch.device,
dtype: torch.dtype,
latent_channels: int = 16,
sample_mode: str = "argmax",
):
if not isinstance(image, torch.Tensor):
raise ValueError(f"Expected image to be a tensor, got {type(image)}.")
# preprocessed image should be a 4D tensor: batch_size, num_channels, height, width
if image.dim() == 4:
image = image.unsqueeze(2)
elif image.dim() != 5:
raise ValueError(f"Expected image dims 4 or 5, got {image.dim()}.")
image = image.to(device=device, dtype=dtype)
if isinstance(generator, list):
image_latents = [
retrieve_latents(vae.encode(image[i : i + 1]), generator=generator[i], sample_mode=sample_mode)
for i in range(image.shape[0])
]
image_latents = torch.cat(image_latents, dim=0)
else:
image_latents = retrieve_latents(vae.encode(image), generator=generator, sample_mode=sample_mode)
latents_mean = (
torch.tensor(vae.config.latents_mean)
.view(1, latent_channels, 1, 1, 1)
.to(image_latents.device, image_latents.dtype)
)
latents_std = (
torch.tensor(vae.config.latents_std)
.view(1, latent_channels, 1, 1, 1)
.to(image_latents.device, image_latents.dtype)
)
image_latents = (image_latents - latents_mean) / latents_std
return image_latents
class AnimaImg2ImgVaeEncoderStep(ModularPipelineBlocks):
"""VAE Encoder step for Anima image-to-image generation.
Preprocesses the input image and encodes it with the VAE, producing ``image_latents``. Timestep slicing is handled
downstream by ``AnimaImg2ImgSetTimestepsStep`` and noise addition by ``AnimaImg2ImgPrepareLatentsStep``.
Components:
vae (`AutoencoderKLQwenImage`) image_processor (`VaeImageProcessor`)
Inputs:
image (`PIL.Image.Image`):
Input image to encode.
height (`int`, *optional*):
Height of the output image. Defaults to pipeline default.
width (`int`, *optional*):
Width of the output image. Defaults to pipeline default.
generator (`Generator`, *optional*):
Torch generator for deterministic generation.
Outputs:
image_latents (`Tensor`):
Encoded image latents.
height (`int`):
Output image height.
width (`int`):
Output image width.
"""
model_name = "anima"
@property
def expected_components(self) -> list[ComponentSpec]:
return [
ComponentSpec("vae", AutoencoderKLQwenImage),
ComponentSpec(
"image_processor",
VaeImageProcessor,
config=FrozenDict({"vae_scale_factor": 8}),
default_creation_method="from_config",
),
]
@property
def description(self) -> str:
return (
"VAE Encoder step for Anima image-to-image generation. Encodes the input image to produce image_latents."
)
@property
def inputs(self) -> list[InputParam]:
return [
InputParam.template("image"),
InputParam.template("height"),
InputParam.template("width"),
InputParam.template("generator"),
]
@property
def intermediate_outputs(self) -> list[OutputParam]:
return [
OutputParam("image_latents", type_hint=torch.Tensor, description="Encoded image latents."),
OutputParam("height", type_hint=int, description="Image height used for generation."),
OutputParam("width", type_hint=int, description="Image width used for generation."),
]
@torch.no_grad()
def __call__(self, components: AnimaModularPipeline, state: PipelineState) -> PipelineState:
block_state = self.get_block_state(state)
device = components._execution_device
block_state.height = block_state.height or components.default_height
block_state.width = block_state.width or components.default_width
processed_image = components.image_processor.preprocess(
image=block_state.image, height=block_state.height, width=block_state.width
)
block_state.image_latents = encode_vae_image(
image=processed_image,
vae=components.vae,
generator=block_state.generator,
device=device,
dtype=components.vae.dtype,
latent_channels=components.num_channels_latents,
)
self.set_block_state(state, block_state)
return components, state
|