Taiwan-Tongues-ASR-CE-dataset-id
收藏资源简介:
Taiwan-Tongues-ASR-CE-dataset-id 是一个用于自动语音识别(ASR)训练的印尼语语音数据集,属于Taiwan-Tongues-ASR-CE项目的一部分。该数据集以WebDataset tar分片格式打包,支持高效流式加载,音频文件存储在压缩的tar分片内,无需预先解压。它包含约20小时的印尼语语音,具体由17,897条话语组成,总时长为20.02小时。元数据存储在train.tsv文件中,包含以下字段:audio(音频文件名)、transcript(ASR转录文本)、audio_ext(音频文件扩展名)、locale(语言代码,固定为id)、sentence_id(句子标识符)、split(数据集划分,固定为train)和duration(音频时长,单位为秒)。数据集适用于自动语音识别模型的训练和微调任务,但许可证标记为other,使用前建议参考项目文档了解具体的分发和使用限制。
Taiwan-Tongues-ASR-CE-dataset-id is an Indonesian speech dataset for automatic speech recognition (ASR) training, part of the Taiwan-Tongues-ASR-CE project. It is packaged in WebDataset tar shard format for efficient streaming loading, with audio files stored in compressed tar shards without the need for pre-extraction. The dataset contains approximately 20 hours of Indonesian speech, specifically consisting of 17,897 utterances with a total duration of 20.02 hours. Metadata is stored in the train.tsv file, including fields such as audio (audio file name), transcript (ASR transcription text), audio_ext (audio file extension), locale (language code, fixed as id), sentence_id (sentence identifier), split (dataset split, fixed as train), and duration (audio duration in seconds). The dataset is suitable for training and fine-tuning automatic speech recognition models, but its license is marked as other, and it is recommended to refer to the project documentation for specific distribution and usage restrictions.
数据集名称
Taiwan-Tongues-ASR-CE-dataset-id
任务类别
自动语音识别(ASR)
语言
印度尼西亚语(id)
数据集规模
训练集包含 17,897 条话语,总时长为 20.02 小时。
数据划分
| 划分 | 语言 | 地区 | 话语数 | 时长 |
|---|---|---|---|---|
| train | 印度尼西亚语 | id |
17,897 | 20.02 小时 |
文件结构
train.tsv:训练集的元数据文件。train/:包含多个 WebDataset 压缩 tar 分片(如train-000000.tar、train-000001.tar等),音频文件以压缩形式存储于其中,未单独解压。
TSV 元数据列说明
| 列名 | 说明 |
|---|---|
audio |
音频文件在 WebDataset 分片中的文件名 |
transcript |
ASR 转录文本 |
audio_ext |
音频文件扩展名 |
locale |
地区代码,固定为 id |
sentence_id |
句子在划分内的标识符 |
split |
数据集划分,固定为 train |
duration |
音频时长(秒) |
使用方式
-
安装
webdataset和pandas后,可直接通过 WebDataset 流式加载 tar 分片,无需解压。 -
示例代码: python import webdataset as wds dataset = wds.WebDataset("train/train-{000000..000119}.tar") for sample in dataset: audio_bytes = sample["mp3"] transcript = sample["txt"].decode("utf-8")
-
可通过
pandas读取train.tsv查看元数据。
备注
- 该数据集专为自动语音识别训练和微调设计。
- 音频以压缩格式存储在 WebDataset tar 分片中,可直接流式读取。
- 许可证为
other,商业使用或再分发前请查阅项目文档。
项目来源





