thangylvp commited on
Commit
40168a2
·
verified ·
1 Parent(s): 3dc4b32

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ pretty_name: Test500
4
+ ---
5
+
6
+ # Test500
7
+
8
+ Tar-sharded speech / TTS dataset with a custom Hugging Face loader.
9
+ Designed for **streaming**, **low memory usage**, and **raw byte access**.
10
+
11
+ ## Loading
12
+
13
+ ```python
14
+ from datasets import load_dataset
15
+
16
+ ds = load_dataset(
17
+ "thangylvp/test500",
18
+ split="train",
19
+ trust_remote_code=True,
20
+ )
21
+ ```
22
+
23
+ ## Sample format
24
+
25
+ Each sample corresponds to one `(channel, id)`:
26
+
27
+ - `channel` (string)
28
+ - `id` (string)
29
+ - `transcribe_assembly` (string)
30
+ - `tokenize_vibevoice` (bytes)
31
+
32
+ ## Notes
33
+
34
+ - Data is stored in `batch_*.tar` shards
35
+ - Files for each sample are written contiguously in tar
36
+ - Audio and binary features are returned as raw bytes