lidingm commited on
Commit
b83d1de
·
verified ·
1 Parent(s): 84404ae

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +72 -3
README.md CHANGED
@@ -1,3 +1,72 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model:
4
+ - Qwen/Qwen2.5-VL-3B-Instruct
5
+ ---
6
+
7
+ # SpatialEvo: Self-Evolving Spatial Intelligence via Deterministic Geometric Environments
8
+
9
+ <a href="<PAPER_LINK>" target="_blank">
10
+ <img alt="Paper" src="https://img.shields.io/badge/arXiv-SpatialEvo-red?logo=arxiv" height="20" />
11
+ </a>
12
+ <a href="https://github.com/ZJU-REAL/SpatialEvo" target="_blank">
13
+ <img alt="Code" src="https://img.shields.io/badge/Code-SpatialEvo-white?logo=github" height="20" />
14
+ </a>
15
+ <a href="https://huggingface.co/lidingm/SpatialEvo-7B" target="_blank">
16
+ <img alt="Model" src="https://img.shields.io/badge/%F0%9F%A4%97%20_Model-SpatialEvo_7B-ffc107?color=ffc107&logoColor=white" height="20" />
17
+ </a>
18
+ <a href="https://huggingface.co/datasets/lidingm/SpatialEvo-160K" target="_blank">
19
+ <img alt="Data" src="https://img.shields.io/badge/%F0%9F%A4%97%20_Data-SpatialEvo_160k-ffc107?color=ffc107&logoColor=white" height="20" />
20
+ </a>
21
+
22
+ ## SpatialEvo-3B
23
+
24
+
25
+ This repository contains **SpatialEvo-3B**, introduced in [SpatialEvo: Self-Evolving Spatial Intelligence via Deterministic Geometric Environments](<PAPER_LINK>).
26
+
27
+ ## Model Description
28
+
29
+ SpatialEvo-3B is fine-tuned from **Qwen2.5-VL-3B-Instruct** using the SpatialEvo self-evolving framework. Instead of relying on manually annotated datasets or model voting to construct pseudo-labels, SpatialEvo leverages a **Deterministic Geometric Environment (DGE)** that programmatically computes exact ground truth from 3D point clouds and camera poses, enabling zero-noise online reinforcement learning across 16 spatial reasoning task categories.
30
+
31
+ A single shared-parameter policy co-evolves as both a **Questioner** and a **Solver** under GRPO optimization, while a lightweight **Task Scheduler** drives adaptive curriculum learning based on historical accuracy — without any manual stage design or human annotation.
32
+
33
+ ## Performance
34
+
35
+ | Benchmark | Baseline | SpatialLadder | SpaceR | SpatialSSRL | **SpatialEvo (Ours)** |
36
+ |-----------|----------|---------------|--------|-------------|----------------------|
37
+ | VSI-Bench | 28.1 | **45.7** | 36.0 | 28.0 | 39.2 |
38
+ | RealWorldQA | 63.4 | 57.1 | 61.4 | 65.4 | **66.5** |
39
+ | EmbSpatial | 55.9 | 57.6 | 55.6 | 59.8 | **61.2** |
40
+ | SpatialViz | 24.2 | 28.6 | **31.9** | 25.9 | 25.4 |
41
+ | STARE | 33.1 | 26.4 | 36.8 | 36.8 | **36.9** |
42
+ | CoreCognition | 56.8 | **58.3** | 29.1 | 57.6 | 57.4 |
43
+ | ViewSpatial | 36.2 | 43.0 | 35.9 | 38.4 | **42.3** |
44
+ | V-STAR | 74.9 | 36.7 | 75.4 | **77.0** | 75.4 |
45
+ | MMStar | 54.6 | 45.8 | 44.9 | **56.5** | 55.2 |
46
+ | **AVG** | 47.5 | 44.4 | 45.2 | 49.5 | **51.1** |
47
+
48
+ All baselines are evaluated on Qwen2.5-VL-3B. **Bold** denotes the best result per benchmark.
49
+
50
+ ## Usage
51
+
52
+ ```python
53
+ from transformers import AutoProcessor, Qwen2_5_VLForConditionalGeneration
54
+
55
+ model = Qwen2_5_VLForConditionalGeneration.from_pretrained("lidingm/SpatialEvo-3B")
56
+ processor = AutoProcessor.from_pretrained("lidingm/SpatialEvo-3B")
57
+ ```
58
+
59
+ ## Citation
60
+
61
+ If you find SpatialEvo useful, please consider citing our work:
62
+
63
+ ```bibtex
64
+
65
+ ```
66
+
67
+ ## Related Resources
68
+
69
+ - 📄 [Paper](<PAPER_LINK>)
70
+ - 💻 [GitHub Repository](https://github.com/ZJU-REAL/SpatialEvo)
71
+ - 🤗 [SpatialEvo-7B](https://huggingface.co/lidingm/SpatialEvo-7B)
72
+ - 🤗 [SpatialEvo-160K Dataset](https://huggingface.co/datasets/lidingm/SpatialEvo-160K)