Update README.md
Browse files
README.md
CHANGED
|
@@ -40,7 +40,38 @@ If you want to download the repository locally via the Hugging Face CLI, run:
|
|
| 40 |
git lfs install
|
| 41 |
git clone https://huggingface.co/datasets/PeacefulData/CoVoGER
|
| 42 |
```
|
|
|
|
|
|
|
| 43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
|
| 45 |
```bib
|
| 46 |
@inproceedings{yang-etal-2025-covoger,
|
|
|
|
| 40 |
git lfs install
|
| 41 |
git clone https://huggingface.co/datasets/PeacefulData/CoVoGER
|
| 42 |
```
|
| 43 |
+
Dataset Structure
|
| 44 |
+
CoVoGER provides 5-best lists generated by standard ASR and ST models (Whisper and SeamlessM4T). The dataset supports ASR and ST tasks for 15 languages and 28 language pairs.
|
| 45 |
|
| 46 |
+
(Please customize the column names below to exactly match your uploaded Parquet/JSONL files.)
|
| 47 |
+
|
| 48 |
+
- audio_id: Identifier for the original audio file.
|
| 49 |
+
|
| 50 |
+
- source_language: Language of the spoken audio.
|
| 51 |
+
|
| 52 |
+
- target_language: Target language for translation (or the same as the source for ASR).
|
| 53 |
+
|
| 54 |
+
- n_best_hypotheses: A list of the 5-best transcriptions/translations generated by the base models.
|
| 55 |
+
|
| 56 |
+
reference: The ground truth text.
|
| 57 |
+
|
| 58 |
+
|
| 59 |
+
```python
|
| 60 |
+
from datasets import load_dataset
|
| 61 |
+
|
| 62 |
+
# Load the entire dataset
|
| 63 |
+
dataset = load_dataset("PeacefulData/CoVoGER")
|
| 64 |
+
|
| 65 |
+
# Print the first sample of the train split
|
| 66 |
+
print(dataset['train'][0])
|
| 67 |
+
|
| 68 |
+
```
|
| 69 |
+
|
| 70 |
+
### References
|
| 71 |
+
|
| 72 |
+
|
| 73 |
+
|
| 74 |
+
If you use CoVoGER in your research or the work may be relevant, please consider to cite our EMNLP 2025 paper, thank you!
|
| 75 |
|
| 76 |
```bib
|
| 77 |
@inproceedings{yang-etal-2025-covoger,
|