-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathtts.py
More file actions
400 lines (352 loc) · 16.1 KB
/
tts.py
File metadata and controls
400 lines (352 loc) · 16.1 KB
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
import hashlib
import io
import os
import re
import logging
import numpy as np
import torch
import librosa
import soundfile as sf
from typing import Tuple, Optional
from http import HTTPStatus
import torchaudio
from model_loader import model_loader, ModelSource
from config.prompts import AUDIO_EDIT_CLONE_SYSTEM_PROMPT_TPL, AUDIO_EDIT_SYSTEM_PROMPT
from stepvocoder.cosyvoice2.cli.cosyvoice import CosyVoice
from vllm import SamplingParams
# Configure logging
logger = logging.getLogger(__name__)
class HTTPException(Exception):
"""Custom HTTP exception for API errors"""
def __init__(self, status_code, detail):
self.status_code = status_code
self.detail = detail
super().__init__(detail)
class StepAudioTTS:
"""
Step Audio TTS wrapper for voice cloning and audio editing tasks
Uses vLLM for high-performance inference
"""
def __init__(
self,
model_path,
audio_tokenizer,
model_source=ModelSource.AUTO,
tts_model_id=None,
quantization=None,
tensor_parallel_size=1,
gpu_memory_utilization=0.5,
max_model_len=8192,
enforce_eager=False,
dtype="bfloat16",
kv_cache_dtype=None,
max_num_seqs=None,
max_num_batched_tokens=None,
cosyvoice_dtype="float32",
cosyvoice_cuda_graph=True
):
"""
Initialize StepAudioTTS with vLLM
Args:
model_path: Model path
audio_tokenizer: Audio tokenizer for wav2token processing
model_source: Model source (auto/local/modelscope/huggingface)
tts_model_id: TTS model ID, if None use model_path
quantization: Quantization method ('awq', 'gptq', 'fp8', or None)
tensor_parallel_size: Number of GPUs for tensor parallelism
gpu_memory_utilization: GPU memory utilization ratio (0.0-1.0)
max_model_len: Maximum sequence length, affects KV cache size
enforce_eager: Disable CUDA Graphs to save GPU memory
dtype: Data type ('float16', 'bfloat16')
kv_cache_dtype: KV cache dtype ('fp8_e5m2' for 50% memory reduction)
max_num_seqs: Max concurrent sequences (lower = less memory)
max_num_batched_tokens: Max tokens per batch (lower = less activation memory)
cosyvoice_dtype: CosyVoice vocoder dtype ('float32', 'bfloat16', 'float16')
cosyvoice_cuda_graph: Enable CUDA Graph for CosyVoice (default: True)
"""
if tts_model_id is None:
tts_model_id = model_path
logger.info("🔧 StepAudioTTS loading configuration:")
logger.info(f" - model_source: {model_source}")
logger.info(f" - model_path: {model_path}")
logger.info(f" - tts_model_id: {tts_model_id}")
logger.info(f" - quantization: {quantization}")
logger.info(f" - tensor_parallel_size: {tensor_parallel_size}")
self.audio_tokenizer = audio_tokenizer
# Load LLM using vLLM
try:
self.llm, self.tokenizer, resolved_path = model_loader.load_model(
tts_model_id,
source=model_source,
quantization=quantization,
tensor_parallel_size=tensor_parallel_size,
gpu_memory_utilization=gpu_memory_utilization,
max_model_len=max_model_len,
enforce_eager=enforce_eager,
dtype=dtype,
trust_remote_code=True,
kv_cache_dtype=kv_cache_dtype,
max_num_seqs=max_num_seqs,
max_num_batched_tokens=max_num_batched_tokens,
)
logger.info(f"✅ Successfully loaded vLLM model: {tts_model_id}")
except Exception as e:
logger.error(f"❌ Failed to load model: {e}")
raise
# Load CosyVoice model
# Map dtype string to torch dtype
cosyvoice_dtype_map = {
"float32": torch.float32,
"bfloat16": torch.bfloat16,
"float16": torch.float16,
}
cosy_dtype = cosyvoice_dtype_map.get(cosyvoice_dtype, torch.float32)
logger.info(f"🎤 Loading CosyVoice with dtype={cosyvoice_dtype}, cuda_graph={cosyvoice_cuda_graph}")
self.cosy_model = CosyVoice(
os.path.join(resolved_path, "CosyVoice-300M-25Hz"),
dtype=cosy_dtype,
enable_cuda_graph=cosyvoice_cuda_graph
)
logger.info("🎤 CosyVoice model loaded successfully")
# System prompts
self.edit_clone_sys_prompt_tpl = AUDIO_EDIT_CLONE_SYSTEM_PROMPT_TPL
self.edit_sys_prompt = AUDIO_EDIT_SYSTEM_PROMPT
def clone(
self,
prompt_wav_path: str,
prompt_text: str,
target_text: str
) -> Tuple[torch.Tensor, int]:
"""
Clone voice from reference audio
Args:
prompt_wav_path: Path to reference audio file
prompt_text: Text content of reference audio
target_text: Text to synthesize with cloned voice
Returns:
Tuple[torch.Tensor, int]: Generated audio tensor and sample rate
"""
try:
logger.debug(f"Starting voice cloning: {prompt_wav_path}")
vq0206_codes, vq02_codes_ori, vq06_codes_ori, speech_feat, _, speech_embedding = (
self.preprocess_prompt_wav(prompt_wav_path)
)
# prompt_speaker = self.generate_clone_voice_id(prompt_text, prompt_wav)
prompt_speaker = "debug"
prompt_wav_tokens = self.audio_tokenizer.merge_vq0206_to_token_str(
vq02_codes_ori, vq06_codes_ori
)
token_ids = self._encode_audio_edit_clone_prompt(
target_text,
prompt_text,
prompt_speaker,
prompt_wav_tokens,
)
output_ids = self._generate(token_ids, max_tokens=8192 - len(token_ids))
logger.debug("Voice cloning generation completed")
vq0206_codes_vocoder = torch.tensor([vq0206_codes], dtype=torch.long) - 65536
return (
self.cosy_model.token2wav_nonstream(
output_ids - 65536,
vq0206_codes_vocoder,
speech_feat.to(torch.bfloat16),
speech_embedding.to(torch.bfloat16),
),
24000,
)
except Exception as e:
logger.error(f"Clone failed: {e}")
raise
def edit(
self,
prompt_wav_path: str,
prompt_text: str,
edit_type: str,
edit_info: Optional[str] = None,
target_text: Optional[str] = None
) -> Tuple[torch.Tensor, int]:
"""
Edit audio based on specified edit type
Args:
prompt_wav_path: Path to reference audio file
prompt_text: Text content of reference audio
edit_type: Type of edit (emotion, style, speed, etc.)
edit_info: Specific edit information (happy, sad, etc.)
target_text: Target text for para-linguistic editing
Returns:
Tuple[torch.Tensor, int]: Edited audio tensor and sample rate
"""
try:
logger.debug(f"Starting audio editing: {edit_type} - {edit_info}")
vq0206_codes, vq02_codes_ori, vq06_codes_ori, speech_feat, _, speech_embedding = (
self.preprocess_prompt_wav(prompt_wav_path)
)
audio_tokens = self.audio_tokenizer.merge_vq0206_to_token_str(
vq02_codes_ori, vq06_codes_ori
)
instruct_prefix = self._build_audio_edit_instruction(prompt_text, edit_type, edit_info, target_text)
prompt_tokens = self._encode_audio_edit_prompt(
self.edit_sys_prompt, instruct_prefix, audio_tokens
)
logger.debug(f"Edit instruction: {instruct_prefix}")
logger.debug(f"Encoded prompt length: {len(prompt_tokens)}")
output_ids = self._generate(prompt_tokens, max_tokens=8192 - len(prompt_tokens))
vq0206_codes_vocoder = torch.tensor([vq0206_codes], dtype=torch.long) - 65536
logger.debug("Audio editing generation completed")
return (
self.cosy_model.token2wav_nonstream(
output_ids - 65536,
vq0206_codes_vocoder,
speech_feat.to(torch.bfloat16),
speech_embedding.to(torch.bfloat16),
),
24000,
)
except Exception as e:
logger.error(f"Edit failed: {e}")
raise
def _build_audio_edit_instruction(
self,
audio_text: str,
edit_type: str,
edit_info: Optional[str] = None,
text: Optional[str] = None
) -> str:
"""Build audio editing instruction based on request"""
audio_text = audio_text.strip() if audio_text else ""
if edit_type in {"emotion", "speed"}:
if edit_info == "remove":
instruct_prefix = f"Remove any emotion in the following audio and the reference text is: {audio_text}\n"
else:
instruct_prefix = f"Make the following audio more {edit_info}. The text corresponding to the audio is: {audio_text}\n"
elif edit_type == "style":
if edit_info == "remove":
instruct_prefix = f"Remove any speaking styles in the following audio and the reference text is: {audio_text}\n"
else:
instruct_prefix = f"Make the following audio more {edit_info} style. The text corresponding to the audio is: {audio_text}\n"
elif edit_type == "denoise":
instruct_prefix = f"Remove any noise from the given audio while preserving the voice content clearly. Ensure that the speech quality remains intact with minimal distortion, and eliminate all noise from the audio.\n"
elif edit_type == "vad":
instruct_prefix = f"Remove any silent portions from the given audio while preserving the voice content clearly. Ensure that the speech quality remains intact with minimal distortion, and eliminate all silence from the audio.\n"
elif edit_type == "paralinguistic":
instruct_prefix = f"Add some non-verbal sounds to make the audio more natural, the new text is : {text}\n The text corresponding to the audio is: {audio_text}\n"
else:
raise HTTPException(
status_code=HTTPStatus.BAD_REQUEST,
detail=f"Unsupported edit_type: {edit_type}",
)
return instruct_prefix
def _generate(self, token_ids: list[int], max_tokens: int = 4096, temperature: float = 0.7) -> torch.Tensor:
"""
Generate output tokens using vLLM
Args:
token_ids: Input token IDs (including audio tokens 65536+)
max_tokens: Maximum tokens to generate
temperature: Sampling temperature
Returns:
torch.Tensor: Generated token IDs (only the generated part, not input)
"""
# Debug: analyze INPUT token distribution
audio_in = sum(1 for t in token_ids if 65536 <= t < 67584)
text_in = sum(1 for t in token_ids if t < 65536)
other_in = sum(1 for t in token_ids if t >= 67584)
logger.info(f"INPUT tokens: total={len(token_ids)}, audio(65536-67583)={audio_in}, text(<65536)={text_in}, other(>=67584)={other_in}")
if token_ids:
logger.info(f"INPUT range: min={min(token_ids)}, max={max(token_ids)}")
sampling_params = SamplingParams(
temperature=temperature,
max_tokens=max_tokens,
skip_special_tokens=False,
)
# Use prompt_token_ids directly instead of decoding to text
# This preserves audio tokens (65536+) which would be corrupted by decode
prompt = {"prompt_token_ids": token_ids}
outputs = self.llm.generate([prompt], sampling_params, use_tqdm=False)
# Extract output token IDs (vLLM only returns generated tokens, not input)
output_token_ids = list(outputs[0].outputs[0].token_ids)
# Debug: analyze token distribution
if output_token_ids:
min_tok = min(output_token_ids)
max_tok = max(output_token_ids)
audio_count = sum(1 for t in output_token_ids if 65536 <= t < 67584)
text_count = sum(1 for t in output_token_ids if t < 65536)
other_count = sum(1 for t in output_token_ids if t >= 67584)
logger.info(f"Generated {len(output_token_ids)} tokens: min={min_tok}, max={max_tok}, "
f"audio(65536-67583)={audio_count}, text(<65536)={text_count}, other(>=67584)={other_count}")
# Remove eos token if present
if len(output_token_ids) > 0 and output_token_ids[-1] == 3: # <|EOT|>
output_token_ids = output_token_ids[:-1]
output_ids = torch.tensor(output_token_ids, dtype=torch.long)
return output_ids
def _encode_audio_edit_prompt(
self, sys_prompt: str, instruct_prefix: str, audio_token_str: str
) -> list[int]:
"""Encode audio edit prompt to token sequence"""
messages = [
{"role": "system", "content": sys_prompt},
{"role": "user", "content": f"{instruct_prefix}\n{audio_token_str}\n"}
]
return self.tokenizer.apply_chat_template(messages, tokenize=True, add_generation_prompt=True)
def _encode_audio_edit_clone_prompt(
self, text: str, prompt_text: str, prompt_speaker: str, prompt_wav_tokens: str
):
sys_prompt = self.edit_clone_sys_prompt_tpl.format(
speaker=prompt_speaker,
prompt_text=prompt_text,
prompt_wav_tokens=prompt_wav_tokens
)
messages = [
{"role": "system", "content": sys_prompt},
{"role": "user", "content": f"{text}"}
]
return self.tokenizer.apply_chat_template(messages, tokenize=True, add_generation_prompt=True)
def detect_instruction_name(self, text):
instruction_name = ""
match_group = re.match(r"^([(\(][^\(\)()]*[)\)]).*$", text, re.DOTALL)
if match_group is not None:
instruction = match_group.group(1)
instruction_name = instruction.strip("()()")
return instruction_name
def process_audio_file(self, audio_path: str) -> Tuple[any, int]:
"""Process audio file and return numpy array and sample rate"""
try:
audio_data, sample_rate = librosa.load(audio_path)
logger.debug(f"Audio file processed successfully: {audio_path}")
return audio_data, sample_rate
except Exception as e:
logger.error(f"Failed to process audio file: {e}")
raise
def preprocess_prompt_wav(self, prompt_wav_path: str):
prompt_wav, prompt_wav_sr = torchaudio.load(prompt_wav_path)
if prompt_wav.shape[0] > 1:
prompt_wav = prompt_wav.mean(dim=0, keepdim=True)
# volume-normalize avoid clipping
norm = torch.max(torch.abs(prompt_wav), dim=1, keepdim=True)[0]
if norm > 0.6:
prompt_wav = prompt_wav / norm * 0.6
speech_feat, speech_feat_len = self.cosy_model.frontend.extract_speech_feat(
prompt_wav, prompt_wav_sr
)
speech_embedding = self.cosy_model.frontend.extract_spk_embedding(
prompt_wav, prompt_wav_sr
)
vq0206_codes, vq02_codes_ori, vq06_codes_ori = self.audio_tokenizer.wav2token(prompt_wav, prompt_wav_sr)
return (
vq0206_codes,
vq02_codes_ori,
vq06_codes_ori,
speech_feat,
speech_feat_len,
speech_embedding,
)
def generate_clone_voice_id(self, prompt_text, prompt_wav):
hasher = hashlib.sha256()
hasher.update(prompt_text.encode('utf-8'))
wav_data = prompt_wav.cpu().numpy()
if wav_data.size > 2000:
audio_sample = np.concatenate([wav_data.flatten()[:1000], wav_data.flatten()[-1000:]])
else:
audio_sample = wav_data.flatten()
hasher.update(audio_sample.tobytes())
voice_hash = hasher.hexdigest()[:16]
return f"clone_{voice_hash}"