SoccerNet-Echoes / README.md
SushantGautam's picture
Update README.md
a0e9cec verified
|
raw
history blame
No virus
2.9 kB
metadata
license: apache-2.0
task_categories:
  - text-classification
  - summarization
language:
  - en
  - de
configs:
  - config_name: whisper_v1
    data_files:
      - split: train
        path:
          - Dataset/whisper_v1/**/*.json
    features:
      - name: segments
        sequence:
          sequence:
            - name: text
              dtype: string
            - name: answer_start
              dtype: string
            - name: answer_start
              dtype: string

SoccerNet-Echoes

Official repo for the paper: SoccerNet-Echoes: A Soccer Game Audio Commentary Dataset.

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.



πŸ“‚ 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:


{
  "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:

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.

Citation

Please cite our work if you use the SoccerNet-Echoes dataset:


@misc{gautam2024soccernetechoes,
      title={SoccerNet-Echoes: A Soccer Game Audio Commentary Dataset}, 
      author={Sushant Gautam and Mehdi Houshmand Sarkhoosh and Jan Held and Cise Midoglu and Anthony Cioppa and Silvio Giancola and Vajira Thambawita and Michael A. Riegler and PΓ₯l Halvorsen and Mubarak Shah},
      year={2024},
      eprint={2405.07354},
      archivePrefix={arXiv},
      primaryClass={cs.SD},
      doi={10.48550/arXiv.2405.07354}
}