Datasets:

Modalities:
Image
Text
Formats:
parquet
ArXiv:
Libraries:
Datasets
pandas
License:
nielsr HF Staff commited on
Commit
714540e
·
verified ·
1 Parent(s): f23de5f

Improve dataset card: Add description, task category, and relevant tags

Browse files

This PR enhances the dataset card by:
- Adding the `image-text-to-text` task category to the metadata.
- Including relevant tags such as `geometry`, `mathematical-reasoning`, and `multimodal`.
- Adding a detailed description of the dataset, explaining its purpose, structure, and usage.
- Linking to the survey paper on Hugging Face and the GitHub repository for more context.

Files changed (1) hide show
  1. README.md +57 -32
README.md CHANGED
@@ -1,32 +1,57 @@
1
- ---
2
- license: apache-2.0
3
- configs:
4
- - config_name: default
5
- data_files:
6
- - split: train
7
- path: data/train-*
8
- dataset_info:
9
- features:
10
- - name: class
11
- dtype: string
12
- - name: id
13
- dtype: string
14
- - name: question
15
- dtype: string
16
- - name: option
17
- dtype: string
18
- - name: answer
19
- dtype: string
20
- - name: task_class
21
- dtype: string
22
- - name: Attributes
23
- dtype: string
24
- - name: image
25
- dtype: image
26
- splits:
27
- - name: train
28
- num_bytes: 82349062.411
29
- num_examples: 1913
30
- download_size: 230897223
31
- dataset_size: 82349062.411
32
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ configs:
4
+ - config_name: default
5
+ data_files:
6
+ - split: train
7
+ path: data/train-*
8
+ dataset_info:
9
+ features:
10
+ - name: class
11
+ dtype: string
12
+ - name: id
13
+ dtype: string
14
+ - name: question
15
+ dtype: string
16
+ - name: option
17
+ dtype: string
18
+ - name: answer
19
+ dtype: string
20
+ - name: task_class
21
+ dtype: string
22
+ - name: Attributes
23
+ dtype: string
24
+ - name: image
25
+ dtype: image
26
+ splits:
27
+ - name: train
28
+ num_bytes: 82349062.411
29
+ num_examples: 1913
30
+ download_size: 230897223
31
+ dataset_size: 82349062.411
32
+ task_categories:
33
+ - image-text-to-text
34
+ tags:
35
+ - geometry
36
+ - mathematical-reasoning
37
+ - multimodal
38
+ ---
39
+
40
+ This dataset is designed for research in **Deep Learning for Geometry Problem Solving (DL4GPS)** and accompanies the survey paper [A Survey of Deep Learning for Geometry Problem Solving](https://huggingface.co/papers/2507.11936). It aims to provide a structured resource for evaluating and training AI models, particularly multimodal large language models (MLLMs), on mathematical reasoning tasks involving geometric contexts.
41
+
42
+ The dataset provides a collection of geometry problems, each consisting of a textual question and a corresponding image.
43
+
44
+ For a continuously updated reading list of papers on Deep Learning for Geometry Problem Solving, refer to the [official GitHub repository](https://github.com/majianz/gps-survey).
45
+
46
+ ## Data Structure
47
+
48
+ Each problem instance in the dataset includes the following fields:
49
+
50
+ - `class`: The category of the geometry problem.
51
+ - `id`: A unique identifier for each problem.
52
+ - `question`: The textual description of the geometry problem.
53
+ - `option`: Multiple-choice options for the answer, if applicable.
54
+ - `answer`: The correct answer to the geometry problem.
55
+ - `task_class`: A classification of the task involved.
56
+ - `Attributes`: Additional attributes or metadata about the problem.
57
+ - `image`: The image of the geometric diagram associated with the problem.