Duanj1 commited on
Commit
c8f66d2
·
verified ·
1 Parent(s): ccd13f6

placeholder README

Browse files
Files changed (1) hide show
  1. README.md +47 -0
README.md ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ pretty_name: Molmo2-ER RefSpatial
6
+ tags:
7
+ - embodied-reasoning
8
+ - molmo2
9
+ - molmo2-er
10
+ - vlm-training-data
11
+ ---
12
+
13
+ # Molmo2-ER · JingkunAn/RefSpatial
14
+
15
+ 2.5M spatial-referring corpus (web + indoor + simulated) covering 31 spatial relations.
16
+
17
+ This is a re-hosted, **loader-ready subset** of the upstream dataset, used to train [`allenai/Molmo2-ER-4B`](https://huggingface.co/allenai/Molmo2-ER-4B). Files mirror the upstream layout; nothing in the data has been modified.
18
+
19
+ ## Upstream source
20
+
21
+ - **Original dataset:** [JingkunAn/RefSpatial](https://huggingface.co/datasets/JingkunAn/RefSpatial)
22
+ - **Paper:** *RoboRefer: Towards Spatial Referring with Reasoning in Vision-Language Models for Robotics* ([arXiv:2506.04308](https://arxiv.org/abs/2506.04308))
23
+ - **License:** `apache-2.0` (inherits from upstream)
24
+
25
+ If you use this data, please cite the original authors:
26
+
27
+ ```bibtex
28
+ @misc{zhou2026roboreferspatialreferringreasoning,
29
+ title={RoboRefer: Towards Spatial Referring with Reasoning in Vision-Language Models for Robotics},
30
+ author={Enshen Zhou and Jingkun An and Cheng Chi and others},
31
+ year={2026},
32
+ eprint={2506.04308},
33
+ archivePrefix={arXiv}
34
+ }
35
+ ```
36
+
37
+ ## Extracting before training
38
+
39
+ This release ships archives. Extract them in-place before pointing `SPATIAL_DATA_HOME` at this directory:
40
+
41
+ ```bash
42
+ cd 2D/; for f in *.tar; do tar -xf $f; done; cd ../3D/; for f in *.tar; do tar -xf $f; done
43
+ ```
44
+
45
+ ## Usage in Molmo2-ER
46
+
47
+ See the [`allenai/molmo2`](https://github.com/allenai/molmo2) repository for the data loader and training recipe. The relevant loader class for this dataset lives in `olmo/data/spatial_datasets.py`.