Unable to download test dataset alone

#5
by srahul17 - opened

I am trying to download only the test dataset in release3 but all three train, test and dev are getting downloaded.

from datasets import load_dataset
dataset_path = "LIUM/tedlium"
dataset_tedlium = "release3"
split = "test"
streaming = False
tedlium_dataset = load_dataset(path = dataset_path, name = dataset_tedlium, split=split, streaming=streaming, token=True,)

I used a similar code to download SPGI dataset where I was able to download testset alone. So how to do it in case of Tedlium?

Note: I do not want to download all the three datasets and use test alone as the data is huge.

Sign up or log in to comment