Pokerme commited on
Commit
34bf793
·
verified ·
1 Parent(s): a4d9559

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
README.md CHANGED
@@ -1,3 +1,114 @@
1
  ---
2
- license: cc-by-4.0
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: VIEW2SPACE v1
3
+ task_categories:
4
+ - visual-question-answering
5
+ tags:
6
+ - multi-view
7
+ - vision-language
8
+ - spatial-reasoning
9
+ - counting
10
+ - detection
11
+ - mcq
12
  ---
13
+
14
+ # VIEW2SPACE v1
15
+
16
+ VIEW2SPACE v1 is a multi-view vision-language evaluation dataset for spatial reasoning.
17
+
18
+ The public release is organized into three subsets:
19
+
20
+ - `count`
21
+ - `detect`
22
+ - `mcq`
23
+
24
+ For official code, updates, and usage instructions, please see:
25
+
26
+ https://github.com/pokerme7777/VIEW2SPACE
27
+
28
+ ## Directory Structure
29
+
30
+ ```text
31
+ view2space-v1-release/
32
+ README.md
33
+ count/
34
+ overall.jsonl
35
+ detect/
36
+ overall.jsonl
37
+ mcq/
38
+ overall.jsonl
39
+ images/
40
+ img_000001.png
41
+ img_000002.png
42
+ ...
43
+ ```
44
+
45
+ Each subset contains one `overall.jsonl` file. Each line is one question.
46
+
47
+ ## Data Format
48
+
49
+ Each JSONL record contains the following public fields:
50
+
51
+ - `q_idx`: question id, such as `mcq_000001`
52
+ - `q_type`: question family, one of `mcq`, `detect`, or `count`
53
+ - `question`: question text
54
+ - `options`: multiple-choice options for MCQ questions; empty for non-MCQ questions
55
+ - `question_prompt`: extra prompt text when applicable
56
+ - `answer`: ground-truth answer
57
+ - `image_paths`: relative paths to the images used by the question
58
+ - `supporting.draw_boxes`: optional input boxes associated with one or more images
59
+
60
+ Notes:
61
+
62
+ - `image_paths` are relative to the dataset root, not to the subset folder.
63
+ - Example image path: `images/img_000123.png`
64
+ - `q_type` uses only the public family labels `mcq`, `detect`, and `count`.
65
+
66
+ ## Example Record
67
+
68
+ ```json
69
+ {
70
+ "q_idx": "mcq_000001",
71
+ "q_type": "mcq",
72
+ "question": "All views are captured from the same static scene arrangement, but from different positions and angles.\nIn view 2, consider the nearest 'man with an orange hat, crouching'. Where is the 'white temple' relative to this 'man with an orange hat, crouching'?",
73
+ "options": {
74
+ "A": "left",
75
+ "B": "right",
76
+ "C": "front",
77
+ "D": "back"
78
+ },
79
+ "question_prompt": "",
80
+ "answer": "C",
81
+ "image_paths": [
82
+ "images/img_000813.png",
83
+ "images/img_000806.png",
84
+ "images/img_000815.png"
85
+ ],
86
+ "supporting": {
87
+ "draw_boxes": null
88
+ }
89
+ }
90
+ ```
91
+
92
+ ## Basic Usage
93
+
94
+ ```python
95
+ import json
96
+ from pathlib import Path
97
+
98
+ dataset_root = Path("/path/to/view2space-v1-release")
99
+ jsonl_path = dataset_root / "mcq" / "overall.jsonl"
100
+
101
+ with jsonl_path.open("r", encoding="utf-8") as f:
102
+ first = json.loads(next(f))
103
+
104
+ image_files = [dataset_root / rel_path for rel_path in first["image_paths"]]
105
+ print(first["q_idx"])
106
+ print(first["q_type"])
107
+ print(image_files)
108
+ ```
109
+
110
+ ## Citation
111
+
112
+ If you use VIEW2SPACE v1, please refer to the official repository for the latest citation information:
113
+
114
+ https://github.com/pokerme7777/VIEW2SPACE
count/overall.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
detect/overall.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
images/img_000001.png ADDED

