File size: 25,558 Bytes
13a8699 |
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 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 |
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# 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 gc
import os
from typing import Any, Optional
import numpy as np
import torch
from .base_world_generation_pipeline import BaseWorldGenerationPipeline
from .inference_utils import (
generate_world_from_text,
generate_world_from_video,
get_condition_latent,
get_video_batch,
load_model_by_config,
load_network_model,
load_tokenizer_model,
)
from .model_t2w import DiffusionT2WModel
from .model_v2w import DiffusionV2WModel
from .text2world_prompt_upsampler_inference import (
create_prompt_upsampler,
run_chat_completion,
)
from .video2world_prompt_upsampler_inference import (
create_vlm_prompt_upsampler,
prepare_dialog,
)
from .video2world_prompt_upsampler_inference import (
run_chat_completion as run_chat_completion_vlm,
)
from .log import log
MODEL_NAME_DICT = {
"Cosmos-1.0-Diffusion-7B-Text2World": "Cosmos_1_0_Diffusion_Text2World_7B",
"Cosmos-1.0-Diffusion-14B-Text2World": "Cosmos_1_0_Diffusion_Text2World_14B",
"Cosmos-1.0-Diffusion-7B-Video2World": "Cosmos_1_0_Diffusion_Video2World_7B",
"Cosmos-1.0-Diffusion-14B-Video2World": "Cosmos_1_0_Diffusion_Video2World_14B",
}
class DiffusionText2WorldGenerationPipeline(BaseWorldGenerationPipeline):
def __init__(
self,
inference_type: str,
checkpoint_dir: str,
checkpoint_name: str,
prompt_upsampler_dir: Optional[str] = None,
enable_prompt_upsampler: bool = True,
enable_text_guardrail: bool = True,
enable_video_guardrail: bool = True,
offload_network: bool = False,
offload_tokenizer: bool = False,
offload_text_encoder_model: bool = False,
offload_prompt_upsampler: bool = False,
offload_guardrail_models: bool = False,
guidance: float = 7.0,
num_steps: int = 35,
height: int = 704,
width: int = 1280,
fps: int = 24,
num_video_frames: int = 121,
seed: int = 0,
):
"""Initialize the diffusion world generation pipeline.
Args:
inference_type: Type of world generation ('text2world' or 'video2world')
checkpoint_dir: Base directory containing model checkpoints
checkpoint_name: Name of the diffusion transformer checkpoint to use
prompt_upsampler_dir: Directory containing prompt upsampler model weights
enable_prompt_upsampler: Whether to use prompt upsampling
enable_text_guardrail: Whether to enable text guardrail
enable_video_guardrail: Whether to enable video guardrail
offload_network: Whether to offload diffusion transformer after inference
offload_tokenizer: Whether to offload tokenizer after inference
offload_text_encoder_model: Whether to offload T5 model after inference
offload_prompt_upsampler: Whether to offload prompt upsampler
offload_guardrail_models: Whether to offload guardrail models
guidance: Classifier-free guidance scale
num_steps: Number of diffusion sampling steps
height: Height of output video
width: Width of output video
fps: Frames per second of output video
num_video_frames: Number of frames to generate
seed: Random seed for sampling
"""
assert inference_type in [
"text2world",
"video2world",
], "Invalid inference_type, must be 'text2world' or 'video2world'"
self.model_name = MODEL_NAME_DICT[checkpoint_name]
self.guidance = guidance
self.num_steps = num_steps
self.height = height
self.width = width
self.fps = fps
self.num_video_frames = num_video_frames
self.seed = seed
super().__init__(
inference_type=inference_type,
checkpoint_dir=checkpoint_dir,
checkpoint_name=checkpoint_name,
enable_text_guardrail=enable_text_guardrail,
enable_video_guardrail=enable_video_guardrail,
offload_network=offload_network,
offload_tokenizer=offload_tokenizer,
offload_text_encoder_model=offload_text_encoder_model,
offload_guardrail_models=offload_guardrail_models,
)
self.prompt_upsampler_dir = prompt_upsampler_dir
self.enable_prompt_upsampler = enable_prompt_upsampler
self.offload_prompt_upsampler = offload_prompt_upsampler
self.prompt_upsampler = None
if enable_prompt_upsampler and not offload_prompt_upsampler:
self._load_prompt_upsampler_model()
def _load_prompt_upsampler_model(self):
self.prompt_upsampler = create_prompt_upsampler(
checkpoint_dir=os.path.join(self.checkpoint_dir, self.prompt_upsampler_dir),
)
def _load_model(self):
self.model = load_model_by_config(
config_job_name=self.model_name,
config_file="df_config_config.py",
model_class=DiffusionT2WModel,
)
def _load_network(self):
load_network_model(self.model, f"{self.checkpoint_dir}/{self.checkpoint_name}/model.pt")
def _load_tokenizer(self):
load_tokenizer_model(self.model, f"{self.checkpoint_dir}/Cosmos-1.0-Tokenizer-CV8x8x8")
def _offload_prompt_upsampler_model(self):
"""Move prompt enhancement model to CPU/disk.
Offloads prompt upsampling model after processing input
to reduce GPU memory usage.
"""
if self.prompt_upsampler:
del self.prompt_upsampler
self.prompt_upsampler = None
gc.collect()
torch.cuda.empty_cache()
def _run_prompt_upsampler_on_prompt(self, prompt: str) -> str:
"""Enhance the input prompt using the prompt upsampler model.
Args:
prompt: Raw text prompt to be enhanced
Returns:
str: Enhanced version of the input prompt with more descriptive details
"""
upsampled_prompt = run_chat_completion(self.prompt_upsampler, prompt)
log.info(f"Upsampled prompt: {upsampled_prompt}")
return upsampled_prompt
def _run_prompt_upsampler_on_prompt_with_offload(self, *args: Any, **kwargs: Any) -> str:
"""Enhance prompt with prompt upsampler model.
Args:
*args: Positional arguments
**kwargs: Keyword arguments
Returns:
Enhanced prompt string
"""
if self.offload_prompt_upsampler:
self._load_prompt_upsampler_model()
enhanced_prompt = self._run_prompt_upsampler_on_prompt(*args, **kwargs)
if self.offload_prompt_upsampler:
self._offload_prompt_upsampler_model()
return enhanced_prompt
def _run_tokenizer_decoding(self, sample: torch.Tensor) -> np.ndarray:
"""Decode latent samples to video frames using the tokenizer decoder.
Args:
sample: Latent tensor from diffusion model [B, C, T, H, W]
Returns:
np.ndarray: Decoded video frames as uint8 numpy array [T, H, W, C]
with values in range [0, 255]
"""
# Decode video
video = (1.0 + self.model.decode(sample)).clamp(0, 2) / 2 # [B, 3, T, H, W]
video = (video[0].permute(1, 2, 3, 0) * 255).to(torch.uint8).cpu().numpy()
return video
def _run_model(
self,
embedding: torch.Tensor,
negative_prompt_embedding: Optional[torch.Tensor] = None,
) -> torch.Tensor:
"""Generate video latents using the diffusion model.
Args:
embedding: Text embedding tensor from text encoder
negative_prompt_embedding: Optional embedding for negative prompt guidance
Returns:
torch.Tensor: Generated video latents before tokenizer decoding
Note:
The model and tokenizer are automatically offloaded after inference
if offloading is enabled in the config.
"""
# Get video batch and state shape
data_batch, state_shape = get_video_batch(
model=self.model,
prompt_embedding=embedding,
negative_prompt_embedding=negative_prompt_embedding,
height=self.height,
width=self.width,
fps=self.fps,
num_video_frames=self.num_video_frames,
)
# Generate video frames
sample = generate_world_from_text(
model=self.model,
state_shape=state_shape,
is_negative_prompt=True if negative_prompt_embedding is not None else False,
data_batch=data_batch,
guidance=self.guidance,
num_steps=self.num_steps,
seed=self.seed,
)
return sample
def _run_model_with_offload(
self, prompt_embedding: torch.Tensor, negative_prompt_embedding: Optional[torch.Tensor] = None
) -> np.ndarray:
"""Generate world representation with automatic model offloading.
Wraps the core generation process with model loading/offloading logic
to minimize GPU memory usage during inference.
Args:
*args: Positional arguments passed to _run_model
**kwargs: Keyword arguments passed to _run_model
Returns:
np.ndarray: Generated world representation as numpy array
"""
if self.offload_network:
self._load_network()
if self.offload_tokenizer:
self._load_tokenizer()
sample = self._run_model(prompt_embedding, negative_prompt_embedding)
if self.offload_network:
self._offload_network()
if self.offload_tokenizer:
self._load_tokenizer()
sample = self._run_tokenizer_decoding(sample)
if self.offload_tokenizer:
self._offload_tokenizer()
return sample
def generate(
self,
prompt: str,
negative_prompt: Optional[str] = None,
word_limit_to_skip_upsampler: Optional[int] = None,
) -> tuple[np.ndarray, str] | None:
"""Generate video from text prompt with optional negative prompt guidance.
Pipeline steps:
1. Run safety checks on input prompt
2. Enhance prompt using upsampler if enabled
3. Run safety checks on upsampled prompt if applicable
4. Convert prompt to embeddings
5. Generate video frames using diffusion
6. Run safety checks and apply face blur on generated video frames
Args:
prompt: Text description of desired video
negative_prompt: Optional text to guide what not to generate
word_limit_to_skip_upsampler: Skip prompt upsampler for better robustness if the number of words in the prompt is greater than this value
Returns:
tuple: (
Generated video frames as uint8 np.ndarray [T, H, W, C],
Final prompt used for generation (may be enhanced)
), or None if content fails guardrail safety checks
"""
log.info(f"Run with prompt: {prompt}")
log.info(f"Run with negative prompt: {negative_prompt}")
log.info(f"Run with prompt upsampler: {self.enable_prompt_upsampler}")
if self.enable_text_guardrail:
log.info("Run guardrail on prompt")
is_safe = self._run_guardrail_on_prompt_with_offload(prompt)
if not is_safe:
log.critical("Input text prompt is not safe")
return None
log.info("Pass guardrail on prompt")
# Enhance prompt
if self.enable_prompt_upsampler:
word_count = len(prompt.split())
if word_limit_to_skip_upsampler is None or word_count <= word_limit_to_skip_upsampler:
log.info("Run prompt upsampler on prompt")
prompt = self._run_prompt_upsampler_on_prompt_with_offload(prompt)
if self.enable_text_guardrail:
log.info("Run guardrail on upsampled prompt")
is_safe = self._run_guardrail_on_prompt_with_offload(prompt=prompt)
if not is_safe:
log.critical("Upsampled text prompt is not safe")
return None
log.info("Pass guardrail on upsampled prompt")
else:
log.info(
f"Skip prompt upsampler for better robustness because the number of words ({word_count}) in the prompt is greater than {word_limit_to_skip_upsampler}"
)
log.info("Run text embedding on prompt")
if negative_prompt:
prompts = [prompt, negative_prompt]
else:
prompts = [prompt]
prompt_embeddings, _ = self._run_text_embedding_on_prompt_with_offload(prompts)
prompt_embedding = prompt_embeddings[0]
negative_prompt_embedding = prompt_embeddings[1] if negative_prompt else None
log.info("Finish text embedding on prompt")
# Generate video
log.info("Run generation")
video = self._run_model_with_offload(
prompt_embedding,
negative_prompt_embedding=negative_prompt_embedding,
)
log.info("Finish generation")
if self.enable_video_guardrail:
log.info("Run guardrail on generated video")
video = self._run_guardrail_on_video_with_offload(video)
if video is None:
log.critical("Generated video is not safe")
return None
log.info("Pass guardrail on generated video")
return video, prompt
class DiffusionVideo2WorldGenerationPipeline(DiffusionText2WorldGenerationPipeline):
def __init__(
self,
inference_type: str,
checkpoint_dir: str,
checkpoint_name: str,
prompt_upsampler_dir: Optional[str] = None,
enable_prompt_upsampler: bool = True,
enable_text_guardrail: bool = True,
enable_video_guardrail: bool = True,
offload_network: bool = False,
offload_tokenizer: bool = False,
offload_text_encoder_model: bool = False,
offload_prompt_upsampler: bool = False,
offload_guardrail_models: bool = False,
guidance: float = 7.0,
num_steps: int = 35,
height: int = 704,
width: int = 1280,
fps: int = 24,
num_video_frames: int = 121,
seed: int = 0,
num_input_frames: int = 1,
):
"""Initialize diffusion world generation pipeline.
Args:
inference_type: Type of world generation ('text2world' or 'video2world')
checkpoint_dir: Base directory containing model checkpoints
checkpoint_name: Name of the diffusion transformer checkpoint to use
prompt_upsampler_dir: Directory containing prompt upsampler model weights
enable_prompt_upsampler: Whether to use prompt upsampling
enable_text_guardrail: Whether to enable text guardrail
enable_video_guardrail: Whether to enable video guardrail
offload_network: Whether to offload diffusion transformer after inference
offload_tokenizer: Whether to offload tokenizer after inference
offload_text_encoder_model: Whether to offload T5 model after inference
offload_prompt_upsampler: Whether to offload prompt upsampler
offload_guardrail_models: Whether to offload guardrail models
guidance: Classifier-free guidance scale
num_steps: Number of diffusion sampling steps
height: Height of output video
width: Width of output video
fps: Frames per second of output video
num_video_frames: Number of frames to generate
seed: Random seed for sampling
num_input_frames: Number of latent conditions
"""
self.num_input_frames = num_input_frames
super().__init__(
inference_type=inference_type,
checkpoint_dir=checkpoint_dir,
checkpoint_name=checkpoint_name,
prompt_upsampler_dir=prompt_upsampler_dir,
enable_prompt_upsampler=enable_prompt_upsampler,
enable_text_guardrail=enable_text_guardrail,
enable_video_guardrail=enable_video_guardrail,
offload_network=offload_network,
offload_tokenizer=offload_tokenizer,
offload_text_encoder_model=offload_text_encoder_model,
offload_prompt_upsampler=offload_prompt_upsampler,
offload_guardrail_models=offload_guardrail_models,
guidance=guidance,
num_steps=num_steps,
height=height,
width=width,
fps=fps,
num_video_frames=num_video_frames,
seed=seed,
)
def _run_prompt_upsampler_on_prompt(self, image_or_video_path: str) -> str:
"""Enhance the input prompt using visual context from the conditioning image.
Args:
image_or_video_path: Path to conditioning image or video used for visual context
Returns:
str: Enhanced prompt incorporating visual details from the image
"""
dialog = prepare_dialog(image_or_video_path)
upsampled_prompt = run_chat_completion_vlm(
self.prompt_upsampler, dialog, max_gen_len=400, temperature=0.01, top_p=0.9, logprobs=False
)
log.info(f"Upsampled prompt: {upsampled_prompt}")
return upsampled_prompt
def _load_prompt_upsampler_model(self):
self.prompt_upsampler = create_vlm_prompt_upsampler(
checkpoint_dir=os.path.join(self.checkpoint_dir, self.prompt_upsampler_dir),
)
def _load_model(self):
self.model = load_model_by_config(
config_job_name=self.model_name,
config_file="df_config_config.py",
model_class=DiffusionV2WModel,
)
def _run_model(
self,
embedding: torch.Tensor,
condition_latent: torch.Tensor,
negative_prompt_embedding: torch.Tensor | None = None,
) -> torch.Tensor:
"""Generate video frames using the diffusion model.
Args:
embedding: Text embedding tensor from T5 encoder
condition_latent: Latent tensor from conditioning image or video
negative_prompt_embedding: Optional embedding for negative prompt guidance
Returns:
Tensor of generated video frames
Note:
Model and tokenizer are automatically offloaded after inference
if offloading is enabled.
"""
# Get video batch and state shape
data_batch, state_shape = get_video_batch(
model=self.model,
prompt_embedding=embedding,
negative_prompt_embedding=negative_prompt_embedding,
height=self.height,
width=self.width,
fps=self.fps,
num_video_frames=self.num_video_frames,
)
# Generate video frames
video = generate_world_from_video(
model=self.model,
state_shape=self.model.state_shape,
is_negative_prompt=True,
data_batch=data_batch,
guidance=self.guidance,
num_steps=self.num_steps,
seed=self.seed,
condition_latent=condition_latent,
num_input_frames=self.num_input_frames,
)
return video
def _run_tokenizer_encoding(self, image_or_video_path: str) -> torch.Tensor:
"""
Encode image to latent space
Args:
image_or_video_path: Path to conditioning image
Returns:
torch.Tensor: Latent tensor from tokenizer encoding
"""
condition_latent = get_condition_latent(
model=self.model,
input_image_or_video_path=image_or_video_path,
num_input_frames=self.num_input_frames,
state_shape=self.model.state_shape,
)
return condition_latent
def _run_model_with_offload(
self,
prompt_embedding: torch.Tensor,
image_or_video_path: str,
negative_prompt_embedding: Optional[torch.Tensor] = None,
) -> np.ndarray:
"""Generate world representation with automatic model offloading.
Wraps the core generation process with model loading/offloading logic
to minimize GPU memory usage during inference.
Args:
prompt_embedding: Text embedding tensor from T5 encoder
image_or_video_path: Path to conditioning image or video
negative_prompt_embedding: Optional embedding for negative prompt guidance
Returns:
np.ndarray: Generated world representation as numpy array
"""
if self.offload_tokenizer:
self._load_tokenizer()
condition_latent = self._run_tokenizer_encoding(image_or_video_path)
if self.offload_network:
self._load_network()
sample = self._run_model(prompt_embedding, condition_latent, negative_prompt_embedding)
if self.offload_network:
self._offload_network()
sample = self._run_tokenizer_decoding(sample)
if self.offload_tokenizer:
self._offload_tokenizer()
return sample
def generate(
self,
prompt: str,
image_or_video_path: str,
negative_prompt: Optional[str] = None,
) -> tuple[np.ndarray, str] | None:
"""Generate video from text prompt and optional image.
Pipeline steps:
1. Run safety checks on input prompt
2. Enhance prompt using upsampler if enabled
3. Run safety checks on upsampled prompt if applicable
4. Convert prompt to embeddings
5. Generate video frames using diffusion
6. Run safety checks and apply face blur on generated video frames
Args:
prompt: Text description of desired video
image_or_video_path: Path to conditioning image or video
negative_prompt: Optional text to guide what not to generate
Returns:
tuple: (
Generated video frames as uint8 np.ndarray [T, H, W, C],
Final prompt used for generation (may be enhanced)
), or None if content fails guardrail safety checks
"""
log.info(f"Run with prompt: {prompt}")
log.info(f"Run with image or video path: {image_or_video_path}")
log.info(f"Run with negative prompt: {negative_prompt}")
log.info(f"Run with prompt upsampler: {self.enable_prompt_upsampler}")
if self.enable_text_guardrail and not self.enable_prompt_upsampler:
log.info("Run guardrail on prompt")
is_safe = self._run_guardrail_on_prompt_with_offload(prompt)
if not is_safe:
log.critical("Input text prompt is not safe")
return None
log.info("Pass guardrail on prompt")
# Enhance prompt
if self.enable_prompt_upsampler:
log.info("Run prompt upsampler on image or video, input prompt is not used")
prompt = self._run_prompt_upsampler_on_prompt_with_offload(image_or_video_path=image_or_video_path)
if self.enable_text_guardrail:
log.info("Run guardrail on upsampled prompt")
is_safe = self._run_guardrail_on_prompt_with_offload(prompt)
if not is_safe:
log.critical("Upsampled text prompt is not safe")
return None
log.info("Pass guardrail on upsampled prompt")
log.info("Run text embedding on prompt")
if negative_prompt:
prompts = [prompt, negative_prompt]
else:
prompts = [prompt]
prompt_embeddings, _ = self._run_text_embedding_on_prompt_with_offload(prompts)
prompt_embedding = prompt_embeddings[0]
negative_prompt_embedding = prompt_embeddings[1] if negative_prompt else None
log.info("Finish text embedding on prompt")
# Generate video
log.info("Run generation")
video = self._run_model_with_offload(
prompt_embedding,
negative_prompt_embedding=negative_prompt_embedding,
image_or_video_path=image_or_video_path,
)
log.info("Finish generation")
if self.enable_video_guardrail:
log.info("Run guardrail on generated video")
video = self._run_guardrail_on_video_with_offload(video)
if video is None:
log.critical("Generated video is not safe")
return None
log.info("Pass guardrail on generated video")
return video, prompt
|