Spaces:
Running
on
Zero
Running
on
Zero
File size: 14,441 Bytes
7bfbdc3 |
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 |
#!/usr/bin/env python3
"""
Pre-compute EMOVA speech tokenizer codes for audio datasets.
Supported dataset types:
- video-speech : CSV index with truncated WAV clips (e.g., OpenVid speech)
- librispeech : LibriSpeech directory structure with FLAC audio
- instructs2s : InstructS2S-200K style user/assistant WAV pairs
Examples
--------
# VideoSpeech
python MMaDA/precompute_video_speech_tokens.py \\
--dataset-type video-speech \\
--index /home/work/AIDAS/data/video-speech/openvid-speech.csv \\
--audio-root /home/work/AIDAS/data/video-speech/openvid-speech-trunc \\
--output /home/work/AIDAS/cache/video_speech_tokens
# LibriSpeech
python MMaDA/precompute_video_speech_tokens.py \\
--dataset-type librispeech \\
--audio-root /home/work/AIDAS/data/audio/LibriSpeech \\
--librispeech-subsets train-clean-360 train-clean-100 \\
--output /home/work/AIDAS/cache/librispeech_tokens
# InstructS2S (pairs.txt assumed under audio root)
python MMaDA/precompute_video_speech_tokens.py \\
--dataset-type instructs2s \\
--audio-root /home/work/AIDAS/data/InstructS2S-200K/en/wav \\
--output /home/work/AIDAS/cache/instructs2s_tokens
"""
import argparse
import csv
import hashlib
import os
import sys
import tempfile
from pathlib import Path
from typing import Iterable, Iterator, List, Set
import soundfile as sf
import torch
from tqdm import tqdm
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from models.modeling_emova_speech_tokenizer import EMOVASpeechTokenizer # noqa: E402
def iter_video_speech_audio(index_path: Path, audio_root: Path) -> Iterator[Path]:
"""
Yields audio paths from the VideoSpeech index CSV.
"""
with index_path.open("r", newline="") as csvfile:
reader = csv.reader(csvfile)
for row in reader:
if not row:
continue
base = row[0].strip().removesuffix(".wav")
if not base:
continue
audio_path = audio_root / f"{base}.wav"
if audio_path.is_file():
yield audio_path
def iter_librispeech_audio(audio_root: Path, subsets: Iterable[str]) -> Iterator[Path]:
"""
Iterates through LibriSpeech FLAC files for the provided subsets.
"""
for subset in subsets:
subset_dir = audio_root / subset
if not subset_dir.exists():
raise FileNotFoundError(f"LibriSpeech subset not found: {subset_dir}")
speakers = sorted(p for p in subset_dir.iterdir() if p.is_dir())
for speaker_dir in speakers:
chapters = sorted(p for p in speaker_dir.iterdir() if p.is_dir())
for chapter_dir in chapters:
for flac_path in sorted(chapter_dir.glob("*.flac")):
yield flac_path
def iter_instructs2s_audio(audio_root: Path, pairs_file: Path | None = None) -> Iterator[Path]:
"""
Yields unique audio paths from an InstructS2S root directory.
If pairs_file is provided (or found under audio_root), it's expected to contain
two space-separated paths per line: user assistant.
Otherwise, the directory tree is scanned similarly to Speech2SpeechDataset.
"""
resolved_root = audio_root.expanduser().resolve()
if pairs_file is None:
candidate = resolved_root / "pairs.txt"
if candidate.exists():
pairs_file = candidate
if pairs_file is not None:
with Path(pairs_file).open("r") as fh:
for line in fh:
line = line.strip()
if not line:
continue
parts = line.split()
if len(parts) >= 2:
user_path = Path(parts[0])
if not user_path.is_absolute():
user_path = resolved_root / user_path
asst_path = Path(parts[1])
if not asst_path.is_absolute():
asst_path = resolved_root / asst_path
if user_path.is_file():
yield user_path
if asst_path.is_file():
yield asst_path
return
dirs = [p for p in resolved_root.glob("*") if p.is_dir()]
for dir_path in dirs:
dir_name = dir_path.name
k = 1
while True:
user_wav = dir_path / f"{dir_name}-{k}-user.wav"
assistant_wav = dir_path / f"{dir_name}-{k}-assistant.wav"
if user_wav.is_file() and assistant_wav.is_file():
yield user_wav
yield assistant_wav
k += 1
continue
break
def hash_path(path: Path) -> str:
"""Returns a SHA-1 hex digest for the absolute path."""
abs_path = os.path.abspath(path)
return hashlib.sha1(abs_path.encode("utf-8")).hexdigest()
def token_output_path(output_root: Path, audio_path: Path) -> Path:
"""Resolves the on-disk location for cached tokens corresponding to audio_path."""
digest = hash_path(audio_path)
return output_root / digest[:2] / digest[2:4] / f"{digest}.pt"
def encode_audio(tokenizer: EMOVASpeechTokenizer, audio_path: Path) -> torch.Tensor:
"""
Encodes an audio file to discrete tokens, converting non-WAV inputs on the fly.
"""
suffix = audio_path.suffix.lower()
if suffix == ".wav":
return tokenizer.encode(str(audio_path)).cpu()
data, sample_rate = sf.read(str(audio_path))
tmp_file = tempfile.NamedTemporaryFile(suffix=".wav", delete=False)
try:
sf.write(tmp_file.name, data, sample_rate)
tokens = tokenizer.encode(tmp_file.name).cpu()
finally:
tmp_file.close()
try:
os.remove(tmp_file.name)
except OSError:
pass
return tokens
def gather_audio_paths(args) -> List[Path]:
if args.dataset_type == "video-speech":
return list(iter_video_speech_audio(args.index, args.audio_root))
if args.dataset_type == "librispeech":
return list(iter_librispeech_audio(args.audio_root, args.librispeech_subsets))
# instructs2s
paths = list(iter_instructs2s_audio(args.audio_root, args.pairs_file))
# Deduplicate while preserving order
seen: Set[Path] = set()
unique_paths: List[Path] = []
for path in paths:
if path not in seen:
seen.add(path)
unique_paths.append(path)
return unique_paths
def split_into_shards(items: List[Path], shard_count: int) -> List[List[Path]]: # pragma: no cover - simple helper
shard_count = max(1, shard_count)
shard_size = (len(items) + shard_count - 1) // shard_count
return [items[i * shard_size : (i + 1) * shard_size] for i in range(shard_count)]
def process_shard(
shard_id: int,
audio_paths: List[Path],
device: str,
tokenizer_name: str,
output_root: Path,
overwrite: bool,
dataset_type: str,
) -> tuple[int, int, List[Path]]:
if not audio_paths:
return 0, 0, []
device_obj = torch.device(device)
if device_obj.type == "cuda":
torch.cuda.set_device(device_obj)
tokenizer = EMOVASpeechTokenizer.from_pretrained(tokenizer_name).to(device_obj)
tokenizer.eval()
total = 0
skipped = 0
desc = f"{dataset_type} worker {shard_id}"
failed_paths: List[Path] = []
for audio_path in tqdm(audio_paths, desc=desc, position=shard_id, leave=False):
out_path = token_output_path(output_root, audio_path)
if out_path.exists() and not overwrite:
skipped += 1
continue
out_path.parent.mkdir(parents=True, exist_ok=True)
try:
tokens = encode_audio(tokenizer, audio_path)
except Exception as exc: # pragma: no cover - runtime diagnostics
tqdm.write(f"[WARN][worker {shard_id}] Failed to encode {audio_path}: {exc}")
failed_paths.append(audio_path)
continue
tmp_path = out_path.with_suffix(out_path.suffix + ".tmp")
torch.save(tokens, tmp_path)
os.replace(tmp_path, out_path)
total += 1
return total, skipped, failed_paths
def main():
parser = argparse.ArgumentParser(description="Pre-compute speech tokens for audio datasets.")
parser.add_argument(
"--dataset-type",
"--dataset_type",
dest="dataset_type",
choices=["video-speech", "librispeech", "instructs2s"],
default="video-speech",
help="Dataset type to process.",
)
parser.add_argument(
"--index",
type=Path,
help="CSV index for video-speech datasets (required for dataset-type=video-speech).",
)
parser.add_argument(
"--audio-root",
type=Path,
required=True,
help="Root directory containing audio files. For LibriSpeech this should be the LibriSpeech root.",
)
parser.add_argument(
"--librispeech_subsets",
nargs="+",
default=None,
help="LibriSpeech subsets to process (e.g., train-clean-360). Required when dataset-type=librispeech.",
)
parser.add_argument(
"--pairs-file",
"--pairs_file",
type=Path,
default=None,
help="Optional pairs.txt to use for instructs2s dataset.",
)
parser.add_argument(
"--output",
type=Path,
required=True,
help="Directory to store the precomputed token tensors.",
)
parser.add_argument(
"--tokenizer",
type=str,
default="Emova-ollm/emova_speech_tokenizer_hf",
help="Name or path of the EMOVA speech tokenizer checkpoint to use.",
)
parser.add_argument(
"--overwrite",
action="store_true",
help="Recompute and overwrite existing token files.",
)
parser.add_argument(
"--device",
type=str,
default="cuda" if torch.cuda.is_available() else "cpu",
help="Device for running the tokenizer encoder.",
)
parser.add_argument(
"--devices",
nargs="+",
default=None,
help="Optional list of devices per worker (e.g., cuda:0 cuda:1 ...). Overrides --device/--num-workers.",
)
parser.add_argument(
"--num-workers",
type=int,
default=1,
help="Number of parallel workers (ignored if --devices is provided).",
)
args = parser.parse_args()
if args.index is not None:
args.index = args.index.expanduser().resolve()
if not args.index.exists():
parser.error(f"Index file not found: {args.index}")
if args.dataset_type == "video-speech" and args.index is None:
parser.error("--index is required when dataset-type=video-speech.")
if args.dataset_type == "librispeech" and not args.librispeech_subsets:
parser.error("--librispeech-subsets must be provided when dataset-type=librispeech.")
args.audio_root = args.audio_root.expanduser().resolve()
args.output = args.output.expanduser().resolve()
if args.pairs_file is not None:
args.pairs_file = Path(args.pairs_file).expanduser().resolve()
if not args.pairs_file.exists():
parser.error(f"pairs-file not found: {args.pairs_file}")
args.output.mkdir(parents=True, exist_ok=True)
audio_paths = gather_audio_paths(args)
if not audio_paths:
print("No audio files found. Nothing to encode.")
return
if args.devices:
worker_devices = args.devices
else:
worker_devices = [args.device] * max(1, args.num_workers)
if len(worker_devices) == 1:
device = torch.device(worker_devices[0])
tokenizer = EMOVASpeechTokenizer.from_pretrained(args.tokenizer).to(device)
tokenizer.eval()
total = 0
skipped = 0
failed_paths: List[Path] = []
for audio_path in tqdm(audio_paths, desc="Encoding clips"):
out_path = token_output_path(args.output, audio_path)
if out_path.exists() and not args.overwrite:
skipped += 1
continue
out_path.parent.mkdir(parents=True, exist_ok=True)
try:
tokens = encode_audio(tokenizer, audio_path)
except Exception as exc:
tqdm.write(f"[WARN] Failed to encode {audio_path}: {exc}")
failed_paths.append(audio_path)
continue
tmp_path = out_path.with_suffix(out_path.suffix + ".tmp")
torch.save(tokens, tmp_path)
os.replace(tmp_path, out_path)
total += 1
if failed_paths:
failed_log = args.output / "failed_paths.log"
with failed_log.open("a") as fh:
for path in failed_paths:
fh.write(f"{path}\n")
print(f"Wrote {len(failed_paths)} failed paths to {failed_log}")
print(f"Done. Encoded {total} clips. Skipped {skipped} existing entries.")
return
shards = split_into_shards(audio_paths, len(worker_devices))
from multiprocessing import get_context
ctx = get_context("spawn")
futures = []
with ctx.Pool(len(worker_devices)) as pool:
for shard_id, (device_str, shard_paths) in enumerate(zip(worker_devices, shards)):
futures.append(
pool.apply_async(
process_shard,
(
shard_id,
shard_paths,
device_str,
args.tokenizer,
args.output,
args.overwrite,
args.dataset_type,
),
)
)
pool.close()
pool.join()
total = 0
skipped = 0
failed_paths: List[Path] = []
for fut in futures:
shard_total, shard_skipped, shard_failed = fut.get()
total += shard_total
skipped += shard_skipped
failed_paths.extend(shard_failed)
if failed_paths:
failed_log = args.output / "failed_paths.log"
with failed_log.open("a") as fh:
for path in failed_paths:
fh.write(f"{path}\n")
print(f"Wrote {len(failed_paths)} failed paths to {failed_log}")
print(f"Done. Encoded {total} clips. Skipped {skipped} existing entries.")
if __name__ == "__main__":
main()
|