SushantGautam/SoccerNet-Echoes
收藏资源简介:
--- language: - en - de license: apache-2.0 task_categories: - text-classification - summarization dataset_info: - config_name: whisper_v1 features: - name: segment_index dtype: string - name: start_time dtype: float32 - name: end_time dtype: float32 - name: transcribed_text dtype: string - name: game dtype: string splits: - name: train num_bytes: 110289348 num_examples: 780160 download_size: 34176839 dataset_size: 110289348 - config_name: whisper_v1_en features: - name: segment_index dtype: int32 - name: start_time dtype: float32 - name: end_time dtype: float32 - name: transcribed_text dtype: string splits: - name: train num_bytes: 31843296 num_examples: 563064 download_size: 96617459 dataset_size: 31843296 - config_name: whisper_v2 features: - name: segment_index dtype: int32 - name: start_time dtype: float32 - name: end_time dtype: float32 - name: transcribed_text dtype: string splits: - name: train num_bytes: 47409793 num_examples: 761240 download_size: 96617459 dataset_size: 47409793 - config_name: whisper_v2_en features: - name: segment_index dtype: string - name: start_time dtype: float32 - name: end_time dtype: float32 - name: transcribed_text dtype: string splits: - name: train num_bytes: 32198972 num_examples: 538990 download_size: 96617459 dataset_size: 32198972 - config_name: whisper_v3 features: - name: segment_index dtype: string - name: start_time dtype: float32 - name: end_time dtype: float32 - name: transcribed_text dtype: string splits: - name: train num_bytes: 52528392 num_examples: 923221 download_size: 96617459 dataset_size: 52528392 configs: - config_name: whisper_v1 data_files: - split: train path: whisper_v1/train-* default: true --- # 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. ``` ## Citation Please cite our work if you use the SoccerNet-Echoes dataset: <pre><code> @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} } </code></pre>
语言: - 英语 - 德语 许可证:Apache-2.0 任务类别: - 文本分类 - 摘要生成 数据集信息: - 配置名称:whisper_v1 特征: - 字段名:segment_index,数据类型:string - 字段名:start_time,数据类型:float32 - 字段名:end_time,数据类型:float32 - 字段名:transcribed_text,数据类型:string - 字段名:game,数据类型:string 划分集: - 名称:train,字节数:110289348,样本数:780160 下载大小:34176839,数据集总大小:110289348 - 配置名称:whisper_v1_en 特征: - 字段名:segment_index,数据类型:int32 - 字段名:start_time,数据类型:float32 - 字段名:end_time,数据类型:float32 - 字段名:transcribed_text,数据类型:string 划分集: - 名称:train,字节数:31843296,样本数:563064 下载大小:96617459,数据集总大小:31843296 - 配置名称:whisper_v2 特征: - 字段名:segment_index,数据类型:int32 - 字段名:start_time,数据类型:float32 - 字段名:end_time,数据类型:float32 - 字段名:transcribed_text,数据类型:string 划分集: - 名称:train,字节数:47409793,样本数:761240 下载大小:96617459,数据集总大小:47409793 - 配置名称:whisper_v2_en 特征: - 字段名:segment_index,数据类型:string - 字段名:start_time,数据类型:float32 - 字段名:end_time,数据类型:float32 - 字段名:transcribed_text,数据类型:string 划分集: - 名称:train,字节数:32198972,样本数:538990 下载大小:96617459,数据集总大小:32198972 - 配置名称:whisper_v3 特征: - 字段名:segment_index,数据类型:string - 字段名:start_time,数据类型:float32 - 字段名:end_time,数据类型:float32 - 字段名:transcribed_text,数据类型:string 划分集: - 名称:train,字节数:52528392,样本数:923221 下载大小:96617459,数据集总大小:52528392 配置列表: - 配置名称:whisper_v1,数据文件: - 划分集:train,路径:whisper_v1/train-* 默认启用:true --- # SoccerNet-Echoes 本仓库为论文《SoccerNet-Echoes:足球赛事音频解说数据集》(SoccerNet-Echoes: A Soccer Game Audio Commentary Dataset)的官方代码仓库,论文链接:https://arxiv.org/abs/2405.07354。 ## 数据集 **数据集**目录内的每个文件夹均按联赛、赛季及赛事进行分类。这些文件夹内的JSON文件存储了经转录与翻译的赛事解说内容。 python 📂 数据集 ├── 📁 whisper_v1 │ ├── 🏆 england_epl(英格兰足球超级联赛) │ │ ├── 📅 2014-2015赛季 │ │ │ └── ⚽ 2016-03-02 - 23:00 利物浦3 - 0 曼彻斯特城 │ │ │ ├── ☁️ 1_asr.json │ │ │ └── ☁️ 2_asr.json │ │ ├── 📅 2015-2016赛季 │ │ └── ...... │ ├── 🏆 europe_uefa-champions-league(欧洲足球冠军联赛) │ └── ...... ├── 📁 whisper_v1_en │ └── ...... ├── 📁 whisper_v2 │ └── ...... ├── 📁 whisper_v2_en │ └── ...... ├── 📁 whisper_v3 │ └── ...... whisper_v1:包含Whisper v1生成的自动语音识别(Automatic Speech Recognition, ASR)结果。 whisper_v1_en:基于Whisper v1生成的英语翻译数据集。 whisper_v2:包含Whisper v2生成的自动语音识别(Automatic Speech Recognition, ASR)结果。 whisper_v2_en:基于Whisper v2生成的英语翻译数据集。 whisper_v3:包含Whisper v3生成的自动语音识别(Automatic Speech Recognition, ASR)结果。 每个JSON文件采用如下格式: python { "segments": { 片段索引(整数): [ 片段起始时间(单位:秒,浮点数), 片段结束时间(单位:秒,浮点数), 自动语音识别转录的文本内容 ] ...... } } 顶层对象命名为`segments`。该对象包含一个子对象,其中每个键均为唯一的片段索引(例如"0"、"1"、"2"等)。每个片段索引对应的对象包含以下属性: - `start_time`:表示片段起始时间的数值,单位为秒。 - `end_time`:表示片段结束时间的数值,单位为秒。 - `text`:包含解说片段文本内容的字符串。 ## 引用 若您使用SoccerNet-Echoes数据集,请引用我们的研究成果: bibtex @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} }
数据集概述
数据集信息
- 语言: 英语 (en), 德语 (de)
- 许可证: Apache 2.0
- 任务类别: 文本分类, 摘要生成
配置信息
whisper_v1
- 特征:
- segment_index: string
- start_time: float32
- end_time: float32
- transcribed_text: string
- game: string
- 分割:
- train:
- num_bytes: 110289348
- num_examples: 780160
- train:
- 下载大小: 34176839
- 数据集大小: 110289348
whisper_v1_en
- 特征:
- segment_index: int32
- start_time: float32
- end_time: float32
- transcribed_text: string
- 分割:
- train:
- num_bytes: 31843296
- num_examples: 563064
- train:
- 下载大小: 96617459
- 数据集大小: 31843296
whisper_v2
- 特征:
- segment_index: int32
- start_time: float32
- end_time: float32
- transcribed_text: string
- 分割:
- train:
- num_bytes: 47409793
- num_examples: 761240
- train:
- 下载大小: 96617459
- 数据集大小: 47409793
whisper_v2_en
- 特征:
- segment_index: string
- start_time: float32
- end_time: float32
- transcribed_text: string
- 分割:
- train:
- num_bytes: 32198972
- num_examples: 538990
- train:
- 下载大小: 96617459
- 数据集大小: 32198972
whisper_v3
- 特征:
- segment_index: string
- start_time: float32
- end_time: float32
- transcribed_text: string
- 分割:
- train:
- num_bytes: 52528392
- num_examples: 923221
- train:
- 下载大小: 96617459
- 数据集大小: 52528392
数据集结构
- 目录结构:
- Dataset
- whisper_v1
- england_epl
- 2014-2015
- 2016-03-02 - 23-00 Liverpool 3 - 0 Manchester City
- 1_asr.json
- 2_asr.json
- 2016-03-02 - 23-00 Liverpool 3 - 0 Manchester City
- 2014-2015
- england_epl
- whisper_v1_en
- whisper_v2
- whisper_v2_en
- whisper_v3
- whisper_v1
- Dataset
JSON文件格式
- segments:
- segment index (int):
- start_time: float
- end_time: float
- text: string
- segment index (int):




