NMikka commited on
Commit
965fee3
·
verified ·
1 Parent(s): c680785

Update dataset card with train/eval/test split info

Browse files
Files changed (1) hide show
  1. README.md +23 -9
README.md CHANGED
@@ -49,7 +49,7 @@ dataset_info:
49
  dataset_size: 6450725712.362
50
  ---
51
 
52
- # Common Voice Georgian — Cleaned for mostly TTS/STT
53
 
54
  A high-quality subset of [Mozilla Common Voice Georgian](https://commonvoice.mozilla.org/en/datasets) cleaned and filtered specifically for text-to-speech fine-tuning.
55
 
@@ -57,14 +57,22 @@ A high-quality subset of [Mozilla Common Voice Georgian](https://commonvoice.moz
57
 
58
  | | |
59
  |---|---|
60
- | **Samples** | 21,421 |
61
- | **Duration** | 35.0 hours |
62
  | **Speakers** | 12 |
63
  | **Sample rate** | 24 kHz mono WAV |
64
  | **Language** | Georgian (kat) |
65
  | **Source** | Mozilla Common Voice 19.0 |
66
  | **License** | CC-0 (public domain) |
67
 
 
 
 
 
 
 
 
 
68
  ## Quality Pipeline
69
 
70
  The dataset was cleaned from ~71K raw Common Voice recordings through a 6-stage pipeline:
@@ -114,11 +122,17 @@ from datasets import load_dataset
114
 
115
  ds = load_dataset("NMikka/Common-Voice-Geo-Cleaned")
116
 
117
- # Access a sample
118
- sample = ds["train"][0]
119
- print(sample["text"]) # Georgian text
120
- print(sample["audio"]) # {'array': [...], 'sampling_rate': 24000}
121
- print(sample["speaker_id"]) # Speaker ID (0-11)
 
 
 
 
 
 
122
  ```
123
 
124
  ## Citation
@@ -132,4 +146,4 @@ If you use this dataset, please cite Mozilla Common Voice:
132
  booktitle={LREC},
133
  year={2020}
134
  }
135
- ```
 
49
  dataset_size: 6450725712.362
50
  ---
51
 
52
+ # Common Voice Georgian — Cleaned for TTS/STT
53
 
54
  A high-quality subset of [Mozilla Common Voice Georgian](https://commonvoice.mozilla.org/en/datasets) cleaned and filtered specifically for text-to-speech fine-tuning.
55
 
 
57
 
58
  | | |
59
  |---|---|
60
+ | **Total samples** | 21,421 |
61
+ | **Total duration** | 35.0 hours |
62
  | **Speakers** | 12 |
63
  | **Sample rate** | 24 kHz mono WAV |
64
  | **Language** | Georgian (kat) |
65
  | **Source** | Mozilla Common Voice 19.0 |
66
  | **License** | CC-0 (public domain) |
67
 
68
+ ## Splits
69
+
70
+ | Split | Samples | Description |
71
+ |-------|---------|-------------|
72
+ | `train` | 20,300 | Training data |
73
+ | `eval` | 1,001 | Validation data |
74
+ | `test` | 120 | Best quality speaker references (top NISQA scores) |
75
+
76
  ## Quality Pipeline
77
 
78
  The dataset was cleaned from ~71K raw Common Voice recordings through a 6-stage pipeline:
 
122
 
123
  ds = load_dataset("NMikka/Common-Voice-Geo-Cleaned")
124
 
125
+ # Training
126
+ for sample in ds["train"]:
127
+ print(sample["text"], sample["duration"])
128
+
129
+ # Validation
130
+ for sample in ds["eval"]:
131
+ print(sample["text"])
132
+
133
+ # Best speaker references (for TTS inference/voice cloning)
134
+ for sample in ds["test"]:
135
+ print(sample["text"], sample["speaker_id"])
136
  ```
137
 
138
  ## Citation
 
146
  booktitle={LREC},
147
  year={2020}
148
  }
149
+ ```