Nehdi commited on
Commit
8e4cb01
1 Parent(s): 5e64540

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -35,6 +35,6 @@ from datasets import load_dataset
35
  dataset = load_dataset('Nehdi/TuniziBigBench')
36
 
37
  # Example: Print the first 5 entries from the dataset
38
- for entry in dataset['train'][:5]:
39
- print(entry['text'])
40
  ```
 
35
  dataset = load_dataset('Nehdi/TuniziBigBench')
36
 
37
  # Example: Print the first 5 entries from the dataset
38
+ for entry in dataset['text'][:5]:
39
+ print(entry)
40
  ```