LibriS2S / test_hf_ds_loader.py
PedroDKE's picture
update dataset_info, placement of ds file and test loader script
4029de7
raw
history blame
199 Bytes
from datasets import load_dataset
dataset = load_dataset(
"PedroDKE/LibriS2S",
trust_remote_code=True,
streaming=True
)
for row in dataset["train"]:
print(row["DE_audio"])
break