Duanj1 commited on
Commit
421ec9e
·
verified ·
1 Parent(s): 60ba79a

Initial release: array/SAT subset for Molmo2-ER training

Browse files
Files changed (3) hide show
  1. README.md +39 -0
  2. README_upstream.md +80 -0
  3. SAT_train.parquet +3 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ pretty_name: Molmo2-ER SAT
6
+ tags:
7
+ - embodied-reasoning
8
+ - molmo2
9
+ - molmo2-er
10
+ - vlm-training-data
11
+ ---
12
+
13
+ # Molmo2-ER · array/SAT
14
+
15
+ Spatial Aptitude Training: 175K binary-MCQ VQA pairs over ProcTHOR indoor scenes.
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:** [array/SAT](https://huggingface.co/datasets/array/SAT)
22
+ - **Paper:** *SAT: Dynamic Spatial Aptitude Training for Multimodal Language Models* ([arXiv:2412.07755](https://arxiv.org/abs/2412.07755))
23
+ - **License:** `mit` (inherits from upstream)
24
+
25
+ If you use this data, please cite the original authors:
26
+
27
+ ```bibtex
28
+ @misc{ray2025satdynamicspatialaptitude,
29
+ title={SAT: Dynamic Spatial Aptitude Training for Multimodal Language Models},
30
+ author={Arijit Ray and Jiafei Duan and Ellis Brown and others},
31
+ year={2025},
32
+ eprint={2412.07755},
33
+ archivePrefix={arXiv}
34
+ }
35
+ ```
36
+
37
+ ## Usage in Molmo2-ER
38
+
39
+ 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`.
README_upstream.md ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ configs:
4
+ - config_name: default
5
+ data_files:
6
+ - split: train
7
+ path: "SAT_train.parquet"
8
+ - split: static
9
+ path: "SAT_static.parquet"
10
+ - split: val
11
+ path: "SAT_val.parquet"
12
+ - split: test
13
+ path: "SAT_test.parquet"
14
+ dataset_info:
15
+ features:
16
+ - name: image_bytes
17
+ list:
18
+ dtype: image
19
+ - name: question
20
+ dtype: string
21
+ - name: answers
22
+ list:
23
+ dtype: string
24
+ - name: question_type
25
+ dtype: string
26
+ - name: correct_answer
27
+ dtype: string
28
+ task_categories:
29
+ - question-answering
30
+ size_categories:
31
+ - 100K<n<1M
32
+ ---
33
+ # SAT: Spatial Aptitude Training for Multimodal Language Models
34
+
35
+ [Project Page](https://arijitray1993.github.io/SAT/)
36
+
37
+ ![SAT Data](https://arijitray1993.github.io/SAT/SAT_webpage/static/images/sat_teaser.png)
38
+
39
+
40
+ To use the dataset, first make sure you have Python3.10 and Huggingface datasets version 3.0.2 (`pip install datasets==3.0.2`):
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+ import io
45
+
46
+ split = "val"
47
+ dataset = load_dataset("array/SAT", batch_size=128)
48
+
49
+ example = dataset[split][10] # example 10th item
50
+
51
+ images = [Image.open(io.BytesIO(im_bytes)) for im_bytes in example['image_bytes']] # this is a list of images. Some questions are on one image, and some on 2 images
52
+
53
+ question = example['question']
54
+ answer_choices = example['answers'] # please randomize this if you present as choices to MLM, or perform circular eval.
55
+ correct_answer = example['correct_answer']
56
+
57
+ ```
58
+
59
+ The available `split` choices are:
60
+ - `train`: (175K image QA pairs) Train split of SAT data that includes both static relationships and dyamic spatial QAs involving object and scene motion. For motion-based questions, there are two images.
61
+ - `static`: (127K image QA pairs) Train split of SAT data that includes _only_ static QAs. Always has one image only.
62
+ - `val`: (4K image QA pairs) Synthetic validation split.
63
+ - `test`: (150 image QA pairs) Real-image dynamic test set. **We highly recommend performing circular eval (test with all positions of the correct answer among answer choices) since this split is small. The paper results are with circular eval.**
64
+
65
+
66
+
67
+
68
+ If you find this data useful, please consider citing:
69
+
70
+ ```
71
+ @misc{ray2025satdynamicspatialaptitude,
72
+ title={SAT: Dynamic Spatial Aptitude Training for Multimodal Language Models},
73
+ author={Arijit Ray and Jiafei Duan and Ellis Brown and Reuben Tan and Dina Bashkirova and Rose Hendrix and Kiana Ehsani and Aniruddha Kembhavi and Bryan A. Plummer and Ranjay Krishna and Kuo-Hao Zeng and Kate Saenko},
74
+ year={2025},
75
+ eprint={2412.07755},
76
+ archivePrefix={arXiv},
77
+ primaryClass={cs.CV},
78
+ url={https://arxiv.org/abs/2412.07755},
79
+ }
80
+ ```
SAT_train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7103623171c5270a633d7ba9bc646b61bb4401e3efe3b9d1dc441762e082821a
3
+ size 4558508645