German audio datasets
Collection
6 items β’ Updated
Error code: TooBigContentError
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Repacking version of Common Voice 26.0 German officialy published by Mozilla Data Collective, following Hugging Face Parquet Shards standard, with feature for listening to audio directly on the Web Hub, and the addition of a data column for the IPA transcription of each sentence.
Audio bytes + sentence lable + IPA transcription.from datasets import load_dataset
dataset = load_dataset("q1805/common_voice_26_0_de", split="validated", streaming=True)
sample = next(iter(dataset))
print("Van ban goc:", sample["sentence"])
print("Phien am IPA:", sample["ipa"])
print("Audio bytes:", len(sample["audio"]["bytes"]))