huckiyang commited on
Commit
8664e81
·
verified ·
1 Parent(s): f77faf3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +65 -3
README.md CHANGED
@@ -1,3 +1,65 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ # Add other specific ISO language codes your dataset supports, e.g., fr, de, zh
6
+ multilinguality:
7
+ - multilingual
8
+ task_categories:
9
+ - automatic-speech-recognition
10
+ - translation
11
+ - text-generation
12
+ tags:
13
+ - speech-to-text
14
+ - generative-error-correction
15
+ - n-best-list
16
+ - covost2
17
+ - common-voice
18
+ ---
19
+
20
+ # CoVoGER: A Multilingual Multitask Benchmark for Speech-to-text Generative Error Correction with Large Language Models
21
+
22
+ ## Dataset Description
23
+
24
+ Large language models (LLMs) can rewrite the N-best hypotheses from a speech-to-text model, often fixing recognition or translation errors that traditional rescoring cannot. Yet research on generative error correction (GER) has been focusing on monolingual automatic speech recognition (ASR), leaving its multilingual and multitask potential underexplored.
25
+
26
+ We introduce **CoVoGER**, a benchmark for GER that covers both ASR and speech-to-text translation (ST) across 15 languages and 28 language pairs. CoVoGER is constructed by decoding Common Voice 20.0 and CoVoST-2 with Whisper of three model sizes and SeamlessM4T of two model sizes, providing 5-best lists obtained via a mixture of beam search and temperature sampling.
27
+
28
+ - **Paper:** [CoVoGER: A Multilingual Multitask Benchmark...](https://aclanthology.org/2025.emnlp-main.320/)
29
+ - **Repository:** [GitHub - N-Orien/CoVoGER](https://github.com/N-Orien/CoVoGER)
30
+ - **Conference:** EMNLP 2025
31
+
32
+ ## Usage and Data Commands
33
+
34
+ You can easily download and load the dataset using the Hugging Face `datasets` library in Python.
35
+
36
+ ### Terminal/CLI Commands
37
+ If you want to download the repository locally via the Hugging Face CLI, run:
38
+ ```bash
39
+ # Ensure you have git-lfs installed
40
+ git lfs install
41
+ git clone https://huggingface.co/datasets/PeacefulData/CoVoGER
42
+ ```
43
+
44
+
45
+ ```bib
46
+ @inproceedings{yang-etal-2025-covoger,
47
+ title = "{C}o{V}o{GER}: A Multilingual Multitask Benchmark for Speech-to-text Generative Error Correction with Large Language Models",
48
+ author = "Yang, Zhengdong and
49
+ Wan, Zhen and
50
+ Li, Sheng and
51
+ Yang, Chao-Han Huck and
52
+ Chu, Chenhui",
53
+ editor = "Christodoulopoulos, Christos and
54
+ Chakraborty, Tanmoy and
55
+ Rose, Carolyn and
56
+ Peng, Violet",
57
+ booktitle = "Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing",
58
+ month = nov,
59
+ year = "2025",
60
+ address = "Suzhou, China",
61
+ publisher = "Association for Computational Linguistics",
62
+ url = "[https://aclanthology.org/2025.emnlp-main.320/](https://aclanthology.org/2025.emnlp-main.320/)",
63
+ pages = "6313--6325",
64
+ isbn = "979-8-89176-332-6"
65
+ }