Update README.md
Browse files
README.md
CHANGED
|
@@ -25,12 +25,11 @@ We propose the first question-answering dataset driven by STEM theorems. We anno
|
|
| 25 |
```
|
| 26 |
from datasets import load_dataset
|
| 27 |
|
| 28 |
-
dataset = load_dataset("
|
| 29 |
|
| 30 |
for d in dataset['test']:
|
| 31 |
print(d)
|
| 32 |
```
|
| 33 |
-
To use the images, try to download images from images.zip in https://huggingface.co/datasets/wenhu/TheoremQA/blob/main/images.zip. The image is under the `Picture' field.
|
| 34 |
|
| 35 |
## Arxiv Paper:
|
| 36 |
https://arxiv.org/abs/2305.12524
|
|
|
|
| 25 |
```
|
| 26 |
from datasets import load_dataset
|
| 27 |
|
| 28 |
+
dataset = load_dataset("TIGER-Lab/TheoremQA")
|
| 29 |
|
| 30 |
for d in dataset['test']:
|
| 31 |
print(d)
|
| 32 |
```
|
|
|
|
| 33 |
|
| 34 |
## Arxiv Paper:
|
| 35 |
https://arxiv.org/abs/2305.12524
|