Update README.md
Browse files
README.md
CHANGED
@@ -53,7 +53,7 @@ Load the dataset using the `datasets` library:
|
|
53 |
```python
|
54 |
from datasets import load_dataset
|
55 |
|
56 |
-
dataset = load_dataset("turkish-db/turkish-grammer-mmlu")
|
57 |
print(dataset)
|
58 |
```
|
59 |
|
@@ -70,7 +70,7 @@ Dataset({
|
|
70 |
|
71 |
```python
|
72 |
# Inspect the first example
|
73 |
-
|
74 |
```
|
75 |
|
76 |
Sample output:
|
|
|
53 |
```python
|
54 |
from datasets import load_dataset
|
55 |
|
56 |
+
dataset = load_dataset("turkish-db/turkish-grammer-mmlu", split = "train")
|
57 |
print(dataset)
|
58 |
```
|
59 |
|
|
|
70 |
|
71 |
```python
|
72 |
# Inspect the first example
|
73 |
+
print(dataset[0])
|
74 |
```
|
75 |
|
76 |
Sample output:
|