cise-midoglu commited on
Commit
9b16974
β€’
1 Parent(s): f37af87

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +57 -2
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
- ## Dataset
4
- Coming soon ⏳⏳⏳
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+