Cong123779 commited on
Commit
2584423
·
verified ·
1 Parent(s): abbd94d

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +62 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - vi
4
+ - en
5
+ license: cc-by-4.0
6
+ task_categories:
7
+ - automatic-speech-recognition
8
+ pretty_name: AI2Text Bilingual ASR Dataset (Vietnamese + English)
9
+ size_categories:
10
+ - 100K<n<1M
11
+ ---
12
+
13
+ # AI2Text – Bilingual ASR Dataset
14
+
15
+ A large-scale bilingual (Vietnamese + English) speech dataset used to train
16
+ the `Cong123779/AI2Text-Bilingual-ASR` model.
17
+
18
+ ## Dataset Summary
19
+
20
+ | Split | Samples | Notes |
21
+ |-------|---------|-------|
22
+ | train | ~194,167 | 77% Vietnamese, 23% English |
23
+ | val | ~30,123 | held-out validation |
24
+
25
+ ## Data Fields
26
+
27
+ Each `manifest.csv` has the following columns:
28
+
29
+ | Column | Description |
30
+ |--------|-------------|
31
+ | `id` | Unique sample identifier |
32
+ | `transcript` | Ground-truth text (prefixed with `<\|vi\|>` or `<\|en\|>`) |
33
+ | `audio_path` | Relative path to the `.wav` file |
34
+ | `duration` | Duration in seconds |
35
+ | `words_json` | JSON array of word-level timestamps |
36
+
37
+ ## Audio Format
38
+
39
+ - Sample rate: **16,000 Hz**
40
+ - Channels: **Mono**
41
+ - Format: **WAV**
42
+
43
+ ## Language Distribution
44
+
45
+ - **Vietnamese** (`<|vi|>` token): ~77%
46
+ - **English** (`<|en|>` token): ~23%
47
+
48
+ ## Usage
49
+
50
+ ```python
51
+ import pandas as pd
52
+ from datasets import load_dataset
53
+
54
+ # Load only the manifest CSVs (fast, no audio)
55
+ ds = load_dataset("Cong123779/AI2Text-Bilingual-ASR-Dataset",
56
+ data_files={"train": "train/manifest.csv",
57
+ "val": "val/manifest.csv"})
58
+ print(ds)
59
+ ```
60
+
61
+ ## License
62
+ Creative Commons Attribution 4.0 (CC-BY 4.0)