File size: 4,110 Bytes
307c57e d0a86e5 307c57e 8bf682c 307c57e e737e12 307c57e d0a86e5 8bf682c d0a86e5 8bf682c d0a86e5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 |
---
language:
- ja
license: cc-by-4.0
size_categories:
- n<1K
task_categories:
- visual-question-answering
- text-generation
pretty_name: Augeo Geometry Problems
tags:
- geometry
- mathematics
- education
- problem-solving
- tikz
dataset_info:
features:
- name: id
dtype: string
- name: annotator
dtype: string
- name: problem_id
dtype: int32
- name: question
dtype: string
- name: answer
dtype: string
- name: answer_value
dtype: string
- name: tags
sequence: string
- name: difficulty
dtype: string
- name: remark
dtype: string
- name: question_image
dtype: image
- name: answer_image
dtype: image
- name: question_tikz
dtype: string
- name: answer_tikz
dtype: string
splits:
- name: all
num_examples: 122
---
# Augeo Geometry Problems Dataset
## Dataset Description
This dataset contains geometry problems annotated by multiple contributors, featuring both Japanese problem statements and their solutions. Each problem may include visual diagrams (as images) and TikZ code for geometric constructions.
### Dataset Summary
- **Total Examples**: 122
- **Languages**: Japanese
- **Task**: Geometry problem solving with visual reasoning
- **Annotators**: Multiple human annotators (kinmokusei, aonagi, con-malinconia, Metachick)
## Dataset Structure
### Data Fields
- `id`: Unique identifier for each problem
- `annotator`: Name of the person who annotated the problem
- `problem_id`: Problem number within each annotator's set
- `question`: The geometry problem statement (in Japanese)
- `answer`: Detailed solution explanation (in Japanese)
- `answer_value`: The final numerical or symbolic answer
- `tags`: List of tags describing problem topics/techniques
- `difficulty`: Difficulty level of the problem
- `remark`: Additional notes or comments
- `question_image`: Diagram for the problem (PNG/JPG image)
- `answer_image`: Diagram for the solution (PNG/JPG image)
- `question_tikz`: TikZ code for the problem diagram
- `answer_tikz`: TikZ code for the solution diagram
### Data Splits
The dataset contains all data in a single split:
| Split | Number of Examples |
|-------|-------------------|
| All | 122 |
## Usage
```python
from datasets import load_dataset
# Load the dataset
dataset = load_dataset("Silviase/augeo-ja")
# Access the data
data = dataset['all']
# Example: Get the first problem
first_problem = data[0]
print(f"Question: {first_problem['question']}")
print(f"Answer: {first_problem['answer_value']}")
```
## Dataset Creation
### Annotation Process
The dataset was created by multiple annotators who:
1. Created or collected geometry problems
2. Provided detailed solutions with step-by-step explanations
3. Created visual diagrams for problems and solutions
4. Tagged problems with relevant mathematical concepts
5. Assigned difficulty levels
### Source Data
The problems cover various geometry topics including:
- Triangle properties and theorems
- Circle theorems
- Coordinate geometry
- Transformations
- Area and volume calculations
- Classical geometry constructions
## Considerations for Using the Data
### Limitations
- The dataset is primarily in Japanese
- Some problems may require advanced mathematical knowledge
- Image quality and format may vary between annotators
- Not all problems have both question and answer diagrams
### Recommendations
- For visual reasoning tasks, filter for problems with images
- For symbolic reasoning, use problems with TikZ code
- Consider difficulty levels when selecting problems for specific applications
## Additional Information
### Licensing Information
This dataset is released under the Creative Commons Attribution 4.0 International (CC BY 4.0) license.
### Citation Information
If you use this dataset, please cite:
```bibtex
@dataset{augeo_geometry2024,
title={Augeo Geometry Problems Dataset},
author={Multiple Contributors},
year={2024},
publisher={HuggingFace}
}
```
### Contributions
Thanks to all the annotators who contributed to this dataset:
- kinmokusei
- aonagi
- con-malinconia
- Metachick
|