The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

Original dataset at this repo

We transformed the original repo to take into account the waveform values directly in the csv. Using IPython.diplay module, you can load an audio by doing:

import pandas as pd
from IPython.display import Audio, display

train = pd.read_csv("train.csv")
sample = train.sample(1).values[0]
print(f"Text: {sample[2]}")
display(Audio(sample[3], rate=16000, autoplay=True))
Text: alin ɔ ɖo xwe tεntin
Audio : 
Downloads last month
41