psegmar commited on
Commit
e3943e1
·
verified ·
1 Parent(s): 7278420

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +98 -0
README.md CHANGED
@@ -1,4 +1,19 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  - config_name: longform
4
  features:
@@ -74,3 +89,86 @@ configs:
74
  - split: test_2022
75
  path: segments/test_2022-*
76
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-nc-nd-4.0
3
+ task_categories:
4
+ - automatic-speech-recognition
5
+ language:
6
+ - en
7
+ tags:
8
+ - particle-physics
9
+ - speech-corpus
10
+ - domain-adaptation
11
+ - longform
12
+ - segments
13
+ - manual-transcription
14
+ - cern
15
+ size_categories:
16
+ - 100K<n<1M
17
  dataset_info:
18
  - config_name: longform
19
  features:
 
89
  - split: test_2022
90
  path: segments/test_2022-*
91
  ---
92
+
93
+ # LHCP-ASR
94
+
95
+ This dataset is another version of the [LHCP-ASR](https://www.mllp.upv.es/lhcp-asr) corpus, an English speech dataset for narrow-domain ASR benchmarking in high-energy physics. Unlike the original distribution, which includes video and slides, this version focuses entirely on audio-text pairs
96
+
97
+ DESCRIPTION
98
+ -----------
99
+
100
+ The speech data are **30 hours** of LHCP plenary conference talks (2020, 2022) with manual (human) verbatim transcriptions and **205 hours** of LHCP conference talks (2020-2022) with automatic verbatim transcriptions (pseudo-labels) for training/adaptation. This version has been released in two formats: `segments` of the talks (less than 30s each) and `longform`, which provides the full talk.
101
+
102
+ ### Data structure
103
+ Each sample in the dataset contains:
104
+ * `audio`
105
+ * `transcription`
106
+
107
+ USAGE
108
+ -----
109
+
110
+ You can load this dataset directly using the `datasets` library:
111
+
112
+ ```python
113
+ from datasets import load_dataset
114
+
115
+ # Segmented version
116
+ segmented_dataset = load_dataset("mllp/LHCP-ASR", "segments")
117
+
118
+ # Longform version
119
+ longform_dataset = load_dataset("mllp/LHCP-ASR", "longform")
120
+ ````
121
+
122
+ Both configurations (`longform` and `segments`) include the following splits:
123
+ - `train`
124
+ - `dev_2020`
125
+ - `dev_2022`
126
+ - `test_2020`
127
+ - `test_2022`
128
+
129
+ CITATION
130
+ --------
131
+
132
+ If you use this dataset, please cite the original work:
133
+
134
+ ```bibtex
135
+ @inproceedings{santamariajorda25_interspeech,
136
+ title = {{LHCP-ASR: An English Speech Corpus of High-Energy Particle Physics Talks for Narrow-Domain ASR Benchmarking}},
137
+ author = {Jaume Santamaría-Jordà and Pablo Segovia-Martínez and Gonçal V. {Garcés Díaz-Munío} and Joan Albert Silvestre-Cerdà and Adrià Giménez and Rubén {Gaspar Aparicio} and René {Fernández Sánchez} and Jorge Civera and Albert Sanchis and Alfons Juan},
138
+ year = {2025},
139
+ booktitle = {{Interspeech 2025}},
140
+ pages = {4033--4037},
141
+ doi = {10.21437/Interspeech.2025-2630},
142
+ issn = {2958-1796},
143
+ }
144
+ ```
145
+
146
+ For more details on the original dataset, visit [www.mllp.upv.es/lhcp-asr](https://www.mllp.upv.es/lhcp-asr).
147
+
148
+ LEGAL DISCLAIMER
149
+ ---------------
150
+ Speech and text data were provided by the [European Organization
151
+ for Nuclear Research (CERN)](https://home.cern/) under PO OV9177345.
152
+ The following disclaimers are those available in the [CERN Document Server (CDS)](https://cds.cern.ch/) repository on May 30th, 2025:
153
+
154
+ #### CERN Document Server - Terms and Conditions
155
+ [![DOI](https://repository.cern/badge/DOI/10.17181/s2cm2-jaj10.svg)](https://doi.org/10.17181/s2cm2-jaj10)
156
+
157
+ Use of the CERN Document Server service (hereafter "CDS") denotes agreement with the following terms of use:
158
+
159
+ * CDS is provided free of charge. It serves as a comprehensive institutional repository and dissemination platform for the research and historical output produced by CERN, the European Organization for Nuclear Research, and its members of personnel. See Content Policy [1] for more details.
160
+ * By uploading content to CDS, the content provider affirms that such content complies with all applicable laws, licence conditions and third party rights, and shall hold CERN free and harmless from any related liability.
161
+ * All content is provided "as is" and without warranty of any kind. The user shall hold CERN and individual content providers free and harmless from any related liability in connection with its use of such content.
162
+ * Users shall respect copyright and all applicable licence conditions. The download and use of content from CDS does not amount to a transfer of intellectual property.
163
+ * CERN reserves the right, without notice or liability, and at its sole discretion, to restrict or remove a user's access or remove any uploaded content, where it considers that use of CDS interferes with its operations or violates these Terms and Conditions, and/or applicable laws.
164
+ * CERN bases CDS on leading technologies and architectures, operated within the limits of its financial and human resources and made available by CERN on an "as is" and "best efforts" basis. Access to, availability and use of CDS is not guaranteed nor can be expected.
165
+ * CERN excludes and disclaims all liability for damage resulting from users' access, or inability to access, or use of CDS.
166
+ * These terms and conditions of use are subject to change by CERN at any time and without notice, other than through posting the updated terms on the CDS website. Any revised terms and conditions of use shall become effective immediately upon posting.
167
+
168
+ If you have any questions or comments with respect to CDS, or if you are unsure whether your intended use is in line with these Terms and Conditions, or if you seek permission for a use that does not fall within these Terms and Conditions, please contact CDS support.
169
+
170
+ [1] CDS Content Policy [![DOI](https://repository.cern/badge/DOI/10.17181/8sm4v-js382.svg)](https://doi.org/10.17181/8sm4v-js382)
171
+
172
+ LICENSE
173
+ -------
174
+ This dataset is licenced under CC-BY-NC-ND 4.0. To view a copy of this licence, visit https://creativecommons.org/licenses/by-nc-nd/4.0/