nielsr HF Staff commited on
Commit
3095098
·
verified ·
1 Parent(s): 59964c6

Add dataset card, paper link, and task category

Browse files

Hi! I'm Niels from the Hugging Face community science team. I've noticed this dataset card is currently empty. This PR adds a descriptive README and relevant metadata, linking the dataset to the original paper and the official GitHub repository to improve discoverability and documentation for the GeoFocus framework.

Files changed (1) hide show
  1. README.md +41 -0
README.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - image-text-to-text
4
+ language:
5
+ - en
6
+ tags:
7
+ - geometry
8
+ - multimodal
9
+ - geometry-problem-solving
10
+ ---
11
+
12
+ # GeoFocus
13
+
14
+ [Paper](https://huggingface.co/papers/2602.08524) | [Code](https://github.com/dle666/GeoFocus)
15
+
16
+ GeoFocus is a novel framework for Multimodal Geometry Problem-Solving (MGPS). It addresses the challenges of recognizing global shapes and intricate local geometric relationships through two core components:
17
+
18
+ 1. **Critical Local Perceptor**: Automatically identifies and emphasizes critical local structures (e.g., angles, parallel lines, comparative distances) through thirteen theory-based perception templates, boosting local feature coverage.
19
+ 2. **VertexLang**: A compact topology formal language that encodes global figures using vertex coordinates and connectivity relations, reducing training time while improving topology recognition accuracy.
20
+
21
+ ## Dataset Description
22
+
23
+ The GeoFocus project involves several data splits used for training and evaluation:
24
+ - **Global_Perceptor_Data**: Training data focused on global figure recognition using the VertexLang encoding.
25
+ - **Local_Perceptor_Data**: Training data featuring fine-grained visual attribute annotations for critical local structures.
26
+ - **Geo_test**: Evaluation datasets covering benchmarks such as Geo3K, GeoQA, and FormalGeo7K.
27
+
28
+ The models trained on this data, GeoFocus-3B and GeoFocus-7B, demonstrate superior performance and robustness in geometry reasoning tasks.
29
+
30
+ ## Citation
31
+
32
+ If you use this work or dataset in your research, please cite the original paper:
33
+
34
+ ```bibtex
35
+ @article{geofocus2026,
36
+ title={GeoFocus: Blending Efficient Global-to-Local Perception for Multimodal Geometry Problem-Solving},
37
+ author={...},
38
+ journal={arXiv preprint arXiv:2602.08524},
39
+ year={2026}
40
+ }
41
+ ```