Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-nc-sa-4.0
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-sa-4.0
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
# Mystery Zebra Dataset
|
| 6 |
+
This is the Mystery Zebra dataset created as part of the paper "Lexical Recall or Logical Reasoning: Probing the Limits of Reasoning Abilities in Large Language Models".
|
| 7 |
+
|
| 8 |
+
We make the dataset available in a .csv format for your convenience. The code used to generate the puzzles in this dataset can be found in: https://github.com/arg-tech/MysteryZebra
|
| 9 |
+
|
| 10 |
+
The structure of the dataset is straightforward and easy to parse. In the following, we detail the content of all the columns in the .csv file:
|
| 11 |
+
|
| 12 |
+
- __ID__: This field contains the ID of the datapoint.
|
| 13 |
+
- For puzzles of the first part of the benchmark it is composed as follows: Pt1_Einstein_1domain_replacements-0, indicating:
|
| 14 |
+
- ```<Part_of_benchmark>_<classic_puzzle_name>_<obfuscation_type>-<running_number>```
|
| 15 |
+
- For puzzles of the second part of the benchmark it is composed as follows: Pt2_1x6_level1-0, indicating:
|
| 16 |
+
- ```<part_of_benchmark>_<columns x rows>_<level>-<running_number>```
|
| 17 |
+
- __Clues__: This field contains the set of clues given to solve the puzzle. This is written out in Natural Language.
|
| 18 |
+
- For any puzzle that is not a `Zebra_original`or an `Einstein_original'. this is in the uniform phrasing detailed in our paper.
|
| 19 |
+
- __SolutionGrid__: This field contains the correct solution grid for the puzzle in the form of a phyton dictionary, where the keys correspont to a domain name (e.g. pets) and the items are in an ordered list, where indices equal positions in the grid.
|
| 20 |
+
|
| 21 |
+
## Referencing
|
| 22 |
+
Please reference the corpus as follows:
|
| 23 |
+
|
| 24 |
+
[INSERT BIB INFO ONCE THERE]
|