cise-midoglu
commited on
Commit
β’
9b16974
1
Parent(s):
f37af87
Update README.md
Browse files
README.md
CHANGED
@@ -1,4 +1,59 @@
|
|
1 |
# SoccerNet-Echoes
|
2 |
Official repo for the paper: [SoccerNet-Echoes: A Soccer Game Audio Commentary Dataset](https://arxiv.org/abs/2405.07354).
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# SoccerNet-Echoes
|
2 |
Official repo for the paper: [SoccerNet-Echoes: A Soccer Game Audio Commentary Dataset](https://arxiv.org/abs/2405.07354).
|
3 |
+
|
4 |
+
## Dataset
|
5 |
+
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.
|
6 |
+
|
7 |
+
```python
|
8 |
+
|
9 |
+
|
10 |
+
π Dataset
|
11 |
+
βββ π whisper_v1
|
12 |
+
β βββ π england_epl
|
13 |
+
β β βββ π
2014-2015
|
14 |
+
β β β βββ β½ 2016-03-02 - 23-00 Liverpool 3 - 0 Manchester City
|
15 |
+
β β β βββ βοΈ 1_asr.json
|
16 |
+
β β β βββ βοΈ 2_asr.json
|
17 |
+
β β βββ π
2015-2016
|
18 |
+
β β βββ ...
|
19 |
+
β βββ π europe_uefa-champions-league
|
20 |
+
β βββ ...
|
21 |
+
βββ π whisper_v1_en
|
22 |
+
β βββ ...
|
23 |
+
βββ π whisper_v2
|
24 |
+
β βββ ...
|
25 |
+
βββ π whisper_v2_en
|
26 |
+
β βββ ...
|
27 |
+
βββ π whisper_v3
|
28 |
+
β βββ ...
|
29 |
+
|
30 |
+
whisper_v1: Contains ASR from Whisper v1.
|
31 |
+
whisper_v1_en: English-translated datasets from Whisper v1.
|
32 |
+
whisper_v2: Contains ASR from Whisper v2.
|
33 |
+
whisper_v2_en: English-translated datasets from Whisper v2.
|
34 |
+
whisper_v3: Contains ASR from Whisper v3.
|
35 |
+
```
|
36 |
+
|
37 |
+
Each JSON file has the following format:
|
38 |
+
```python
|
39 |
+
|
40 |
+
{
|
41 |
+
"segments": {
|
42 |
+
segment index (int):[
|
43 |
+
start time in second (float),
|
44 |
+
end time in second (float),
|
45 |
+
transcribed text from ASR
|
46 |
+
]
|
47 |
+
....
|
48 |
+
}
|
49 |
+
}
|
50 |
+
```
|
51 |
+
The top-level object is named segments.
|
52 |
+
It contains an object where each key represents a unique segment index (e.g., "0", "1", "2", etc.).
|
53 |
+
Each segment index object has the following properties:
|
54 |
+
```python
|
55 |
+
start_time: A number representing the starting time of the segment in seconds.
|
56 |
+
end_time: A number representing the ending time of the segment in seconds.
|
57 |
+
text: A string containing the textual content of the commentary segment.
|
58 |
+
```
|
59 |
+
|