Is there any way to load datasets with custom splits ?
For example : load_dataset(âcsvâ,data_files=[âmyfile1.csvâ,âmyfile2.csvâ],splits=[âcsv1â,âcsv2â]))
Instead of âtrain, test, and validation,â we can have multiple splits with custom names.
Hello
Something like that should work
data_files = {"csv1": "myfile1.csv", "csv2": "myfile2.csv"}
dataset = load_dataset("namespace/your_dataset_name", data_files=data_files)