Script to prepare load my own data into a DataSet

Hi there! :slight_smile:

The Local and remote files section of the documentation should help, depending on your data file format. For example, if you have just one csv file you can do:

from datasets import load_dataset
dataset = load_dataset('csv', data_files='my_file.csv')