Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -72,7 +72,9 @@ The dataset contains four splits:
|
|
| 72 |
- **op5_train**: five-option multiple-choice QA (choices A-E)
|
| 73 |
- **op5_eval**: five-option multiple-choice QA (choices A-E)
|
| 74 |
|
| 75 |
-
|
|
|
|
|
|
|
| 76 |
|
| 77 |
### Dataset Sources
|
| 78 |
|
|
@@ -105,18 +107,10 @@ if __name__ == "__main__":
|
|
| 105 |
# load only op5 splits
|
| 106 |
op5_train, op5_eval = load_dataset("mkieffer/Medbullets", split=["op5_train", "op5_eval"])
|
| 107 |
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
"op5_train": op5_train,
|
| 113 |
-
"op5_eval": op5_eval,
|
| 114 |
-
})
|
| 115 |
-
|
| 116 |
-
print("\nop4_train:\n", json.dumps(dataset["op4_train"][0], indent=2))
|
| 117 |
-
print("\nop4_eval:\n", json.dumps(dataset["op4_eval"][0], indent=2))
|
| 118 |
-
print("\nop5_train:\n", json.dumps(dataset["op5_train"][0], indent=2))
|
| 119 |
-
print("\nop5_eval:\n", json.dumps(dataset["op5_eval"][0], indent=2))
|
| 120 |
```
|
| 121 |
|
| 122 |
|
|
|
|
| 72 |
- **op5_train**: five-option multiple-choice QA (choices A-E)
|
| 73 |
- **op5_eval**: five-option multiple-choice QA (choices A-E)
|
| 74 |
|
| 75 |
+
`op5` splits contain the same content as `op4` splits, but with one additional answer choice to increase difficulty. Note that while the content is the same, the letter choice corresponding to the correct answer is sometimes different between these splits.
|
| 76 |
+
|
| 77 |
+
The train/eval splits for a given number of options are 80/20, where the last 20% of the original, complete dataset is used for evals.
|
| 78 |
|
| 79 |
### Dataset Sources
|
| 80 |
|
|
|
|
| 107 |
# load only op5 splits
|
| 108 |
op5_train, op5_eval = load_dataset("mkieffer/Medbullets", split=["op5_train", "op5_eval"])
|
| 109 |
|
| 110 |
+
print("\nop4_train:\n", json.dumps(op4_train[0], indent=2))
|
| 111 |
+
print("\nop4_eval:\n", json.dumps(op4_eval[0], indent=2))
|
| 112 |
+
print("\nop5_train:\n", json.dumps(op5_train[0], indent=2))
|
| 113 |
+
print("\nop5_eval:\n", json.dumps(op5_eval[0], indent=2))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 114 |
```
|
| 115 |
|
| 116 |
|