SunnyLin commited on
Commit
45ba18c
·
verified ·
1 Parent(s): db4d3e8

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +36 -43
README.md CHANGED
@@ -1,45 +1,38 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: int32
6
- - name: annotation
7
- dtype: string
8
- - name: source
9
- dtype: string
10
- - name: problem_level
11
- dtype: int32
12
- - name: problem_text_cn
13
- dtype: string
14
- - name: problem_text_en
15
- dtype: string
16
- - name: problem_img
17
- dtype: string
18
- - name: construction_cdl
19
- list: string
20
- - name: text_cdl
21
- list: string
22
- - name: image_cdl
23
- list: string
24
- - name: goal_cdl
25
- dtype: string
26
- - name: problem_answer
27
- dtype: string
28
- - name: theorem_seqs
29
- list: string
30
- - name: theorem_seqs_dag_json
31
- dtype: string
32
- - name: image
33
- dtype: image
34
- splits:
35
- - name: train
36
- num_bytes: 180009236
37
- num_examples: 6981
38
- download_size: 94109776
39
- dataset_size: 180009236
40
- configs:
41
- - config_name: default
42
- data_files:
43
- - split: train
44
- path: data/train-*
45
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ - zh
5
+ license: mit
6
+ task_categories:
7
+ - question-answering
8
+ pretty_name: FormalGeo7k_v1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  ---
10
+
11
+ # FormalGeo7k_v1
12
+
13
+ This dataset is a Hugging Face conversion of `formalgeo7k_v1` from the official FormalGeo repository.
14
+
15
+ ## Dataset Sources
16
+
17
+ - Repository: https://github.com/FormalGeo/FormalGeo
18
+ - Local source folder in this conversion script: `formalgeo7k_v1/`
19
+ - Problem source (from official metadata): Geometry3k, GeoQA, GeoQA+ and online resources.
20
+
21
+ ## Citation
22
+
23
+ ```bibtex
24
+ @article{zhang2024fgeosss,
25
+ title={FGeo-SSS: A Search-Based Symbolic Solver for Human-like Automated Geometric Reasoning},
26
+ author={Zhang, Xiaokai and Zhu, Na and He, Yiming and Zou, Jia and Qin, Cheng and Li, Yang and Leng, Tuo},
27
+ journal={Symmetry},
28
+ volume={16},
29
+ number={4},
30
+ pages={404},
31
+ year={2024}
32
+ }
33
+ ```
34
+
35
+ ## Notes
36
+
37
+ - This conversion keeps formal fields such as `construction_cdl`, `text_cdl`, `image_cdl`, and `goal_cdl`.
38
+ - `image` is stored as a Hugging Face `Image` feature.