Update README.md
Browse files
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['
|
| 39 |
-
print(entry
|
| 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 |
```
|