Spaces:
Running on Zero
Running on Zero
File size: 34,496 Bytes
c1e2af3 | 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 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 | # SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
import logging
from typing import Any, List, Optional, Tuple, Union
import numpy as np
import torch
from torch import nn
from tqdm.auto import tqdm
from ardy.model.cfg import AutoLatentClassifierFreeGuidedModel
from ardy.model.diffusion import DDIMSampler, Diffusion
from ardy.model.latent_utils import HybridMotionConverter
log = logging.getLogger(__name__)
def get_three_mask_from_len(history_len, generation_len, future_len, num_frames, device):
indices = torch.arange(num_frames, device=device)[None, :] # (1, num_frames)
history_mask = indices < history_len[:, None]
generation_start = history_len
generation_end = generation_start + generation_len
generation_mask = (indices < generation_end[:, None]) & (indices >= generation_start[:, None])
future_mask = indices >= generation_end[:, None]
return history_mask, generation_mask, future_mask
def translate_normalized_root_motion(root_motion, translation, motion_rep):
"""The y coords of the input translation are zero."""
assert (translation[:, 1] == 0).all(), "the y coords of the input translation are zero"
root_motion = motion_rep.global_root_stats.unnormalize(root_motion)
root_motion[:, :, motion_rep.slice_dict["root_pos"]] = (
root_motion[:, :, motion_rep.slice_dict["root_pos"]] + translation[:, None, :]
)
root_motion = motion_rep.global_root_stats.normalize(root_motion)
return root_motion
class Ardy(nn.Module):
"""Helper class for test time."""
def __init__(
self,
denoiser: nn.Module,
autoencoder: nn.Module,
gen_horizon_len: int,
num_base_steps: int,
text_encoder: Optional[Any],
device: Optional[Union[str, torch.device]] = None,
cfg_type: Optional[str] = "regular",
):
super().__init__()
if cfg_type is None:
cfg_type = "nocfg"
# eval mode
self.denoiser = AutoLatentClassifierFreeGuidedModel(denoiser.eval(), cfg_type=cfg_type)
self.motion_rep = denoiser.motion_rep
self.skeleton = self.motion_rep.skeleton
self.gen_horizon_len = gen_horizon_len
self.autoencoder = autoencoder
self.diffusion = Diffusion(num_base_steps=num_base_steps)
self.sampler = DDIMSampler(self.diffusion)
self.text_encoder = text_encoder
self.hybrid = HybridMotionConverter.from_model(self)
self.num_frames_per_token = self.autoencoder.num_frames_per_token
self.device = device
self.to(device)
def train(self, mode: bool):
self.denoiser.train(mode)
return self
def eval(self):
self.denoiser.eval()
return self
def set_autoencoder(self, autoencoder: nn.Module) -> None:
"""Replace the autoencoder everywhere it is referenced.
``self.autoencoder`` and ``self.hybrid.autoencoder`` are separate
references: the hybrid converter captured the autoencoder at
construction time (see ``HybridMotionConverter.from_model``), and
detokenization during generation goes through the hybrid converter.
Rebinding only ``self.autoencoder`` (e.g. to swap in a TRT decoder)
therefore has no effect on generation. Updating both keeps them in sync
so the swap actually takes effect.
"""
self.autoencoder = autoencoder
self.hybrid.autoencoder = autoencoder
def compile_denoiser(
self,
backend: str = "inductor",
mode: str = "default",
dynamic: bool = False,
) -> None:
"""Compile the denoiser with torch.compile for faster inference.
Must be called after loading checkpoint weights, as torch.compile wraps
the module in a way that may interfere with checkpoint loading.
Args:
backend: torch.compile backend ("torch_tensorrt" or "inductor").
mode: Compilation mode ("reduce-overhead" uses CUDA graphs).
dynamic: Whether to allow dynamic tensor shapes without recompilation.
"""
log.info(
"Compiling denoiser with torch.compile (backend=%s, mode=%s, dynamic=%s)...",
backend,
mode,
dynamic,
)
compile_kwargs: dict = {
"backend": backend,
"mode": mode,
"dynamic": dynamic,
}
if backend == "torch_tensorrt":
try:
import torch_tensorrt # noqa: F401 — registers the backend
except (ModuleNotFoundError, OSError) as e:
log.warning(
"torch_tensorrt unavailable (%s), falling back to inductor backend.",
e,
)
backend = "inductor"
compile_kwargs["backend"] = backend
else:
# torch_tensorrt uses options instead of mode
del compile_kwargs["mode"]
compile_kwargs["options"] = {
"enabled_precisions": {torch.float32},
"min_block_size": 3,
"use_python_runtime": True,
# Workaround: torch_tensorrt cat converter crashes on
# FakeTensor frozen params (tries .numpy() on them).
# Force cat to run in PyTorch fallback.
"torch_executed_ops": {"torch.ops.aten.cat.default"},
}
self.denoiser = torch.compile(self.denoiser, **compile_kwargs)
log.info("Denoiser compiled.")
def warmup(
self,
num_tokens: int = 3,
num_text_tokens: int = 32,
num_iterations: int = 3,
) -> None:
"""Run the denoiser with dummy inputs to trigger compilation.
Call this after compile_denoiser() to avoid compilation latency during
the first real inference call. Multiple iterations are used because
torch_tensorrt may refine its engine across the first few calls.
Args:
num_tokens: Number of motion tokens for warmup (history + generation).
num_text_tokens: Number of text tokens for warmup.
num_iterations: Number of warmup forward passes.
"""
log.info("Warming up compiled denoiser (%d iterations)...", num_iterations)
device = self.device
# The dimension attributes live directly on the inner denoiser, reached
# via denoiser.model (the module wrapped by the CFG wrapper). Going through
# .model preserves attribute access even after torch.compile.
model = self.denoiser.model
nfpt = model.num_frames_per_token
num_frames = num_tokens * nfpt
dim_token = model.nframe_root_dim + model.latent_embedding_dim
motion_rep_dim = model.motion_rep.motion_rep_dim
with torch.no_grad():
for i in range(num_iterations):
self.denoiser(
# self.denoiser is the CFG wrapper; it requires the text and
# constraint guidance weights as its first two arguments (see
# denoising_step). Values are arbitrary for warmup.
cfg_weight_text=torch.ones(1, device=device),
cfg_weight_cstr=torch.zeros(1, device=device),
x=torch.randn(1, num_tokens, dim_token, device=device),
history_len=torch.tensor([nfpt], device=device),
generation_len=torch.tensor([num_frames - nfpt], device=device),
future_len=torch.tensor([0], device=device),
history_mask=torch.cat(
[
torch.ones(1, nfpt, dtype=torch.bool, device=device),
torch.zeros(1, num_frames - nfpt, dtype=torch.bool, device=device),
],
dim=1,
),
generation_mask=torch.cat(
[
torch.zeros(1, nfpt, dtype=torch.bool, device=device),
torch.ones(1, num_frames - nfpt, dtype=torch.bool, device=device),
],
dim=1,
),
future_mask=torch.zeros(1, num_frames, dtype=torch.bool, device=device),
history_token_mask=torch.cat(
[
torch.ones(1, 1, dtype=torch.bool, device=device),
torch.zeros(1, num_tokens - 1, dtype=torch.bool, device=device),
],
dim=1,
),
generation_token_mask=torch.cat(
[
torch.zeros(1, 1, dtype=torch.bool, device=device),
torch.ones(1, num_tokens - 1, dtype=torch.bool, device=device),
],
dim=1,
),
future_token_mask=torch.zeros(1, num_tokens, dtype=torch.bool, device=device),
text_feat=torch.randn(1, num_text_tokens, model.llm_shape[-1], device=device),
text_feat_pad_mask=torch.ones(1, num_text_tokens, dtype=torch.bool, device=device),
timesteps=torch.tensor([0], device=device),
first_heading_angle=torch.zeros(1, device=device, dtype=torch.float32),
motion_mask=torch.zeros(1, num_frames, motion_rep_dim, device=device),
observed_motion=torch.zeros(1, num_frames, motion_rep_dim, device=device),
)
log.info("Warmup iteration %d/%d complete.", i + 1, num_iterations)
log.info("Warmup complete.")
def denoising_step(
self,
x: torch.Tensor,
history_len: torch.Tensor,
generation_len: torch.Tensor,
future_len: torch.Tensor,
history_mask: torch.Tensor,
generation_mask: torch.Tensor,
future_mask: torch.Tensor,
history_token_mask: torch.Tensor,
generation_token_mask: torch.Tensor,
future_token_mask: torch.Tensor,
text_feat: torch.Tensor,
text_pad_mask: torch.Tensor,
t: torch.Tensor,
first_heading_angle: Optional[torch.Tensor],
motion_mask: torch.Tensor,
observed_motion: torch.Tensor,
num_denoising_steps: torch.Tensor,
cfg_weight: Union[float, Tuple[float, float]],
target_motion: Optional[torch.Tensor] = None,
cfg_type: Optional[str] = None,
) -> torch.Tensor:
"""Single denoising step.
Returns:
torch.Tensor: [B, T, D] noisy motion input to t-1
"""
# subsample timesteps
# NOTE: do this at every step due to ONNX export, i.e. num_samp_stepsmay change dynamically when
# running onnx version so need to account for that.
num_denoising_steps = num_denoising_steps[0]
use_timesteps, map_tensor = self.diffusion.space_timesteps(num_denoising_steps)
self.diffusion.calc_diffusion_vars(use_timesteps)
# first compute initial clean prediction from denoiser
t_map = map_tensor[t]
# self.denoiser is the CFG wrapper (PyTorch or TRTCFGDenoiser); both take the
# text and constraint guidance weights as two tensors. This is the single
# place the combined cfg_weight (text, constraint) is turned into tensors.
if isinstance(cfg_weight, (tuple, list)):
w_text, w_cstr = cfg_weight
else:
w_text, w_cstr = cfg_weight, 0.0
cfg_weight_text = torch.tensor([w_text], device=x.device, dtype=torch.float32)
cfg_weight_cstr = torch.tensor([w_cstr], device=x.device, dtype=torch.float32)
with torch.inference_mode():
token_seq_pred_clean = self.denoiser(
cfg_weight_text,
cfg_weight_cstr,
x,
history_len,
generation_len,
future_len,
history_mask,
generation_mask,
future_mask,
history_token_mask,
generation_token_mask,
future_token_mask,
text_feat,
text_pad_mask,
t_map,
first_heading_angle,
motion_mask,
observed_motion,
)
# sampler computes next step noisy motion
batch_size, num_token_dim = x.shape[0], x.shape[2]
num_generation_tokens = self.gen_horizon_len // self.num_frames_per_token
generation_token_t = x[generation_token_mask].reshape(batch_size, num_generation_tokens, num_token_dim)
generation_token_clean = token_seq_pred_clean[generation_token_mask].reshape(
batch_size, num_generation_tokens, num_token_dim
)
generation_token_tm1 = self.sampler(generation_token_t, generation_token_clean, t)
# Clone: x is still needed by the caller; the masked write below must
# not alias it.
xm1 = x.clone()
xm1[generation_token_mask] = generation_token_tm1.reshape(-1, num_token_dim)
return xm1
def _encode_text(self, texts: List[str]) -> Tuple[torch.Tensor, torch.Tensor]:
"""Encode text prompts into features and a padding mask."""
device = self.device
log.info("Encoding text...")
text_feat, text_length = self.text_encoder(texts)
text_feat = text_feat.to(device)
# handle empty string (set to zero)
empty_text_mask = [len(text.strip()) == 0 for text in texts]
text_feat[empty_text_mask] = 0
# Create the pad mask for the text
batch_size, maxlen = text_feat.shape[:2]
tensor_text_length = torch.tensor(text_length, device=device)
tensor_text_length[empty_text_mask] = 0
text_pad_mask = torch.arange(maxlen, device=device).expand(batch_size, maxlen) < tensor_text_length[:, None]
return text_feat, text_pad_mask
def _recenter_history(
self,
history_sequence: torch.Tensor,
center_frame_index: torch.Tensor,
requantize: bool,
) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor]:
"""Recenter the hybrid history around ``center_frame_index``.
Returns the recentered hybrid history, the center position, and the recentered (explicit)
root motion.
"""
root_motion, latent_body_motion = self.hybrid.get_root_and_latent_body_motion_from_hybrid(
history_sequence,
)
new_root_motion, center_pos = self.motion_rep.recenter_root_motion(
root_motion,
center_frame_index,
is_normalized=True,
to_normalize=True,
return_center_pos=True,
)
# quantize the latent body motion if the autoencoder uses quantization
if requantize and self.autoencoder.encode_with_quantization:
latent_body_motion = self.autoencoder.requantize(
latent_body_motion,
)
# combine back to hybrid motion
history_sequence = self.hybrid.get_hybrid_motion_from_root_and_latent_body_motion(
new_root_motion,
latent_body_motion,
)
return history_sequence, center_pos, new_root_motion
def _encode_init_history(
self,
init_history_sequence: torch.Tensor,
batch_size: int,
crop_history_length: Optional[int] = None,
) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor]:
"""Encode an explicit init history into a recentered hybrid sequence.
Returns the hybrid history sequence, the initial global translation, and the first-frame
heading angle.
"""
init_history_len = init_history_sequence.shape[1]
history_sequence, history_pad_mask = self.hybrid.get_hybrid_motion_from_explicit(
motion=init_history_sequence,
motion_len=torch.ones(batch_size, device=self.device, dtype=torch.long) * init_history_len,
motion_pad_mask=torch.ones(batch_size, init_history_len, device=self.device, dtype=torch.bool),
)
# transl_center_mode == "last_history":
center_frame_index = torch.ones(batch_size, device=self.device, dtype=torch.long) * (
init_history_len - 1
) # [B,]
history_sequence, center_pos, _ = self._recenter_history(history_sequence, center_frame_index, requantize=False)
# update global translation
global_transl = center_pos.clone()
# set first frame heading angle
heading_angles = self.motion_rep.get_root_heading_angle(self.motion_rep.unnormalize(init_history_sequence))
first_heading_angle = heading_angles[:, 0]
return history_sequence, global_transl, first_heading_angle
def _generate_window(
self,
history_sequence: Optional[torch.Tensor],
global_transl: torch.Tensor,
history_start_frame: int,
history_end_frame: int,
total_frames: int,
text_feat: torch.Tensor,
text_pad_mask: torch.Tensor,
first_heading_angle: Optional[torch.Tensor],
motion_mask: Optional[torch.Tensor],
observed_motion: Optional[torch.Tensor],
num_denoising_steps: torch.Tensor,
cfg_weight: Union[float, Tuple[float, float]],
indices: List[int],
progress_bar=tqdm,
target_motion: Optional[torch.Tensor] = None,
cfg_type: Optional[str] = None,
) -> torch.Tensor:
"""Generate a single window of ``gen_horizon_len`` frames.
Builds the history/generation/future masks and conditioning, denoises a block of pure noise,
and appends the newly generated tokens (in hybrid latent form) to ``history_sequence``.
Returns the updated history.
"""
device = self.device
batch_size = text_feat.shape[0]
num_frames_per_token = self.num_frames_per_token
latent_embedding_dim = self.denoiser.latent_embedding_dim
nframe_root_dim = self.denoiser.nframe_root_dim
gen_horizon_len = self.gen_horizon_len
num_generation_tokens = gen_horizon_len // num_frames_per_token
generation_len = torch.ones(batch_size, device=device, dtype=torch.long) * gen_horizon_len
history_token_end = (history_end_frame - history_start_frame) // num_frames_per_token
generation_token_end = history_token_end + num_generation_tokens
history_len = torch.ones(batch_size, device=device, dtype=torch.long) * history_token_end * num_frames_per_token
future_len = torch.ones(batch_size, device=device, dtype=torch.long) * (
total_frames - gen_horizon_len - history_end_frame
)
history_mask, generation_mask, future_mask = get_three_mask_from_len(
history_len,
generation_len,
future_len,
total_frames - history_start_frame,
device,
)
# update observed motion roots with global translation
if motion_mask is not None:
cur_motion_mask = motion_mask[:, history_start_frame:] * (
~history_mask[:, :, None]
) # only allow motion mask for non-history frames
cur_observed_root_motion = self.motion_rep.extract_root(observed_motion[:, history_start_frame:])
cur_observed_body_motion = self.motion_rep.extract_body(observed_motion[:, history_start_frame:])
translated_observed_root_motion = translate_normalized_root_motion(
cur_observed_root_motion, -global_transl, self.motion_rep
)
cur_observed_motion = self.motion_rep.concat_root_body(
translated_observed_root_motion, cur_observed_body_motion
)
cur_observed_motion = (
cur_observed_motion * cur_motion_mask
) # mask out the unobserved frames roots/joints that are non-zero due to translation
else:
cur_motion_mask = None
cur_observed_motion = None
history_token_mask, generation_token_mask, future_token_mask = self.hybrid.convert_frame_mask_to_token_mask(
history_mask,
generation_mask,
future_mask,
cur_motion_mask,
)
# init pure noise x_T and x
shape = (
batch_size,
num_generation_tokens,
nframe_root_dim + latent_embedding_dim,
)
x_t = torch.randn(shape, device=device)
x = torch.zeros(
batch_size,
(total_frames - history_start_frame) // num_frames_per_token,
nframe_root_dim + latent_embedding_dim,
device=device,
)
if history_token_end > 0:
x[:, :history_token_end] = history_sequence[:, -history_token_end:]
x[:, history_token_end:generation_token_end] = x_t
for i in progress_bar(indices):
t = torch.tensor([i] * x_t.size(0), device=device)
with torch.no_grad():
x = self.denoising_step(
x,
history_len,
generation_len,
future_len,
history_mask,
generation_mask,
future_mask,
history_token_mask,
generation_token_mask,
future_token_mask,
text_feat,
text_pad_mask,
t,
first_heading_angle,
cur_motion_mask,
cur_observed_motion,
num_denoising_steps,
cfg_weight,
target_motion,
cfg_type=cfg_type,
)
# update the full history sequence
if history_sequence is None:
history_sequence = x[:, :generation_token_end]
else:
history_sequence = torch.cat(
[
history_sequence,
x[:, history_token_end:generation_token_end],
],
dim=1,
)
return history_sequence
def __call__(
self,
texts: List[str],
num_frames: int,
num_denoising_steps: int,
pad_mask: torch.Tensor,
first_heading_angle: Optional[torch.Tensor],
motion_mask: torch.Tensor,
observed_motion: torch.Tensor,
target_motion: Optional[torch.Tensor] = None,
cfg_weight: Optional[float] = 2.0,
text_feat: Optional[torch.Tensor] = None,
text_pad_mask: Optional[torch.Tensor] = None,
cfg_type: Optional[str] = None,
progress_bar=tqdm,
return_text_embeddings_x_dict: bool = False,
crop_history_length: Optional[int] = None,
init_history_sequence: Optional[torch.Tensor] = None,
) -> torch.Tensor:
"""Sample full denoising loop.
Args:
texts (List[str]): batch of text prompts to use for sampling (if text_feat is not passed in)
"""
if text_feat is None:
assert text_pad_mask is None
text_feat, text_pad_mask = self._encode_text(texts)
batch_size = text_feat.shape[0]
num_frames_per_token = self.num_frames_per_token
motion_pad_mask = pad_mask
motion_len = motion_pad_mask.sum(dim=-1) # [batch_size], exact length of the motion output
motion_len_pad = (
torch.ceil(motion_len / num_frames_per_token).int() * num_frames_per_token
) # padded to multiple of num_frames_per_token, used for decoding
gen_horizon_len = self.gen_horizon_len
init_history_len = 0 if init_history_sequence is None else init_history_sequence.shape[1]
num_autoregressive_steps = int(np.ceil((num_frames - init_history_len) / gen_horizon_len))
num_gen_frames = num_autoregressive_steps * gen_horizon_len + init_history_len
motion_pad_mask = torch.arange(num_gen_frames, device=self.device) < motion_len_pad[:, None]
if num_frames < num_gen_frames:
pad_num_frames = num_gen_frames - num_frames
if motion_mask is not None:
motion_mask = torch.cat(
[
motion_mask,
torch.zeros(
batch_size,
pad_num_frames,
motion_mask.shape[-1],
device=self.device,
),
],
dim=1,
)
if observed_motion is not None:
observed_motion = torch.cat(
[
observed_motion,
torch.zeros(
batch_size,
pad_num_frames,
observed_motion.shape[-1],
device=self.device,
),
],
dim=1,
)
generation_len = torch.ones(batch_size, device=self.device, dtype=torch.long) * gen_horizon_len
assert crop_history_length is None or crop_history_length % num_frames_per_token == 0, (
"crop_history_length should be a multiple of num_frames_per_token"
)
if init_history_sequence is not None:
assert first_heading_angle is None
assert crop_history_length is None, (
"not supporting combination of crop_history_length and init_history_sequence"
)
history_sequence, global_transl, first_heading_angle = self._encode_init_history(
init_history_sequence, batch_size, crop_history_length
)
else:
history_sequence = None
global_transl = torch.zeros(
(batch_size, self.motion_rep.nfeats_dict["root_pos"]),
device=self.device,
)
# sample loop
indices = list(range(num_denoising_steps))[::-1]
num_denoising_steps = torch.tensor(
[num_denoising_steps], device=self.device
) # this and t need to be tensor for onnx export
# init diffusion with correct num steps before looping
use_timesteps = self.diffusion.space_timesteps(num_denoising_steps[0])[0]
self.diffusion.calc_diffusion_vars(use_timesteps)
for auto_step in range(num_autoregressive_steps):
history_end_frame = auto_step * gen_horizon_len + init_history_len
history_start_frame = (
0 if crop_history_length is None else max(0, history_end_frame - crop_history_length)
) # set history start frame to 0 if no crop, otherwise set to the first frame of the cropped history, the start frame should be non-negative
history_sequence = self._generate_window(
history_sequence,
global_transl,
history_start_frame,
history_end_frame,
num_gen_frames,
text_feat,
text_pad_mask,
first_heading_angle,
motion_mask,
observed_motion,
num_denoising_steps,
cfg_weight,
indices,
progress_bar=progress_bar,
target_motion=target_motion,
cfg_type=cfg_type,
)
# recenter the history sequence as specified
# transl_center_mode == "last_history":
center_frame_index = (history_end_frame + generation_len - 1).clamp(min=0) # [B,]
history_sequence, center_pos, new_root_motion = self._recenter_history(
history_sequence, center_frame_index, requantize=True
)
# update global translation
global_transl = global_transl + center_pos
# update first heading angle if history cropping is applied
if crop_history_length is not None:
# new_root_motion holds root features only — unnormalize with the
# root-slice stats, not the full-feature stats.
heading_angles = self.motion_rep.get_root_heading_angle(
self.motion_rep.global_root_stats.unnormalize(new_root_motion),
)
full_history_len = new_root_motion.shape[1]
cropped_history_start_frame = max(0, full_history_len - crop_history_length)
first_heading_angle = heading_angles[:, cropped_history_start_frame]
root_motion, latent_body_motion = self.hybrid.get_root_and_latent_body_motion_from_hybrid(
history_sequence,
)
new_root_motion = translate_normalized_root_motion(root_motion, global_transl, self.motion_rep)
history_sequence = self.hybrid.get_hybrid_motion_from_root_and_latent_body_motion(
new_root_motion,
latent_body_motion,
)
if crop_history_length is not None:
motion_output = self.hybrid.get_explicit_motion_from_hybrid_autoregressive(
history_sequence,
motion_pad_mask,
motion_len_pad,
motion_mask=motion_mask,
crop_history_length=crop_history_length,
)
else:
motion_output = self.hybrid.get_explicit_motion_from_hybrid(
history_sequence,
motion_pad_mask,
motion_len_pad,
motion_mask=motion_mask,
)
motion_pred = motion_output[:, :num_frames]
if return_text_embeddings_x_dict:
x_dict = {"x": text_feat, "mask": text_pad_mask}
return motion_pred, x_dict
return motion_pred
def autoregressive_step(
self,
num_frames: int,
num_denoising_steps: int,
motion_mask: torch.Tensor | None,
observed_motion: torch.Tensor | None,
cfg_weight: Optional[float] = 2.0,
texts: Optional[List[str]] = None,
text_feat: Optional[torch.Tensor] = None,
text_pad_mask: Optional[torch.Tensor] = None,
init_history_sequence: Optional[torch.Tensor] = None,
init_global_translation: Optional[torch.Tensor] = None, # [B, 3]
init_first_heading_angle: Optional[torch.Tensor] = None, # [B,]
) -> torch.Tensor:
"""Perform a single autoregressive generation step.
Returns:
torch.Tensor: motions in the generated window
"""
# Encode text if not provided
if text_feat is None:
assert text_pad_mask is None
text_feat, text_pad_mask = self._encode_text(texts)
batch_size = text_feat.shape[0]
num_frames_per_token = self.num_frames_per_token
gen_horizon_len = self.gen_horizon_len
assert num_frames % num_frames_per_token == 0, "num_frames should be a multiple of num_frames_per_token"
# Init diffusion with correct num steps
indices = list(range(num_denoising_steps))[::-1]
num_denoising_steps_tensor = torch.tensor([num_denoising_steps], device=self.device)
use_timesteps = self.diffusion.space_timesteps(num_denoising_steps_tensor[0])[0]
self.diffusion.calc_diffusion_vars(use_timesteps)
# process init history sequence
init_history_len = 0 if init_history_sequence is None else init_history_sequence.shape[1]
if init_history_sequence is not None:
history_sequence, global_transl, first_heading_angle = self._encode_init_history(
init_history_sequence, batch_size
)
else:
history_sequence = None
global_transl = (
init_global_translation
if init_global_translation is not None
else torch.zeros(
(batch_size, self.motion_rep.nfeats_dict["root_pos"]),
device=self.device,
)
)
first_heading_angle = (
init_first_heading_angle
if init_first_heading_angle is not None
else torch.zeros(batch_size, device=self.device)
)
# Generate a single window on top of the (optional) history.
history_end_frame = init_history_len
history_start_frame = 0
history_sequence = self._generate_window(
history_sequence,
global_transl,
history_start_frame,
history_end_frame,
num_frames,
text_feat,
text_pad_mask,
first_heading_angle,
motion_mask,
observed_motion,
num_denoising_steps_tensor,
cfg_weight,
indices,
progress_bar=lambda iterable: iterable,
target_motion=None,
cfg_type=None,
)
root_motion, latent_body_motion = self.hybrid.get_root_and_latent_body_motion_from_hybrid(history_sequence)
new_root_motion = translate_normalized_root_motion(root_motion, global_transl, self.motion_rep)
# Quantize the latent body motion if the autoencoder uses quantization
if self.autoencoder.encode_with_quantization:
latent_body_motion = self.autoencoder.requantize(latent_body_motion)
# Combine back to hybrid motion
history_sequence = self.hybrid.get_hybrid_motion_from_root_and_latent_body_motion(
new_root_motion,
latent_body_motion,
)
generated_motion_len = init_history_len + gen_horizon_len
motion_pad_mask = torch.ones(batch_size, generated_motion_len, device=self.device, dtype=torch.bool)
motion_len = (
torch.ones(batch_size, device=self.device, dtype=torch.long) * generated_motion_len
) # length of generated motions
motion_output = self.hybrid.get_explicit_motion_from_hybrid(
history_sequence,
motion_pad_mask,
motion_len,
motion_mask=motion_mask,
)
return motion_output
|