Add dataset card
Browse files
README.md
CHANGED
|
@@ -1,42 +1,52 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
sequence: string
|
| 14 |
-
- name: final_answer
|
| 15 |
-
sequence: string
|
| 16 |
-
- name: is_multiple_answer
|
| 17 |
-
dtype: bool
|
| 18 |
-
- name: unit
|
| 19 |
-
dtype: string
|
| 20 |
-
- name: answer_type
|
| 21 |
-
dtype: string
|
| 22 |
-
- name: error
|
| 23 |
-
dtype: string
|
| 24 |
-
- name: answer
|
| 25 |
-
dtype: string
|
| 26 |
-
splits:
|
| 27 |
-
- name: train
|
| 28 |
-
num_bytes: 1248385
|
| 29 |
-
num_examples: 575
|
| 30 |
-
- name: test
|
| 31 |
-
num_bytes: 117401
|
| 32 |
-
num_examples: 100
|
| 33 |
-
download_size: 643757
|
| 34 |
-
dataset_size: 1365786
|
| 35 |
-
configs:
|
| 36 |
-
- config_name: default
|
| 37 |
-
data_files:
|
| 38 |
-
- split: train
|
| 39 |
-
path: data/train-*
|
| 40 |
-
- split: test
|
| 41 |
-
path: data/test-*
|
| 42 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- question-answering
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- olympiad
|
| 9 |
+
- mathematics
|
| 10 |
+
- competition
|
| 11 |
+
size_categories:
|
| 12 |
+
- 1K<n<10K
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
---
|
| 14 |
+
|
| 15 |
+
# OlympiadBench (Split Version)
|
| 16 |
+
|
| 17 |
+
This dataset is a split version of the original [knoveleng/OlympiadBench](https://huggingface.co/datasets/knoveleng/OlympiadBench) dataset.
|
| 18 |
+
|
| 19 |
+
## Dataset Description
|
| 20 |
+
|
| 21 |
+
This dataset contains mathematical olympiad problems with their solutions, split into training and test sets.
|
| 22 |
+
|
| 23 |
+
## Dataset Structure
|
| 24 |
+
|
| 25 |
+
- **Train split**: 575 examples
|
| 26 |
+
- **Test split**: 100 examples (last 100 examples from original dataset)
|
| 27 |
+
|
| 28 |
+
### Data Fields
|
| 29 |
+
|
| 30 |
+
- `question`: The olympiad problem statement
|
| 31 |
+
- `answer`: The solution to the problem
|
| 32 |
+
|
| 33 |
+
## Usage
|
| 34 |
+
|
| 35 |
+
```python
|
| 36 |
+
from datasets import load_dataset
|
| 37 |
+
|
| 38 |
+
# Load the entire dataset
|
| 39 |
+
dataset = load_dataset("weijiezz/OlympiadBench-split")
|
| 40 |
+
|
| 41 |
+
# Load specific splits
|
| 42 |
+
train_dataset = load_dataset("weijiezz/OlympiadBench-split", split="train")
|
| 43 |
+
test_dataset = load_dataset("weijiezz/OlympiadBench-split", split="test")
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
## Source
|
| 47 |
+
|
| 48 |
+
This dataset is derived from [knoveleng/OlympiadBench](https://huggingface.co/datasets/knoveleng/OlympiadBench).
|
| 49 |
+
|
| 50 |
+
## License
|
| 51 |
+
|
| 52 |
+
MIT License (following the original dataset)
|