Git LFS Details

  • SHA256: f62aa0a84e3e92356d853a24b8fb4f0d8a4bdcf09ef6b873d1f5ad8f1c9cdd85
  • Pointer size: 131 Bytes
  • Size of remote file: 660 kB
images/img_000002.png ADDED

Git LFS Details

  • SHA256: 66233186f1ac11c275d4447f485f03795b84b55fa594c5c47d1ae0100cc428e8
  • Pointer size: 131 Bytes
  • Size of remote file: 641 kB
images/img_000003.png ADDED

Git LFS Details

  • SHA256: 1976b150db1b3bc26de869974a59168f5c528b9f7714e8c6f8180914fbb86b5d
  • Pointer size: 131 Bytes
  • Size of remote file: 610 kB
images/img_000004.png ADDED

Git LFS Details

  • SHA256: 2b9fed6bc2c20fd77589d4ab8b04d8d33c1305cc6652ad7dcbbca03319b3fdbf
  • Pointer size: 131 Bytes
  • Size of remote file: 683 kB
images/img_000005.png ADDED

Git LFS Details

  • SHA256: aec2e1f5403a03255dcbc269d6285e76e72ae3b633a5393934c84f1493024e59
  • Pointer size: 131 Bytes
  • Size of remote file: 662 kB
images/img_000006.png ADDED

Git LFS Details

  • SHA256: 89d56c5b83ac5187c41cef9d97b2e8e7d579a8a05f9244d05bc30aa9666b3838
  • Pointer size: 131 Bytes
  • Size of remote file: 659 kB
images/img_000007.png ADDED

Git LFS Details

  • SHA256: 0d2c5f1a5425268c0e9e99cc52aa0232ef9a53a8ff3b17a35cf1c84b60a6d1bb
  • Pointer size: 131 Bytes
  • Size of remote file: 680 kB
images/img_000008.png ADDED

Git LFS Details

  • SHA256: abda16a5a01fd439c0e06ffc60316ab1b4276f85da3fb0f7b4cb5a7cbc8356d7
  • Pointer size: 131 Bytes
  • Size of remote file: 746 kB
images/img_000009.png ADDED

Git LFS Details

  • SHA256: 57f9d2fcd26b066dde39492d8cad5dc4aaf3dffd867053815479126cd892b91f
  • Pointer size: 131 Bytes
  • Size of remote file: 669 kB
images/img_000010.png ADDED

Git LFS Details

  • SHA256: 7d859e2e737209fb8237cc0b4e8123fd67188ddd8e15a4b9b55b326e4ae41456
  • Pointer size: 131 Bytes
  • Size of remote file: 777 kB
images/img_000011.png ADDED

Git LFS Details

  • SHA256: 1efd1522c239b32c7f83706136ca0bd15ed499bc67a1a7be2ef5451405a341a2
  • Pointer size: 131 Bytes
  • Size of remote file: 786 kB
images/img_000012.png ADDED

Git LFS Details

  • SHA256: ffc0cc6104aeb30e2b85bb6daf1962730b761558a4d411f83696e44b0e110e50
  • Pointer size: 131 Bytes
  • Size of remote file: 784 kB
images/img_000013.png ADDED

Git LFS Details

  • SHA256: 9b8900b3517bf1b6d1393a27c7603e8a64d644f5f4a3fcff268aa480ebdfe1ab
  • Pointer size: 131 Bytes
  • Size of remote file: 756 kB
images/img_000014.png ADDED

Git LFS Details

  • SHA256: efa915c21d56eb89947b5bd70ba92251eba0f7e00459221b5639e6f99845ee79
  • Pointer size: 131 Bytes
  • Size of remote file: 779 kB
images/img_000015.png ADDED

Git LFS Details

  • SHA256: 4103b073ef2a65ff1bfd16be610763988402617e34f8f802de5e7ed6510cc706
  • Pointer size: 131 Bytes
  • Size of remote file: 438 kB
images/img_000016.png ADDED

