Datasets:
Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html>
<h"... is not valid JSON
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Dataset with DAC Codes
This dataset adds DAC codec codes to parler-tts/libritts_r_filtered.
Dataset Description
Each sample contains:
- audio: Audio resampled to 44.1kHz (DAC's native rate)
- codes: 9-layer DAC codec codes (list of 9 lists of integers, vocab 0-1027)
- text: Text transcription (from
text_normalizedcolumn)
Stats
- Source: parler-tts/libritts_r_filtered
- Splits: train.clean.100
- Samples: 32,215
- Audio Sample Rate: 44.1kHz
- Codec: DAC (descript-audio-codec) with 9 codebooks, vocab size 1028
Usage
from datasets import load_dataset
ds = load_dataset("mazesmazes/libritts-dac", split="train")
sample = ds[0]
codes = sample["codes"] # 9 lists of codec indices
text = sample["text"]
License
Same as source dataset.
- Downloads last month
- 111