Update README.md
Browse files
README.md
CHANGED
|
@@ -38,9 +38,15 @@ To view the actual data, you can print a small portion of the dataset. For insta
|
|
| 38 |
```
|
| 39 |
# Print the first 5 entries in the 'train' split
|
| 40 |
print(dataset['train'][:5])
|
| 41 |
-
|
| 42 |
```
|
| 43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
# Additional Operations You Can Perform:
|
| 45 |
Here are some other functions you might find useful for exploring or processing the dataset:
|
| 46 |
|
|
|
|
| 38 |
```
|
| 39 |
# Print the first 5 entries in the 'train' split
|
| 40 |
print(dataset['train'][:5])
|
|
|
|
| 41 |
```
|
| 42 |
+
```
|
| 43 |
+
Result: DatasetDict({
|
| 44 |
+
train: Dataset({
|
| 45 |
+
features: ['text'],
|
| 46 |
+
num_rows: 100000
|
| 47 |
+
})
|
| 48 |
+
})
|
| 49 |
+
```
|
| 50 |
# Additional Operations You Can Perform:
|
| 51 |
Here are some other functions you might find useful for exploring or processing the dataset:
|
| 52 |
|