Git LFS Details

  • SHA256: 1075ccf537fe4a802c7dbdd20184b186e8783c8c2594f220991289e32b240a00
  • Pointer size: 131 Bytes
  • Size of remote file: 638 kB
images/img_000017.png ADDED

Git LFS Details

  • SHA256: 3390897fa542d72b80909594db7339ec7575396de1279a2dc628741532d463c3
  • Pointer size: 131 Bytes
  • Size of remote file: 626 kB
images/img_000018.png ADDED

Git LFS Details

  • SHA256: 94630ccaf23edb1cf6a88349ea7d6bb24a03d5ce90c86db322f752fdd6612c88
  • Pointer size: 131 Bytes
  • Size of remote file: 622 kB
images/img_000019.png ADDED

Git LFS Details

  • SHA256: b7c0ea4bea8e1dcb32940e2bd28db8f35935a4d7223fc7abf934e552a945b104
  • Pointer size: 131 Bytes
  • Size of remote file: 645 kB
images/img_000020.png ADDED

Git LFS Details

  • SHA256: 6052978f546545c9e6cfddabef06811d4994f2e89f056ee052f0180bccc7450a
  • Pointer size: 131 Bytes
  • Size of remote file: 599 kB
images/img_000021.png ADDED

Git LFS Details

  • SHA256: 0cbf4ee550117e62abea2d97f86c1c5e74558685dcd4164a2f78d906f3854974
  • Pointer size: 131 Bytes
  • Size of remote file: 657 kB
images/img_000022.png ADDED

Git LFS Details

  • SHA256: 6b7eaef99390ce33fd58ca112e3dc022517f286d71800489dfda871a3ed69b06
  • Pointer size: 131 Bytes
  • Size of remote file: 706 kB
images/img_000023.png ADDED

Git LFS Details

  • SHA256: 10e88af91f16b3835e1e79fc0f769bb9780a38961bca29a79a032e17ae9a65e4
  • Pointer size: 131 Bytes
  • Size of remote file: 687 kB
images/img_000024.png ADDED

Git LFS Details

  • SHA256: 818148d4f2b7fdc6b0712d011d7aaa72e206cfe0e1c3da4ee1ea84185a2ec2f2
  • Pointer size: 131 Bytes
  • Size of remote file: 676 kB
images/img_000025.png ADDED

Git LFS Details

  • SHA256: 6b42ccc171d8ea8f1ab184e9309f0d6f41f0e2d0a54f5182f95f1bd55d188c94
  • Pointer size: 131 Bytes
  • Size of remote file: 600 kB
images/img_000026.png ADDED

Git LFS Details

  • SHA256: c82020631d822c20d40aa8ef5cc1f3837ed1520bd76f59d79fccb85829c496e3
  • Pointer size: 131 Bytes
  • Size of remote file: 689 kB
images/img_000027.png ADDED

Git LFS Details

  • SHA256: 30659839a9a089cb3e573d9b6b3083e98821d642128a394ea5507d205a04ad29
  • Pointer size: 131 Bytes
  • Size of remote file: 687 kB
images/img_000028.png ADDED

Git LFS Details

  • SHA256: 8ecb03829e97dda77d8a442b06f92e1b1d43343bba1fabf11a227e6b053606ec
  • Pointer size: 131 Bytes
  • Size of remote file: 690 kB
images/img_000029.png ADDED

Git LFS Details

  • SHA256: daeee1b9d603eee811c5591d49c030035633e260b414f2e1198920f1afe5fa87
  • Pointer size: 131 Bytes
  • Size of remote file: 683 kB
images/img_000030.png ADDED

Git LFS Details

  • SHA256: bdce4c491097c32b4dea40bf24dd80cc037e0388a5bac73e5ee3239c7b77c2d4
  • Pointer size: 131 Bytes
  • Size of remote file: 600 kB
images/img_000031.png ADDED

Git LFS Details

  • SHA256: be508b69168d08d8fd6ff4c24deb46e9fdec44120490f1711e6f5f6250b1e9f0
  • Pointer size: 131 Bytes
  • Size of remote file: 614 kB
images/img_000032.png ADDED

