|
# SoccerNet-Echoes |
|
Official repo for the paper: [SoccerNet-Echoes: A Soccer Game Audio Commentary Dataset](https://arxiv.org/abs/2405.07354). |
|
|
|
## Dataset |
|
Each folder inside the **Dataset** directory is categorized by league, season, and game. Within these folders, JSON files contain the transcribed and translated game commentary. |
|
|
|
```python |
|
|
|
|
|
π Dataset |
|
βββ π whisper_v1 |
|
β βββ π england_epl |
|
β β βββ π
2014-2015 |
|
β β β βββ β½ 2016-03-02 - 23-00 Liverpool 3 - 0 Manchester City |
|
β β β βββ βοΈ 1_asr.json |
|
β β β βββ βοΈ 2_asr.json |
|
β β βββ π
2015-2016 |
|
β β βββ ... |
|
β βββ π europe_uefa-champions-league |
|
β βββ ... |
|
βββ π whisper_v1_en |
|
β βββ ... |
|
βββ π whisper_v2 |
|
β βββ ... |
|
βββ π whisper_v2_en |
|
β βββ ... |
|
βββ π whisper_v3 |
|
β βββ ... |
|
|
|
whisper_v1: Contains ASR from Whisper v1. |
|
whisper_v1_en: English-translated datasets from Whisper v1. |
|
whisper_v2: Contains ASR from Whisper v2. |
|
whisper_v2_en: English-translated datasets from Whisper v2. |
|
whisper_v3: Contains ASR from Whisper v3. |
|
``` |
|
|
|
Each JSON file has the following format: |
|
```python |
|
|
|
{ |
|
"segments": { |
|
segment index (int):[ |
|
start time in second (float), |
|
end time in second (float), |
|
transcribed text from ASR |
|
] |
|
.... |
|
} |
|
} |
|
``` |
|
The top-level object is named segments. |
|
It contains an object where each key represents a unique segment index (e.g., "0", "1", "2", etc.). |
|
Each segment index object has the following properties: |
|
```python |
|
start_time: A number representing the starting time of the segment in seconds. |
|
end_time: A number representing the ending time of the segment in seconds. |
|
text: A string containing the textual content of the commentary segment. |
|
``` |
|
|
|
|