'How to load custom dataset from CSV in Huggingfaces

I would like to load a custom dataset from csv using huggingfaces-transformers



Solution 1:[1]

From https://huggingface.co/docs/datasets/loading_datasets.html#loading-from-local-files

dataset = load_dataset('csv', data_files={'train': "train_set.csv",'test': "test_set.csv"})

Solution 2:[2]

You can use load_dataset directly as shown in the official documentation.

I can't find any documentation about supported arguments, but in my experiments they seem to match those of pandas.read_csv

file_dict = {
  "train" : "train.csv",
  "test" : "test.csv"
}

load_dataset(
  'csv',
  data_files=file_dict,
  delimiter=',',
  column_names=['column01', 'column02', 'column03'],
  skiprows=1
)

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Hamza Anis
Solution 2