Git LFS Details

  • SHA256: 1f39248e53cf322e4b858368f375bf13a65f0ae6d339a34f743bc3d615713b11
  • Pointer size: 131 Bytes
  • Size of remote file: 615 kB
images/img_000033.png ADDED

Git LFS Details

  • SHA256: 96d4ee457a48cca5728e52d4e3d4b43272c94af484d2c8aa7fb6636c23087f27
  • Pointer size: 131 Bytes
  • Size of remote file: 581 kB
images/img_000034.png ADDED

Git LFS Details

  • SHA256: 406d9c2f0348240b8c3980b1668570721d93a7d7e31662f56f74a4f179f7b128
  • Pointer size: 131 Bytes
  • Size of remote file: 544 kB
images/img_000035.png ADDED

Git LFS Details

  • SHA256: 1227e6bd3c0a0fffeb62ce285fa427a331c99aea18377bcfa5745925c9b7efa3
  • Pointer size: 131 Bytes
  • Size of remote file: 554 kB
images/img_000036.png ADDED

Git LFS Details

  • SHA256: 19b337e102d9342c859aeb184799c2c64e58145f19ba895158b77595c8dbc218
  • Pointer size: 131 Bytes
  • Size of remote file: 616 kB
images/img_000037.png ADDED

Git LFS Details

  • SHA256: 0fb0d44a5f26834ad2cc5e6b534d9f9fb691227c9d07d1f70ec0aa83ec043bf2
  • Pointer size: 131 Bytes
  • Size of remote file: 664 kB
images/img_000038.png ADDED

Git LFS Details

  • SHA256: 5c9a52e16f41825f022e62796017d64d4458452f6411218b5401fab000092532
  • Pointer size: 131 Bytes
  • Size of remote file: 628 kB
images/img_000039.png ADDED

Git LFS Details

  • SHA256: 23c4c61f14ef8d0089c48ad10cca41b3e817b7666e7145a1b5a4a5f62ae23527
  • Pointer size: 131 Bytes
  • Size of remote file: 645 kB
images/img_000040.png ADDED

Git LFS Details

  • SHA256: ca542da56ae58dcd5e7e3cac27f44b2b9acc0aa7036153483a5a10ad05054d2a
  • Pointer size: 131 Bytes
  • Size of remote file: 608 kB
images/img_000041.png ADDED

Git LFS Details

  • SHA256: 458b08b1022a5da3cbe7438c182717ae3d97b6ba5bb238119eef5fc2debb55ab
  • Pointer size: 131 Bytes
  • Size of remote file: 623 kB
images/img_000042.png ADDED

Git LFS Details

  • SHA256: 7c7cdb31dffb734e3bc86659eda02759c54b158d792b1e6f3038c97517ea538c
  • Pointer size: 131 Bytes
  • Size of remote file: 628 kB
images/img_000043.png ADDED

Git LFS Details

  • SHA256: 07a71e6cdce3f361da948e739ad255674d3d1dc36ad761af2a67ca8bcb7a95c9
  • Pointer size: 131 Bytes
  • Size of remote file: 656 kB
images/img_000044.png ADDED

Git LFS Details

  • SHA256: 2246719bfaaaa218f6ae949b6a1074bf420bb9364c7b1812209d409a15136e78
  • Pointer size: 131 Bytes
  • Size of remote file: 624 kB
images/img_000045.png ADDED

Git LFS Details

  • SHA256: 29991998ba23ea73548b32b1327a7f3e4edd60d9e39798018fbaa20aa19c9ed1
  • Pointer size: 131 Bytes
  • Size of remote file: 519 kB
images/img_000046.png ADDED

Git LFS Details

  • SHA256: ec774af1edddff5d051a69b509371ef568998027a7e8d1ab4931a311d053ebf0
  • Pointer size: 131 Bytes
  • Size of remote file: 596 kB
images/img_000047.png ADDED

Git LFS Details

  • SHA256: dc764deab6f34d7928c7b158fd861f267f0502b477550c4e5ec6a4981590a4be
  • Pointer size: 131 Bytes
  • Size of remote file: 618 kB