Datasets:
Gresham
commited on
Commit
·
c3d57a0
1
Parent(s):
731822f
docs(readme): refactor
Browse files
README.md
CHANGED
@@ -39,7 +39,7 @@ Github Repo: https://github.com/TreeAI-Lab/NumericBench
|
|
39 |
|
40 |
# How to use it?
|
41 |
|
42 |
-
|
43 |
|
44 |
``` python
|
45 |
from huggingface_hub import hf_hub_download
|
@@ -63,11 +63,11 @@ for dataset_name in dataset_name_list:
|
|
63 |
|
64 |
Alternatively, you can download the dataset from [this link](https://zenodo.org/records/14875784?token=eyJhbGciOiJIUzUxMiJ9.eyJpZCI6IjZhYjZlYzYwLWZkMTgtNGU1Ni1iM2I2LWUwNWVlMGIwZmYwZCIsImRhdGEiOnt9LCJyYW5kb20iOiIwNzQxNmU0NWY5ZDkxMzQ4ODVmYjdlZDgyOGJmNjVhYSJ9.m-_8Owb3TohJ76cGt2Mu4wrpsxMgC4E_aJG7Q07KHOTlKaxB4kipMY3eBZPaQEIkOv_iJEkRmlvZr23rLkTMBw).
|
65 |
|
66 |
-
|
67 |
|
68 |
Due to the excessive length of the content, "..." is used to indicate omission.
|
69 |
|
70 |
-
|
71 |
|
72 |
``` json
|
73 |
{
|
@@ -95,7 +95,7 @@ Due to the excessive length of the content, "..." is used to indicate omission.
|
|
95 |
}
|
96 |
```
|
97 |
|
98 |
-
|
99 |
|
100 |
``` json
|
101 |
{
|
@@ -113,30 +113,14 @@ Due to the excessive length of the content, "..." is used to indicate omission.
|
|
113 |
"question": "...",
|
114 |
"answer": "F",
|
115 |
"ability": "contextual retrieval"
|
116 |
-
},
|
117 |
-
{
|
118 |
-
"turn_index": 1,
|
119 |
-
"question_index": 6,
|
120 |
-
"struct_data": "...",
|
121 |
-
"question": "...",
|
122 |
-
"answer": "B",
|
123 |
-
"ability": "contextual retrieval"
|
124 |
-
},
|
125 |
-
{
|
126 |
-
"turn_index": 2,
|
127 |
-
"question_index": 6,
|
128 |
-
"struct_data": "...",
|
129 |
-
"question": "...",
|
130 |
-
"answer": "A",
|
131 |
-
"ability": "contextual retrieval"
|
132 |
-
}
|
133 |
]
|
134 |
-
}
|
135 |
]
|
136 |
}
|
137 |
```
|
138 |
|
139 |
-
|
140 |
|
141 |
# Dataset statistics
|
142 |
|
|
|
39 |
|
40 |
# How to use it?
|
41 |
|
42 |
+
## Loading Data
|
43 |
|
44 |
``` python
|
45 |
from huggingface_hub import hf_hub_download
|
|
|
63 |
|
64 |
Alternatively, you can download the dataset from [this link](https://zenodo.org/records/14875784?token=eyJhbGciOiJIUzUxMiJ9.eyJpZCI6IjZhYjZlYzYwLWZkMTgtNGU1Ni1iM2I2LWUwNWVlMGIwZmYwZCIsImRhdGEiOnt9LCJyYW5kb20iOiIwNzQxNmU0NWY5ZDkxMzQ4ODVmYjdlZDgyOGJmNjVhYSJ9.m-_8Owb3TohJ76cGt2Mu4wrpsxMgC4E_aJG7Q07KHOTlKaxB4kipMY3eBZPaQEIkOv_iJEkRmlvZr23rLkTMBw).
|
65 |
|
66 |
+
## Data Format
|
67 |
|
68 |
Due to the excessive length of the content, "..." is used to indicate omission.
|
69 |
|
70 |
+
### single-turn
|
71 |
|
72 |
``` json
|
73 |
{
|
|
|
95 |
}
|
96 |
```
|
97 |
|
98 |
+
### multi-turn
|
99 |
|
100 |
``` json
|
101 |
{
|
|
|
113 |
"question": "...",
|
114 |
"answer": "F",
|
115 |
"ability": "contextual retrieval"
|
116 |
+
}, ...
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
]
|
118 |
+
}, ...
|
119 |
]
|
120 |
}
|
121 |
```
|
122 |
|
123 |
+
## Evaluation
|
124 |
|
125 |
# Dataset statistics
|
126 |
|