File size: 227 Bytes
677bebf
 
 
34b6a6d
677bebf
 
 
1
2
3
4
5
6
7
8
from datasets import load_dataset

# Load your local CSV dataset
dataset = load_dataset('csv', data_files='CCI_Details_Structured_Full.csv')

# Print out the first example to understand the structure
print(dataset['train'][0])