--- license: other license_name: see-source-datasets tags: - audio - tts - latents - dac-vae - speech size_categories: - 100K Original audio is licensed under the respective source dataset licenses. > This dataset distributes only derived latent representations. --- ## Usage ### Extract ```bash unzip latents.zip -d data/ # → data/latents/cv/, data/latents/ps/, data/latents/ht2/ ``` ### Load a single sample ```python import torch sample = torch.load("data/latents/cv/000000049.pt", weights_only=False) z = sample["z"] # Tensor[T, 128], float16 text = sample["text"] # str length = sample["length"] # int == z.shape[0] ``` ### Use in EnvAudioEdit training (local latents mode) Set `use_local_latents: true` in your training config and point `latent_dir` at the extracted directories: ```yaml # configs/train_small_phase1.yaml use_local_latents: true latent_dir: - "data/latents/cv" - "data/latents/ps" - "data/latents/ht2" ``` Then launch training: ```bash accelerate launch scripts/train_phase1.py --config configs/train_small_phase1.yaml ``` --- ## Encoding Environment | Package | Version | |---|---| | onnxruntime-gpu | 1.23.2 | | nvidia-cudnn-cu12 | 9.5.1.17 | | torch | 2.11.0+cu130 | > cuDNN 9.20 has a Conv1D bug; 8.x breaks PyTorch — pin to 9.5.1.17. --- ## Related - Model checkpoints: [`/envtts-small-phase1`](https://huggingface.co//envtts-small-phase1) - Architecture & training plan: see the model repo README.