Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -66,7 +66,7 @@ The CSAT-QA includes two subsets. The full version with 936 questions can be dow
|
|
66 |
|
67 |
```
|
68 |
from datasets import load_dataset
|
69 |
-
dataset = load_dataset("EleutherAI/CSAT-QA")
|
70 |
```
|
71 |
|
72 |
A more condensed version, which includes human accuracy data, can be downloaded using the following code:
|
@@ -74,7 +74,7 @@ A more condensed version, which includes human accuracy data, can be downloaded
|
|
74 |
from datasets import load_dataset
|
75 |
import pandas as pd
|
76 |
|
77 |
-
dataset = load_dataset("EleutherAI/CSAT-QA")
|
78 |
dataset = pd.DataFrame(dataset["train"]).dropna(subset=["Category"])
|
79 |
```
|
80 |
|
|
|
66 |
|
67 |
```
|
68 |
from datasets import load_dataset
|
69 |
+
dataset = load_dataset("EleutherAI/CSAT-QA",split="full")
|
70 |
```
|
71 |
|
72 |
A more condensed version, which includes human accuracy data, can be downloaded using the following code:
|
|
|
74 |
from datasets import load_dataset
|
75 |
import pandas as pd
|
76 |
|
77 |
+
dataset = load_dataset("EleutherAI/CSAT-QA",split="full")
|
78 |
dataset = pd.DataFrame(dataset["train"]).dropna(subset=["Category"])
|
79 |
```
|
80 |
|