You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

Audio Clips Dataset

AudioCaps-style parquet dataset generated from MG.

The dataset stores clipped audio directly inside parquet shards under data/.

Columns

  • audio: embedded audio bytes and clip path
  • audio_length: approximate number of samples at 16000 Hz
  • caption: transcript text
  • language, duration, upload_id, segment_id, collection, label, source_audio, start, end

Usage

from datasets import Audio, load_dataset

ds = load_dataset("007ask/MG", split="train", streaming=True)
ds = ds.cast_column("audio", Audio(sampling_rate=16000))

first = next(iter(ds))
print(first["audio"]["array"].shape, first["caption"])
Downloads last month
111