项目文件夹

文件
wehub-resource-sync ba4be087d5
Create PR to main with cherry-pick from release / cherry-pick (push) Failing after 0s
CICD NeMo / pre-flight (push) Failing after 0s
CICD NeMo / configure (push) Has been skipped
Build, validate, and release Neural Modules / pre-flight (push) Failing after 1s
CICD NeMo / code-linting (push) Has been skipped
Build, validate, and release Neural Modules / release (push) Has been skipped
Build, validate, and release Neural Modules / release-summary (push) Has been cancelled
CICD NeMo / cicd-test-container-build (push) Has been cancelled
CICD NeMo / cicd-import-tests (push) Has been cancelled
CICD NeMo / L0_Setup_Test_Data_And_Models (push) Has been cancelled
CICD NeMo / cicd-main-unit-tests (push) Has been cancelled
CICD NeMo / cicd-main-speech (push) Has been cancelled
CICD NeMo / Nemo_CICD_Test (push) Has been cancelled
CICD NeMo / Coverage (e2e) (push) Has been cancelled
CICD NeMo / Coverage (unit-test) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
CICD NeMo / cicd-wait-in-queue (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:28:58 +08:00

730 行
32 KiB
Python

# Copyright (c) 2025, NVIDIA CORPORATION. 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 warnings
from collections import defaultdict
from itertools import repeat
from pathlib import Path
from typing import Any, Optional
import torch
from lhotse import CutSet
from lightning import LightningModule
from omegaconf import DictConfig
from peft import PeftModel
from torch import Tensor
from torch.distributed.fsdp import fully_shard
from torch.distributed.tensor import Replicate, Shard
from torch.distributed.tensor.parallel import (
ColwiseParallel,
PrepareModuleInput,
RowwiseParallel,
SequenceParallel,
loss_parallel,
parallelize_module,
)
from transformers import GenerationConfig
from nemo.collections.common.prompts import PromptFormatter
from nemo.collections.common.tokenizers import AutoTokenizer
from nemo.collections.speechlm2.data.salm_dataset import left_collate_vectors
from nemo.collections.speechlm2.parts.encoder_chunking import encode_audio_with_optional_chunking
from nemo.collections.speechlm2.parts.hf_hub import HFHubMixin
from nemo.collections.speechlm2.parts.input_utils import _unpad_inputs
from nemo.collections.speechlm2.parts.lora import maybe_install_lora
from nemo.collections.speechlm2.parts.optim_setup import configure_optimizers, is_frozen
from nemo.collections.speechlm2.parts.pretrained import (
load_pretrained_hf,
maybe_load_pretrained_models,
move_embedding,
setup_speech_encoder,
)
from nemo.core.neural_types import AudioSignal, LabelsType, LengthsType, MaskType, NeuralType
from nemo.utils import logging
class SALM(LightningModule, HFHubMixin):
def __init__(self, cfg) -> None:
assert isinstance(cfg, dict), (
"You must pass the config to SALM as a Python dict to support hyperparameter serialization "
f"in PTL checkpoints (we got: '{type(cfg)=}')."
)
super().__init__()
self.save_hyperparameters()
self.cfg = DictConfig(cfg)
self.audio_locator_tag = self.cfg.audio_locator_tag
tokenizer_src = self.cfg.get("tokenizer_path", None) or self.cfg.pretrained_llm
self.tokenizer = AutoTokenizer(
tokenizer_src, use_fast=True, trust_remote_code=self.cfg.get("trust_remote_code", False)
)
self.tokenizer.add_special_tokens({"additional_special_tokens": [self.audio_locator_tag]})
self.llm = load_pretrained_hf(
self.cfg.pretrained_llm,
pretrained_weights=self.cfg.pretrained_weights,
trust_remote_code=self.cfg.get("trust_remote_code", False),
)
# Note: we have to "move out" the token embedding outside of LLM to avoid
# messing up FSDP/TP hooks.
self.embed_tokens = self.llm.model.embed_tokens
del self.llm.model.embed_tokens
maybe_install_lora(self)
# Load the pretrained streaming ASR model and copy its parameters into the audio perception module.
setup_speech_encoder(self, pretrained_weights=self.cfg.pretrained_weights)
# Optionally initialize weights from a previous checkpoint (fresh optimizer/scheduler).
# Set model.pretrained_s2s_model or model.pretrained_perception_from_s2s in the config.
maybe_load_pretrained_models(self)
self._use_fsdp = False
self._use_tp = False
@property
def text_vocab_size(self):
"""Return the size of the text tokenizer."""
return self.embed_tokens.num_embeddings
@property
def text_bos_id(self) -> int:
return self.tokenizer.bos_id
@property
def text_eos_id(self) -> int:
return self.tokenizer.eos_id
@property
def text_pad_id(self) -> int:
pad_id = self.tokenizer.pad
if pad_id is None:
pad_id = self.tokenizer.unk_id
if pad_id is None:
warnings.warn(
"the text tokenizer has no <pad> or <unk> tokens available, using id 0 for padding (this may lead to silent bugs)."
)
pad_id = 0
return pad_id
@property
def audio_locator_tag_id(self) -> int:
return self.tokenizer.token_to_id(self.audio_locator_tag)
@property
def token_equivalent_duration(self) -> float:
"""
Returns the audio duration corresponding to a single frame/token at the output of ``self.perception``.
"""
return self.perception.token_equivalent_duration
@property
def sampling_rate(self) -> int:
return self.perception.preprocessor.featurizer.sample_rate
def forward(
self,
input_embeds: Tensor,
attention_mask: Tensor = None,
cache=None,
) -> dict[str, Tensor]:
"""
Implements a fully offline forward pass through the entire model.
The flow is the following:
|speech and text embeddings| -> |llm| -> |lm_head| -> |token ids|
"""
# input_embeds and out: (B, T, H)
out = self.llm(
inputs_embeds=input_embeds,
attention_mask=attention_mask,
past_key_values=cache,
use_cache=cache is not None,
return_dict=True,
)
ans = {"logits": out['logits']} # (B, T, text_vocab_size)
if cache is not None:
ans["cache"] = out["past_key_values"]
return ans
def prepare_inputs(self, batch: dict):
"""
Performs additional processing on the mini-batch collected from dataloader.
Notably:
* Convert source audio to speech representations.
* Optionally chunk long source audio for the encoder and recombine the encoded chunks.
* Convert target audio to target audio tokens.
* Convert target text to embeddings.
* Combine the input audio and target text embeddings.
* Take care of any necessary slicing to align the shapes of source audio,
target audio, and target token ids.
"""
# Source audio encoding.
# Input audio: (B, T_samples)
# Audio embeddings: (B, T, H)
audio_embs = encode_audio_with_optional_chunking(
self.perception,
batch["audios"],
batch["audio_lens"],
chunk_size_seconds=self.cfg.get("encoder_chunk_size_seconds", None),
sampling_rate=self.sampling_rate,
)
input_ids_to_embed = torch.where(batch["input_ids"] == self.audio_locator_tag_id, 0, batch["input_ids"])
text_embs = self.embed_tokens(input_ids_to_embed)
input_embs, target_ids, attention_mask = replace_placeholders_and_build_targets(
input_ids=batch["input_ids"],
embeds=text_embs,
padding_id=self.text_pad_id,
placeholder_id=self.audio_locator_tag_id,
replacements=audio_embs,
target_ids=batch["input_ids"].where(batch["loss_mask"], -100), # CrossEntropyLoss().ignore_index
)
input_embs = input_embs[:, :-1]
attention_mask = attention_mask[:, :-1]
target_ids = target_ids[:, 1:]
# Combine target audio and text into a single tensor to slice them together.
# It will also help us truncate the sequence lengths to be divisible by TP world size,
# when TP is enabled.
# Input ids: (B, T, K+1)
if self._use_tp:
tp_world_size = self.device_mesh["tensor_parallel"].size()
if (remainder := (input_embs.shape[1] - 1) % tp_world_size) != 0:
# Truncate some tokens from the end to make the sequence lenght shape divisible by tensor parallelism
# world size. Otherwise, sequence parallelism will change the input shape making leading to mismatches.
input_embs = input_embs[:, :-remainder]
attention_mask = attention_mask[:, :-remainder]
target_ids = target_ids[:, :-remainder]
return {
"input_embeds": input_embs,
"attention_mask": attention_mask,
"target_ids": target_ids,
}
def training_step(self, batch: dict, batch_idx: int):
for m in (self.perception.preprocessor, self.perception.encoder, self.llm):
if is_frozen(m):
m.eval()
inputs = self.prepare_inputs(batch)
forward_outputs = self(inputs["input_embeds"], attention_mask=inputs["attention_mask"])
num_frames = (inputs["target_ids"] != -100).long().sum()
with loss_parallel():
loss = (
torch.nn.functional.cross_entropy(
forward_outputs["logits"].flatten(0, 1), # (B, T, Vt) -> (*, Vt)
inputs["target_ids"].flatten(0, 1),
reduction="sum",
ignore_index=-100,
)
/ num_frames
)
B, T = inputs["input_embeds"].shape[:2]
ans = {
"loss": loss,
"learning_rate": (
torch.as_tensor(self.trainer.optimizers[0].param_groups[0]['lr'] if self._trainer is not None else 0)
),
"batch_size": B,
"sequence_length": T,
"num_frames": num_frames.to(torch.float32), # avoid warning
"target_to_input_ratio": num_frames / (B * T),
"padding_ratio": (batch["input_ids"] != self.text_pad_id).long().sum() / batch["input_ids"].numel(),
}
self.log("loss", loss, on_step=True, prog_bar=True)
self.log_dict({k: v for k, v in ans.items() if k != "loss"}, on_step=True)
return ans
def on_validation_epoch_start(self) -> None:
self._partial_val_losses = defaultdict(list)
self._partial_accuracies = defaultdict(list)
def on_validation_epoch_end(self) -> None:
val_losses = []
for name, vals in self._partial_val_losses.items():
val_loss = torch.stack(vals).mean()
self.log(f"val_loss_{name}", val_loss, on_epoch=True, sync_dist=True)
val_losses.append(val_loss)
self.log("val_loss", torch.stack(val_losses).mean(), on_epoch=True, sync_dist=True)
accuracies = []
for name, accs in self._partial_accuracies.items():
val_acc = torch.stack(accs).mean()
self.log(f"val_acc_{name}", val_acc, on_epoch=True, sync_dist=True)
accuracies.append(val_acc)
self.log("val_acc", torch.stack(accuracies).mean(), on_epoch=True, sync_dist=True)
self._partial_val_losses.clear()
self._partial_accuracies.clear()
def validation_step(self, batch: dict, batch_idx: int):
for name, dataset_batch in batch.items():
if dataset_batch is None:
continue # some dataset is exhausted
inputs = self.prepare_inputs(dataset_batch)
forward_outputs = self(inputs["input_embeds"], attention_mask=inputs["attention_mask"])
num_frames = (inputs["target_ids"] != -100).long().sum()
with loss_parallel():
loss = (
torch.nn.functional.cross_entropy(
forward_outputs["logits"].flatten(0, 1),
inputs["target_ids"].flatten(0, 1),
reduction="sum",
ignore_index=-100,
)
/ num_frames
)
preds = forward_outputs["logits"].argmax(dim=-1).view(-1)
refs = inputs["target_ids"].reshape(-1)
preds = preds[refs != -100]
refs = refs[refs != -100]
accuracy = preds.eq(refs).float().mean()
self._partial_accuracies[name].append(accuracy)
self._partial_val_losses[name].append(loss)
def on_test_epoch_start(self) -> None:
return self.on_validation_epoch_start()
def on_test_epoch_end(self) -> None:
return self.on_validation_epoch_end()
def test_step(self, *args: Any, **kwargs: Any):
return self.validation_step(*args, **kwargs)
def backward(self, *args, **kwargs):
with loss_parallel():
super().backward(*args, **kwargs)
@torch.no_grad()
def generate(
self,
prompts: list[list[dict[str]]] | torch.Tensor,
audios: torch.Tensor = None,
audio_lens: torch.Tensor = None,
generation_config: GenerationConfig = None,
enable_thinking: bool | None = None,
**generation_kwargs,
) -> torch.Tensor:
"""
Generate LLM answers given text or mixed text+audio prompts.
Example 1. High-level API using ``prompts`` to provide both text and audio::
>>> answer_ids = model.generate(
... prompts=[
... [
... {
... "role": "user",
... "content": f"Transcribe the following: {model.audio_locator_tag}",
... "audio": ["path/to/audio.wav"],
... }
... ]
... ],
... max_new_tokens=128,
... )
You may also include a ``transformers.GenerationConfig`` object to customize decoding strategy::
>>> answer_ids = model.generate(..., generation_config=GenerationConfig(do_sample=True, num_beams=5))
Example 2. Lower-level API, using ``prompts`` for the text part,
and pre-loaded ``audio`` and ``audio_lens`` tensors::
>>> answer_ids = model.generate(
... prompts=[
... [{"role": "user", "content": f"Transcribe the following: {model.audio_locator_tag}"}],
... [{"role": "user", "content": f"Transcribe the following in Polish: {model.audio_locator_tag}"}],
... ],
... audios=audios, # torch.Tensor, float32, of shape (batch, time)
... audio_lens=audio_lens, # torch.Tensor, int64, of shape (batch,)
... max_new_tokens=128,
... )
Example 3. Lower-level API, using pre-tokenized and pre-formatted ``prompts`` for the text part,
and pre-loaded ``audio`` and ``audio_lens`` tensors::
>>> answer_ids = model.generate(
... prompts=prompts, # torch.Tensor, int64, of shape (batch, num_tokens)
... audios=audios, # torch.Tensor, float32, of shape (batch, time)
... audio_lens=audio_lens, # torch.Tensor, int64, of shape (batch,)
... max_new_tokens=128,
... )
Inputs:
prompts: batch of prompts Tensor or as list[dict] each in the following format
[
# batch example id 0
[{"role": "user"}, "slots": {"message": f"Transcribe the following: {model.audio_locator_tag}"}]
# batch example id 1
[{"role": "user"}, "slots": {"message": f"Transcribe the following in Polish: {model.audio_locator_tag}"}]
]
"role" is LLM-specific, you can pass multiple turns as well.
If ``prompts`` is a Tensor, we assume it was already formatted in the relevant chat template
and tokenized with the model's tokenizer.
audios: Optional. Time-domain audio signal zero-padded batch of shape (B, T).
The number of audios must correspond to the number of occurrences of <audio_locator_tag> in prompts.
Each prompt can have multiple audios.
audio_lens: Optional. Length of each audio example.
generation_config: Optional HuggingFace GenerationConfig object.
enable_thinking: Optional prompt-formatter hint forwarded to ``encode_dialog``.
Relevant for prompt formats that support thinking/reasoning mode.
generation_kwargs: Keyword arguments passed directly to the underlying LLM's ``generate`` method.
"""
# Encode prompt dicts into int token ids.
if isinstance(prompts, torch.Tensor):
tokens = prompts
else:
if (
maybe_audio := _resolve_audios_in_prompt(prompts, sampling_rate=self.sampling_rate, device=self.device)
) is not None:
assert (
audios is None and audio_lens is None
), "Audios cannot be provided via ``prompts`` and ``audios``/``audio_lens`` arguments simultaneously."
audios, audio_lens = maybe_audio
formatter = PromptFormatter.resolve(self.cfg.prompt_format)(self.tokenizer)
formatter_kwargs = {}
if enable_thinking is not None:
formatter_kwargs["enable_thinking"] = enable_thinking
tokens = left_collate_vectors(
[formatter.encode_dialog(turns=prompt, **formatter_kwargs)["input_ids"] for prompt in prompts],
padding_value=self.text_pad_id,
).to(self.device)
if audios is not None:
# Audio + text input for generation.
# Prepare token embeddings and audio embeddings.
tokens_to_embed = tokens.where(tokens != self.audio_locator_tag_id, 0)
token_embeds = self.embed_tokens(tokens_to_embed)
audio_embeds = encode_audio_with_optional_chunking(
self.perception,
audios,
audio_lens,
chunk_size_seconds=self.cfg.get("encoder_chunk_size_seconds", None),
sampling_rate=self.sampling_rate,
)
# Insert audio embeddings into relevant positions in text embeddings.
input_embeds, _, attention_mask = replace_placeholders_and_build_targets(
input_ids=tokens,
embeds=token_embeds,
padding_id=self.text_pad_id,
placeholder_id=self.audio_locator_tag_id,
replacements=audio_embeds,
target_ids=None,
)
generation_inputs = {"inputs_embeds": input_embeds, "attention_mask": attention_mask}
else:
# Text-only generation.
attention_mask = tokens != self.text_pad_id
generation_inputs = {"input_ids": tokens, "attention_mask": attention_mask}
if generation_config is None:
generation_config = GenerationConfig(
bos_token_id=self.text_bos_id,
eos_token_id=self.text_eos_id,
pad_token_id=self.text_pad_id,
)
# Generate the answers using HF Generate API.
# Note: we need to put the text embedding layer back to the LLM for processing.
with move_embedding(self):
answer_tokens = self.llm.generate(
**generation_inputs,
**generation_kwargs,
generation_config=generation_config,
)
return answer_tokens
def configure_optimizers(self):
return configure_optimizers(self)
def configure_model(self) -> None:
# TODO(pzelasko): refactor into separate module re-usable across models
device_mesh = self.device_mesh
if device_mesh is None:
return
llm = self.llm
if isinstance(llm, PeftModel):
llm = llm.base_model.model
if (tp_mesh := device_mesh["tensor_parallel"]).size() > 1:
self._use_tp = True
# TODO: Distributing embeddings with TP in this setup is tricky
# because we're adding with the output of a non-parallelized
# speech encoder.
# for m in (self.embed_tokens, self.embed_audio_tokens):
# parallelize_module(
# m,
# tp_mesh,
# ColwiseParallel(
# # input_layouts=Shard(1),
# # # Optional: Shard the output along the class dimension to compute the loss in parallel.
# # # See `loss_parallel` in `train.py`
# # output_layouts=Shard(1),
# # use_local_output=False,
# ),
# )
# # Parallelize the first embedding and the last linear out projection
plan = {
"layers.0": PrepareModuleInput(
input_layouts=(Replicate(),), # , None)
desired_input_layouts=(Shard(1),), # , None)
use_local_output=True,
),
"norm": SequenceParallel(),
}
parallelize_module(llm, tp_mesh, plan)
# Parallelize each transformer block
for transformer_block in llm.model.layers:
plan = {
"input_layernorm": SequenceParallel(),
"self_attn.q_proj": ColwiseParallel(),
"self_attn.k_proj": ColwiseParallel(),
"self_attn.v_proj": ColwiseParallel(),
"self_attn.o_proj": RowwiseParallel(output_layouts=Shard(1)),
"post_attention_layernorm": SequenceParallel(),
"mlp": PrepareModuleInput(
input_layouts=(Shard(1),),
desired_input_layouts=(Replicate(),),
),
"mlp.gate_proj": ColwiseParallel(),
"mlp.up_proj": ColwiseParallel(),
"mlp.down_proj": RowwiseParallel(output_layouts=Shard(1)),
# "pre_feedforward_layernorm": SequenceParallel(),
# "post_feedforward_layernorm": SequenceParallel(),
}
# Adjust attention module to use the local number of heads
attn_layer = transformer_block.self_attn
for attr in ("num_heads", "num_key_value_heads", "hidden_size"):
val = getattr(attn_layer, attr)
if val % tp_mesh.size() != 0:
logging.warning(
f"attn_layer.{attr}={val} is not divisible by {tp_mesh.size()=}: set a different tensor parallelism size to avoid errors."
)
setattr(attn_layer, attr, val // tp_mesh.size())
# Apply the plan for the current transformer block
parallelize_module(transformer_block, tp_mesh, plan)
parallelize_module(
llm.lm_head,
tp_mesh,
ColwiseParallel(
input_layouts=Shard(1),
# Optional: Shard the output along the class dimension to compute the loss in parallel.
# See `loss_parallel` in `train.py`
output_layouts=Shard(-1),
use_local_output=False,
),
)
if (dp_mesh := device_mesh["data_parallel"]).size() > 1:
assert dp_mesh.ndim == 1 # Hybrid-sharding not supported
self._use_fsdp = True
fsdp_config = {"mesh": dp_mesh}
for idx, layer in enumerate(llm.model.layers):
llm.model.layers[idx] = fully_shard(layer, **fsdp_config)
self.embed_tokens = fully_shard(self.embed_tokens, **fsdp_config)
llm.lm_head = fully_shard(llm.lm_head, **fsdp_config)
self.llm = fully_shard(self.llm, **fsdp_config)
self.perception = fully_shard(self.perception, **fsdp_config)
@property
def oomptimizer_schema(self) -> dict:
"""
Return a typing schema for optimal batch size calibration for various
sequence lengths using OOMptimizer.
"""
return {
"cls": dict,
"inputs": [
{"name": "audios", "type": NeuralType(("B", "T"), AudioSignal()), "seq_length": "input"},
{"name": "audio_lens", "type": NeuralType(("B",), LengthsType()), "seq_length": "input"},
{
"name": "input_ids",
"type": NeuralType(("B", "T"), LabelsType()),
"seq_length": "output",
"vocab_size": self.text_vocab_size,
"excluded_token_ids": [self.audio_locator_tag_id],
"excluded_token_replacement_id": self.text_pad_id,
"forced_token_ids": {0: self.audio_locator_tag_id},
},
{"name": "loss_mask", "type": NeuralType(("B", "T"), MaskType()), "seq_length": "output"},
],
}
def replace_placeholders_and_build_targets(
input_ids: torch.Tensor,
embeds: torch.Tensor,
padding_id: int,
placeholder_id: int,
replacements: list[torch.Tensor],
target_ids: Optional[torch.Tensor] = None,
) -> tuple[torch.Tensor, Optional[torch.Tensor], torch.Tensor]:
"""Replaces each occurrence of the placeholder_id in input_ids with the corresponding tensor
from the replacements list in the embeds tensor, and creates corresponding adjusted target_ids.
Note: when padding is necessary, we apply left-padding to the examples not to introduce
anomalies at generation time.
Args:
input_ids (Tensor): shape (batch, sequence_length); input token ids.
embeds (Tensor): shape (batch, sequence_length, hidden_dim); embeddings for each token.
padding_id (int): these IDs will be marked as ignore_index in target_ids.
placeholder_id (int): an id to be replaced.
replacements (list of Tensor): each Tensor has shape (L_i, hidden_dim), with L_i arbitrary.
target_ids (Tensor): shape (batch, sequence_length); target token ids.
Returns:
Tuple[Tensor, Tensor, Tensor]:
- Tensor of shape (batch, max_new_sequence_length, hidden_dim) corresponding to
``embeds`` after replacements.
- Tensor of shape (batch, max_new_sequence_length) with adjusted target IDs where:
* Original target values are preserved where input was not a placeholder or padding
* Positions that were placeholders, padding, or added by replacements are set to -100
Will be None if target_ids input was None.
- Tensor of shape (batch, max_new_sequence_length) with attention padding masks
updated to account for shape changes due to replacements.
"""
batch_size, seq_len = input_ids.size()
if target_ids is not None:
assert target_ids.size() == input_ids.size(), "target_ids must have the same shape as input_ids"
hidden_dim = embeds.size(2)
device, dtype = embeds.device, embeds.dtype
ignore_index = -100 # Standard ignore_index value for CrossEntropyLoss
# Un-pad the tensors because we'll need to re-apply new padding after replacements anyway.
input_ids, embeds, target_ids = _unpad_inputs(input_ids, embeds, target_ids, padding_id)
output_sequences = []
output_target_ids = []
output_att_masks = []
replacement_idx = 0
for i in range(batch_size):
# Find all placeholder positions at once using tensor operations
placeholder_positions = (input_ids[i] == placeholder_id).nonzero(as_tuple=True)[0]
# Handle the case with no placeholders more efficiently
if len(placeholder_positions) == 0:
output_sequences.append(embeds[i])
# Start with original target_ids and replace positions where input was padding
if target_ids is not None:
new_target_ids = target_ids[i].clone()
new_target_ids[input_ids[i] == padding_id] = ignore_index
output_target_ids.append(new_target_ids)
output_att_masks.append(input_ids[i] != padding_id)
continue
# Build segments between placeholders
segments = [] # For embeddings
target_segments = [] # For target IDs
att_masks = []
prev_pos = 0
for pos in placeholder_positions:
# Add segment before placeholder (if any)
if pos > prev_pos:
segments.append(embeds[i][prev_pos:pos])
# For target IDs: keep original targets but mark positions that were padding in input
if target_ids is not None:
segment_target_ids = target_ids[i][prev_pos:pos].clone()
segment_target_ids[segment_target_ids == padding_id] = ignore_index
target_segments.append(segment_target_ids)
att_masks.append(input_ids[i][prev_pos:pos] != padding_id)
# Add replacement for embeddings
rep = replacements[replacement_idx]
segments.append(rep)
# For target IDs: all replacement positions get ignore_index
target_segments.append(torch.full((rep.size(0),), ignore_index, dtype=torch.long, device=device))
att_masks.append(torch.ones((rep.size(0),), dtype=torch.bool, device=device))
replacement_idx += 1
prev_pos = pos + 1 # Skip placeholder
# Add remaining segment after last placeholder (if any)
if prev_pos < seq_len:
segments.append(embeds[i][prev_pos:seq_len])
# For target IDs: keep original targets but mark positions that were padding in input
if target_ids is not None:
segment_target_ids = target_ids[i][prev_pos:seq_len].clone()
segment_target_ids[segment_target_ids == padding_id] = ignore_index
target_segments.append(segment_target_ids)
att_masks.append(input_ids[i][prev_pos:seq_len] != padding_id)
# Concatenate all segments for this example
output_sequences.append(torch.cat(segments, dim=0))
output_att_masks.append(torch.cat(att_masks, dim=0))
if target_ids is not None:
output_target_ids.append(torch.cat(target_segments, dim=0))
# Verify all replacements were used
if replacement_idx != len(replacements):
raise ValueError(f"Expected {len(replacements)} replacements but used {replacement_idx}")
# Create padded output tensors
max_seq_length = max(seq.size(0) for seq in output_sequences)
output = torch.zeros(batch_size, max_seq_length, hidden_dim, device=device, dtype=dtype)
if target_ids is not None:
new_target_ids = torch.full((batch_size, max_seq_length), ignore_index, dtype=torch.long, device=device)
else:
new_target_ids = None
attention_masks = torch.zeros((batch_size, max_seq_length), dtype=torch.bool, device=device)
if target_ids is None:
output_target_ids = repeat(None)
for i, (seq, tgt, att) in enumerate(zip(output_sequences, output_target_ids, output_att_masks)):
seq_len = seq.size(0)
output[i, -seq_len:] = seq
if tgt is not None:
new_target_ids[i, -seq_len:] = tgt
attention_masks[i, -seq_len:] = att
return output, new_target_ids, attention_masks
def _resolve_audios_in_prompt(
prompts: list[list[dict]], sampling_rate: int, device: str | torch.device
) -> tuple[torch.Tensor, torch.Tensor] | None:
from lhotse import Recording
paths = []
for conversation in prompts:
for turn in conversation:
if "audio" in turn:
turn_audio = turn["audio"]
if isinstance(turn_audio, (str, Path)):
turn_audio = [turn_audio]
for p in turn_audio:
assert isinstance(p, (str, Path)), f"Invalid value under prompt key 'audio': {p}"
paths.append(p)
if not paths:
return None
cuts = CutSet([Recording.from_file(p).to_cut() for p in paths])
with torch.device("cpu"): # workaround for a Lhotse issue when default device is CUDA during collation
audio, audio_lens = cuts.resample(sampling_rate).load_audio(collate=True)
return (
torch.as_tensor(audio).to(device, non_blocking=True),
torch.as_tensor(audio_lens).to(device, non_blocking=True),
)