Update README.md
Browse files
README.md
CHANGED
|
@@ -57,6 +57,22 @@ BenNumEval includes **3,255** curated examples divided into six task types:
|
|
| 57 |
| Arithmetic Word Problems (AWP)| Real-world word problems requiring arithmetic reasoning | 650 |
|
| 58 |
|
| 59 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
## 📜 Citation
|
| 61 |
|
| 62 |
If you use **BenNumEval** in your work, please cite:
|
|
|
|
| 57 |
| Arithmetic Word Problems (AWP)| Real-world word problems requiring arithmetic reasoning | 650 |
|
| 58 |
|
| 59 |
---
|
| 60 |
+
|
| 61 |
+
# Code Snipet to Download the dataset
|
| 62 |
+
|
| 63 |
+
Install the datasets library if you've not installed yet.
|
| 64 |
+
```
|
| 65 |
+
pip install datasets
|
| 66 |
+
```
|
| 67 |
+
|
| 68 |
+
Then load the dataset
|
| 69 |
+
|
| 70 |
+
```python
|
| 71 |
+
from datasets import load_dataset
|
| 72 |
+
|
| 73 |
+
dataset = load_dataset("ka05ar/BenNumEval")
|
| 74 |
+
```
|
| 75 |
+
|
| 76 |
## 📜 Citation
|
| 77 |
|
| 78 |
If you use **BenNumEval** in your work, please cite:
|