Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -52,22 +52,13 @@ extra_gated_button_content: Submit
|
|
52 |
LingOly-TOO benchmark was created by generating up to 6 obfuscations per problem for 82 problems source from original LingOly benchmark.
|
53 |
|
54 |
```python
|
55 |
-
{'question_n':
|
56 |
-
'prompt':
|
57 |
-
'
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
'fuzzy_matching': # Annotation metadata
|
63 |
-
'manual_edit': # Annotation metadata
|
64 |
-
}],
|
65 |
-
'metadata.preamble': # General text from the overall problem that is shared across all questions for that problem
|
66 |
-
'metadata.context': # Context text that includes important information, you should prepend your prompt with context for solvability
|
67 |
-
'metadata.obfuscated': # If this example was obfuscated or not
|
68 |
-
'metadata.obf_num': # Obfuscation counter (unique per problem). This is 0 if unobfuscated
|
69 |
-
'metadata.overall_question_n': # The problem number
|
70 |
-
'metadata.obfuscated_question_n': # Concatenation of problem number and obfuscation number
|
71 |
}
|
72 |
```
|
73 |
|
|
|
52 |
LingOly-TOO benchmark was created by generating up to 6 obfuscations per problem for 82 problems source from original LingOly benchmark.
|
53 |
|
54 |
```python
|
55 |
+
{'question_n': # The question number in the problem
|
56 |
+
'prompt': # The main text of the question including preamble, context and previous questions
|
57 |
+
'completion': # The correct answer
|
58 |
+
'context': # Context text that includes important information, you should prepend your prompt with context for solvability
|
59 |
+
'obfuscated': # If this example was obfuscated or not
|
60 |
+
'overall_question_n': # The problem number
|
61 |
+
'obfuscated_question_n': # Concatenation of problem number and obfuscation number
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
}
|
63 |
```
|
64 |
|