Datasets:

Modalities:
Text
Formats:
json
Languages:
English
ArXiv:
Libraries:
Datasets
pandas
License:
dubniczky commited on
Commit
c3a7b87
·
verified ·
1 Parent(s): 9ffaab6

Updated description to v10 format

Browse files
Files changed (1) hide show
  1. README.md +8 -8
README.md CHANGED
@@ -52,10 +52,10 @@ During generation, different sizes of the dataset can be created by modifying th
52
 
53
  |File|K|Tests|
54
  |-|-|-|
55
- |[DIA-bench-2.json](./DIA-bench-2.json)|2|300|
56
- |[DIA-bench-5.json](./DIA-bench-5.json)|5|750|
57
- |[DIA-bench-10.json](./DIA-bench-10.json)|10|1,500|
58
- |[DIA-bench-100.json](./DIA-bench-100.json)|100|15,000|
59
 
60
  Please note that depending on the tool or API used to run the tests, the runtime as well as the cost will differ significantly.
61
 
@@ -64,11 +64,11 @@ Each generated dataset is a JSON file, where the questions are stored in a list
64
  ```json
65
  {
66
  "challenge": {
67
- "Q template": 1,
68
  "instance": 1,
69
  "level": "easy",
70
  "category": "Mathematics",
71
- "adversarial": 0,
72
  "description": "You have been given the task of solving the following challenge.\n\n #Instructions:\n a. Carefully read the challenge description.\n b. Determine the most effective approach to solve the challenge. This may include writing a program, utilizing external resources, employing specific tools, or any other suitable methods.\n c. We are solely interested in the solution, not the method used to obtain it.\n d. Confidence in your solution is extremely important. If your answer is correct, you will get +1 point. If incorrect, you will get -2 point. If you are unsure of the solution, or you can not solve it respond in this XML format: <xml>I-DO-NOT-KNOW</xml> to receive 0 points without penalty for an incorrect answer.\n e. Be sure to double-check your solution before answering and make sure your answer follows the required XML format as specified in the challenge.\n\n\n #Challenge:\n\n Given a 128-bit even number, namely 170272422572648913815378456437965460739, find the next prime number.",
73
  "instructions": "Find the next prime number that comes after the specified number. Do NOT include any explanation or additional text in the response. ALWAYS return the answer in this XML format: '<xml>prime_number</xml>'."
74
  },
@@ -83,11 +83,11 @@ Each generated dataset is a JSON file, where the questions are stored in a list
83
 
84
  Each question instance contains all of the following fields:
85
 
86
- - `challenge.Q template` __int__: ID of the generator template.
87
  - `challenge.instance` __int__: Number of the generated instance from the same template.
88
  - `challenge.level` __str__: Percieved difficulty of the question (easy/medium/hard).
89
  - `challenge.category` __str__: Area of expertise required to solve the question.
90
- - `challenge.adversarial` __int__: Binary 0/1 to signify whether the question contains adversarial tactics to confuse the model.
91
  - `challenge.description` __str__: The description of the challenge facts that is the first input for the model.
92
  - `challenge.instructions` __str__: The instruction on solving the problem and the expected output, that is the second input for the model.
93
  - `solution.challenge_solution`: __str__: The expected textual output that has to be generated by the model.
 
52
 
53
  |File|K|Tests|
54
  |-|-|-|
55
+ |[DIA-bench-1.json](./DIA-bench-k1.json)|1|150|
56
+ |[DIA-bench-5.json](./DIA-bench-k5.json)|5|750|
57
+ |[DIA-bench-10.json](./DIA-bench-k10.json)|10|1,500|
58
+ |[DIA-bench-100.json](./DIA-bench-k100.json)|100|15,000|
59
 
60
  Please note that depending on the tool or API used to run the tests, the runtime as well as the cost will differ significantly.
61
 
 
64
  ```json
65
  {
66
  "challenge": {
67
+ "template_id": 1,
68
  "instance": 1,
69
  "level": "easy",
70
  "category": "Mathematics",
71
+ "adversarial": false,
72
  "description": "You have been given the task of solving the following challenge.\n\n #Instructions:\n a. Carefully read the challenge description.\n b. Determine the most effective approach to solve the challenge. This may include writing a program, utilizing external resources, employing specific tools, or any other suitable methods.\n c. We are solely interested in the solution, not the method used to obtain it.\n d. Confidence in your solution is extremely important. If your answer is correct, you will get +1 point. If incorrect, you will get -2 point. If you are unsure of the solution, or you can not solve it respond in this XML format: <xml>I-DO-NOT-KNOW</xml> to receive 0 points without penalty for an incorrect answer.\n e. Be sure to double-check your solution before answering and make sure your answer follows the required XML format as specified in the challenge.\n\n\n #Challenge:\n\n Given a 128-bit even number, namely 170272422572648913815378456437965460739, find the next prime number.",
73
  "instructions": "Find the next prime number that comes after the specified number. Do NOT include any explanation or additional text in the response. ALWAYS return the answer in this XML format: '<xml>prime_number</xml>'."
74
  },
 
83
 
84
  Each question instance contains all of the following fields:
85
 
86
+ - `challenge.template_id` __int__: ID of the generator template.
87
  - `challenge.instance` __int__: Number of the generated instance from the same template.
88
  - `challenge.level` __str__: Percieved difficulty of the question (easy/medium/hard).
89
  - `challenge.category` __str__: Area of expertise required to solve the question.
90
+ - `challenge.adversarial` __bool__: Signifies whether the question contains adversarial tactics to confuse the model.
91
  - `challenge.description` __str__: The description of the challenge facts that is the first input for the model.
92
  - `challenge.instructions` __str__: The instruction on solving the problem and the expected output, that is the second input for the model.
93
  - `solution.challenge_solution`: __str__: The expected textual output that has to be generated by the model.