MizoSpeech
收藏资源简介:
MizoSpeech是一个专为无监督预训练和语言学研究设计的音频语料库,涵盖米佐语及其相关方言。该数据集包含来自 Tibeto-Burman 语系 Kuki-Chin-Mizo 分支的10种不同方言的761,053个.wav音频录音,分别为Falam、Gangte、Hmar、Lai、Lushai、Mara、Paite、Ralte、Vaiphei和Zou。数据以Parquet格式存储,分为约500 MB的分片,每个分片嵌入原始音频字节和元数据,便于高效流式加载。数据集包含以下字段:audio(包含解码后的音频波形、路径和采样率)、path(原始文件路径)、language(方言标签)、duration(音频时长,单位秒)。总音频时长约为1855.88小时,其中Lushai方言占比最大(425,794条,1048.34小时),Zou方言最少(215条,0.51小时)。音频规格为16,000 Hz采样率、单声道、16位深度。该数据集适用于自动语音识别、无监督预训练及方言语言学研究。
MizoSpeech is an audio corpus designed for unsupervised pre-training and linguistic research, covering the Mizo language and its related dialects. The dataset contains 761,053 .wav audio recordings from 10 different dialects of the Kuki-Chin-Mizo branch of the Tibeto-Burman language family: Falam, Gangte, Hmar, Lai, Lushai, Mara, Paite, Ralte, Vaiphei, and Zou. Data is stored in Parquet format, partitioned into approximately 500 MB shards, each embedding raw audio bytes and metadata for efficient streaming loading. The dataset includes the following fields: audio (containing decoded audio waveform, path, and sample rate), path (original file path), language (dialect label), and duration (audio duration in seconds). The total audio duration is approximately 1855.88 hours, with the Lushai dialect having the largest share (425,794 recordings, 1048.34 hours) and the Zou dialect the smallest (215 recordings, 0.51 hours). Audio specifications are 16,000 Hz sample rate, mono channel, and 16-bit depth. This dataset is suitable for automatic speech recognition, unsupervised pre-training, and dialectological linguistic research.
MizoSpeech 数据集概述
MizoSpeech 是一个为米佐语及其相关方言的无监督预训练和语言学研究而设计的音频语料库。
基本信息
- 语言: 涵盖 Tibeto-Burman 语系 Kuki-Chin-Mizo 分支下的 10 种方言,包括 Falam、Gangte、Hmar、Lai、Lushai、Mara、Paite、Ralte、Vaiphei 和 Zou。
- 许可协议: cc-by-nc-4.0
- 任务类别: 自动语音识别 (Automatic Speech Recognition)
- 数据规模: 共包含 761,053 个
.wav格式的音频录音,总时长约 1,855.88 小时。 - 数据格式: 数据集以 Parquet 格式分发,整个数据集被划分为约 500 MB 的分片(shards)。
- 大小类别: 100K < n < 1M
数据结构
数据集的每个条目包含以下字段:
| 字段名 | 类型 | 描述 |
|---|---|---|
audio |
AudioFeature |
一个字典,包含解码后的音频波形,其中有内部的文件 path 字符串、解码后的数值 array 以及 sampling_rate(采样率)。 |
path |
string |
映射到原始文件结构的显式目录路径(例如,data/Falam_00001.wav)。 |
language |
string |
音频录音中使用的具体米佐方言(Falam, Gangte, Hmar, Lai, Lushai, Mara, Paite, Ralte, Vaiphei, Zou)。 |
duration |
float32 |
音频片段的持续时间(秒),用于训练时过滤过长或过短的片段。 |
数据集统计
| 方言 | 话语数量 | 总音频时长(小时) |
|---|---|---|
| Lushai | 425,794 | 1,048.34 |
| Hmar | 118,833 | 276.43 |
| Lai | 107,289 | 264.37 |
| Paite | 53,162 | 126.89 |
| Falam | 24,923 | 62.02 |
| Vaiphei | 15,806 | 39.66 |
| Mara | 9,111 | 22.73 |
| Gangte | 5,428 | 13.71 |
| Ralte | 492 | 1.22 |
| Zou | 215 | 0.51 |
| 总计 | 761,053 | 1,855.88 |
音频规格
- 格式:
.wav(嵌入在 Parquet 文件中) - 采样率: 16,000 Hz
- 声道: 单声道 (Mono, 1)
- 位深度: 16-bit
使用方式
用户可以通过 datasets 库直接加载数据集,例如:
python from datasets import load_dataset
dataset = load_dataset("andrewbawitlung/MizoSpeech", split="mizospeech")
数据集的主要优势在于其将原始音频字节安全地嵌入到 Parquet 分片中,免去了管理大量本地原始 .wav 文件的麻烦,同时便于高吞吐量的流式加载。





