File size: 689 Bytes
b9c1183 | 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 | ---
license: apache-2.0
pretty_name: Test500
---
# Test500
Tar-sharded speech / TTS dataset with a custom Hugging Face loader.
Designed for **streaming**, **low memory usage**, and **raw byte access**.
## Loading
```python
from datasets import load_dataset
ds = load_dataset(
"thangylvp/test500",
split="train",
trust_remote_code=True,
)
```
## Sample format
Each sample corresponds to one `(channel, id)`:
- `channel` (string)
- `id` (string)
- `transcribe_assembly` (string)
- `tokenize_vibevoice` (bytes)
## Notes
- Data is stored in `batch_*.tar` shards
- Files for each sample are written contiguously in tar
- Audio and binary features are returned as raw bytes |