Silviase commited on
Commit
d0a86e5
·
verified ·
1 Parent(s): 307c57e

Update dataset card

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