Spaces:
Running on Zero
Running on Zero
File size: 14,338 Bytes
08c5e28 | 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 | #!/usr/bin/env python3
"""
Warm TTS server — loads models once, accepts requests via stdin or function call.
The key insight: inference.py spends 11s on Gemma + 8s on model load every call.
This server loads everything once and keeps it warm.
We import and call the same code paths as inference.py but cache the heavy objects.
"""
import json
import logging
import os
import re
import sys
import time
from pathlib import Path
import torch
import torchaudio
# Setup paths
APP_DIR = Path(__file__).parent.parent
sys.path.insert(0, str(APP_DIR / "ltx2"))
sys.path.insert(0, str(APP_DIR / "src"))
logging.basicConfig(level=logging.INFO, format="%(asctime)s %(levelname)s %(message)s")
from audio_conditioning import AudioConditionByReferenceLatent
from ltx_core.components.noisers import GaussianNoiser
from ltx_core.components.patchifiers import AudioPatchifier
from ltx_core.components.guiders import MultiModalGuider, MultiModalGuiderParams
from ltx_core.components.schedulers import LTX2Scheduler
from ltx_core.components.diffusion_steps import EulerDiffusionStep
from ltx_core.loader import DummyRegistry
from ltx_core.loader.single_gpu_model_builder import SingleGPUModelBuilder as Builder
from ltx_core.loader.sd_ops import SDOps
from ltx_core.model.transformer.model import LTXModel, LTXModelType, X0Model
from ltx_core.model.transformer.rope import LTXRopeType
from ltx_core.model.transformer.text_projection import create_caption_projection
from ltx_core.model.transformer.attention import AttentionFunction
from ltx_core.model.model_protocol import ModelConfigurator
from ltx_core.tools import AudioLatentTools
from ltx_core.types import Audio, AudioLatentShape, VideoPixelShape
from ltx_core.model.audio_vae import encode_audio as vae_encode_audio
from ltx_pipelines.utils.blocks import AudioConditioner, AudioDecoder, PromptEncoder
from ltx_pipelines.utils.media_io import decode_audio_from_file
from ltx_pipelines.utils.denoisers import GuidedDenoiser
from ltx_pipelines.utils.samplers import euler_denoising_loop
from safetensors import safe_open
DEFAULT_NEG = "worst quality, inconsistent, robotic, distorted, noise, static, muffled, unclear, unnatural, monotone"
def estimate_duration(prompt, multiplier=1.1):
quoted = re.findall(r'"([^"]*)"', prompt) or re.findall(r"'([^']*)'", prompt)
text = " ".join(quoted) if quoted else prompt
return max(3.0, round((len(text) * 0.065 + 1.5) * multiplier, 1))
class TTSServer:
def __init__(self, checkpoint=None, full_checkpoint=None, gemma_root=None,
device="cuda", dtype="bf16", compile_model=True, bnb_4bit=True):
MODELS = APP_DIR / "models"
self.checkpoint = checkpoint or str(MODELS / "ltx-2.3-22b-dev-audio-only-v13-merged.safetensors")
self.full_checkpoint = full_checkpoint or os.environ.get(
"LTX_FULL_CHECKPOINT", "/mnt/persistent0/manmay/models/ltx23/ltx-2.3-22b-dev.safetensors")
self.gemma_root = gemma_root or os.environ.get(
"GEMMA_DIR", "/mnt/persistent0/manmay/models/gemma-3-12b-it-qat-q4_0-unquantized")
self.device = torch.device(device)
self.dtype = torch.float16 if dtype == "fp16" else torch.bfloat16
self.compile_model = compile_model
self.bnb_4bit = bnb_4bit
self.patchifier = AudioPatchifier(patch_size=1)
# Cached models
self._prompt_encoder = None
self._velocity_model = None
self._audio_conditioner = None
self._audio_decoder = None
logging.info(f"TTSServer loading on {device}...")
t0 = time.time()
self._load_all()
logging.info(f"All models loaded in {time.time()-t0:.1f}s — ready for requests")
def _load_all(self):
# 1. Prompt encoder (Gemma + embeddings processor kept warm)
t0 = time.time()
self._prompt_encoder = PromptEncoder(
checkpoint_path=self.full_checkpoint,
gemma_root=self.gemma_root,
dtype=self.dtype, device=self.device,
warm=True,
use_bnb_4bit=self.bnb_4bit,
audio_only=True,
)
logging.info(f" PromptEncoder (warm): {time.time()-t0:.1f}s")
# 2. Audio conditioner (VAE encoder kept warm)
t0 = time.time()
self._audio_conditioner = AudioConditioner(
checkpoint_path=self.full_checkpoint,
dtype=self.dtype, device=self.device,
warm=True,
)
logging.info(f" AudioConditioner (warm): {time.time()-t0:.1f}s")
# 3. Transformer
t0 = time.time()
with safe_open(self.checkpoint, framework="pt") as f:
config = json.loads(f.metadata()["config"])
t = config.get("transformer", {})
class AudioOnlyConfigurator(ModelConfigurator[LTXModel]):
@classmethod
def from_config(cls, cfg):
t = cfg.get("transformer", {})
cp = None
if not t.get("caption_proj_before_connector", False):
with torch.device("meta"):
cp = create_caption_projection(t, audio=True)
return LTXModel(
model_type=LTXModelType.AudioOnly,
audio_num_attention_heads=t.get("audio_num_attention_heads", 32),
audio_attention_head_dim=t.get("audio_attention_head_dim", 64),
audio_in_channels=t.get("audio_in_channels", 128),
audio_out_channels=t.get("audio_out_channels", 128),
num_layers=t.get("num_layers", 48),
audio_cross_attention_dim=t.get("audio_cross_attention_dim", 2048),
norm_eps=t.get("norm_eps", 1e-6),
attention_type=AttentionFunction(t.get("attention_type", "default")),
positional_embedding_theta=10000.0,
audio_positional_embedding_max_pos=[20.0],
timestep_scale_multiplier=t.get("timestep_scale_multiplier", 1000),
use_middle_indices_grid=t.get("use_middle_indices_grid", True),
rope_type=LTXRopeType(t.get("rope_type", "interleaved")),
double_precision_rope=t.get("frequencies_precision", False) == "float64",
apply_gated_attention=t.get("apply_gated_attention", False),
audio_caption_projection=cp,
cross_attention_adaln=t.get("cross_attention_adaln", False),
)
audio_sd_ops = SDOps("AO").with_matching(prefix="model.diffusion_model.").with_replacement(
"model.diffusion_model.", "")
builder = Builder(
model_path=self.checkpoint,
model_class_configurator=AudioOnlyConfigurator,
model_sd_ops=audio_sd_ops,
registry=DummyRegistry(),
)
self._velocity_model = builder.build(device=self.device, dtype=self.dtype).to(self.device).eval()
n_params = sum(p.numel() for p in self._velocity_model.parameters()) / 1e9
vram_gb = sum(p.numel() * p.element_size() for p in self._velocity_model.parameters()) / 1e9
logging.info(f" Transformer: {time.time()-t0:.1f}s ({n_params:.1f}B params, {vram_gb:.1f}GB VRAM, {self.dtype})")
# torch.compile for faster denoising
if self.compile_model:
t0 = time.time()
logging.info(" Compiling transformer with torch.compile (default mode)...")
self._velocity_model = torch.compile(self._velocity_model, mode="default", dynamic=True)
logging.info(f" Compiled: {time.time()-t0:.1f}s (first call triggers actual compilation)")
# 4. Audio decoder (VAE decoder + vocoder kept warm)
t0 = time.time()
self._audio_decoder = AudioDecoder(
checkpoint_path=self.full_checkpoint,
dtype=self.dtype, device=self.device,
warm=True,
)
logging.info(f" AudioDecoder (warm): {time.time()-t0:.1f}s")
@torch.inference_mode()
def generate(self, prompt, voice_ref=None, cfg_scale=2.5, stg_scale=1.5,
duration_multiplier=1.1, seed=42, ref_duration=10.0):
"""Generate audio. Returns (waveform_path, duration_seconds)."""
t_total = time.time()
# Duration + target shape
gen_dur = estimate_duration(prompt, duration_multiplier)
fps = 25.0
n_frames = int(round(gen_dur * fps)) + 1
n_frames = ((n_frames - 1 + 4) // 8) * 8 + 1
pixel_shape = VideoPixelShape(batch=1, frames=n_frames, height=64, width=64, fps=fps)
target_shape = AudioLatentShape.from_video_pixel_shape(pixel_shape)
audio_tools = AudioLatentTools(patchifier=self.patchifier, target_shape=target_shape)
# Initial state
state = audio_tools.create_initial_state(device=self.device, dtype=self.dtype)
# Voice ref conditioning
if voice_ref and os.path.exists(voice_ref):
t0 = time.time()
voice = decode_audio_from_file(voice_ref, self.device, 0.0, ref_duration)
w = voice.waveform
if w.dim() == 2:
if w.shape[0] == 1:
w = w.repeat(2, 1)
w = w.unsqueeze(0)
elif w.dim() == 3 and w.shape[1] == 1:
w = w.repeat(1, 2, 1)
target_samples = int(ref_duration * voice.sampling_rate)
if w.shape[-1] < target_samples:
w = w.repeat(1, 1, (target_samples // w.shape[-1]) + 1)
w = w[..., :target_samples]
peak = w.abs().max()
if peak > 0:
w = w * (10 ** (-4.0 / 20) / peak)
voice = Audio(waveform=w, sampling_rate=voice.sampling_rate)
ref_latent = self._audio_conditioner(lambda enc: vae_encode_audio(voice, enc, None))
cond = AudioConditionByReferenceLatent(latent=ref_latent.to(self.device, self.dtype), strength=1.0)
state = cond.apply_to(state, audio_tools)
logging.info(f"Voice ref: {time.time()-t0:.2f}s")
# Noise
gen = torch.Generator(device=self.device).manual_seed(seed)
noiser = GaussianNoiser(generator=gen)
state = noiser(state, noise_scale=1.0)
# Prompt encode
t0 = time.time()
prompts = [prompt, DEFAULT_NEG] if cfg_scale > 1.0 else [prompt]
ctx = self._prompt_encoder(prompts, streaming_prefetch_count=None)
a_ctx = ctx[0].audio_encoding
a_ctx_neg = ctx[1].audio_encoding if cfg_scale > 1.0 else None
logging.info(f"Prompt: {time.time()-t0:.2f}s")
# Denoiser
guider = MultiModalGuider(
params=MultiModalGuiderParams(
cfg_scale=cfg_scale, stg_scale=stg_scale,
stg_blocks=[29], rescale_scale=0.0, modality_scale=1.0,
),
negative_context=a_ctx_neg,
)
denoiser = GuidedDenoiser(
v_context=None, a_context=a_ctx,
video_guider=None, audio_guider=guider,
)
# Sigmas
sigmas = LTX2Scheduler().execute(steps=30, latent=state.latent).to(self.device)
# Denoise
t0 = time.time()
x0 = X0Model(self._velocity_model)
_, audio_state = euler_denoising_loop(
sigmas=sigmas, video_state=None, audio_state=state,
stepper=EulerDiffusionStep(), transformer=x0, denoiser=denoiser,
)
logging.info(f"Denoise (30 steps): {time.time()-t0:.2f}s")
# Strip + unpatchify + decode
audio_state = audio_tools.clear_conditioning(audio_state)
audio_state = audio_tools.unpatchify(audio_state)
t0 = time.time()
decoded = self._audio_decoder(audio_state.latent)
logging.info(f"Decode: {time.time()-t0:.2f}s")
total = time.time() - t_total
dur = decoded.waveform.shape[-1] / decoded.sampling_rate
logging.info(f"Total: {total:.2f}s for {dur:.1f}s audio")
return decoded.waveform, decoded.sampling_rate
def generate_to_file(self, prompt, output, watermark: bool = True, **kwargs):
waveform, sr = self.generate(prompt, **kwargs)
wav_cpu = waveform.cpu().float()
if watermark:
try:
import numpy as np, perth
if not hasattr(self, "_perth"):
self._perth = perth.PerthImplicitWatermarker()
mono = wav_cpu.mean(dim=0).numpy() if wav_cpu.shape[0] > 1 else wav_cpu[0].numpy()
mono_wm = self._perth.apply_watermark(mono, sample_rate=sr)
mono_wm_t = torch.from_numpy(np.asarray(mono_wm, dtype=np.float32)).unsqueeze(0)
wav_cpu = mono_wm_t if wav_cpu.shape[0] == 1 else mono_wm_t.repeat(wav_cpu.shape[0], 1)
except Exception as e:
logging.warning(f"Perth watermark skipped ({e})")
torchaudio.save(output, wav_cpu, sr)
logging.info(f"Saved: {output}")
return output
if __name__ == "__main__":
import argparse
p = argparse.ArgumentParser()
p.add_argument("--device", default="cuda")
p.add_argument("--dtype", default="fp16", choices=["fp16", "bf16"])
p.add_argument("--no-compile", action="store_true")
p.add_argument("--no-bnb-4bit", action="store_true",
help="Disable bitsandbytes 4-bit path (default: on, since the default "
"unsloth Gemma checkpoint is pre-quantized).")
args = p.parse_args()
server = TTSServer(device=args.device, dtype=args.dtype, compile_model=not args.no_compile,
bnb_4bit=not args.no_bnb_4bit)
# First call - includes any warmup
logging.info("=== First request ===")
server.generate_to_file(
prompt='A woman speaks clearly, "The weather today will be sunny."',
output="/tmp/warm_test1.wav",
voice_ref="/mnt/persistent0/manmay/expressive/female_radio_nikole/female_radio_nikole.wav",
)
# Second call - should be much faster (models already warm)
logging.info("\n=== Second request (warm) ===")
server.generate_to_file(
prompt='A man speaks excitedly, "This is amazing, I cannot believe it!"',
output="/tmp/warm_test2.wav",
voice_ref="/mnt/persistent0/manmay/expressive/male_arnie/male_arnie.mp3",
)
|