AntonioJun commited on
Commit
70db6bd
·
verified ·
1 Parent(s): 6802ccc

Replace symbolic with local workspace contents

Browse files
Files changed (4) hide show
  1. symbolic/adapters.py +335 -0
  2. symbolic/launch.py +595 -0
  3. symbolic/run.py +643 -0
  4. symbolic/solver.py +902 -0
symbolic/adapters.py ADDED
@@ -0,0 +1,335 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Adapt supported spatial-code formats to the symbolic solver's internal shape.
2
+
3
+ Explicit spatial codes already contain the answer-oriented values consumed by solver.py.
4
+ Compact spatial codes contain only reusable oriented-box, time, and floor-polygon primitives;
5
+ this module derives the same solver-facing values from those primitives once, at load time.
6
+ """
7
+
8
+ from __future__ import annotations
9
+
10
+ import math
11
+
12
+ import numpy as np
13
+ from scipy.optimize import lsq_linear
14
+
15
+ SPATIAL_CODE_FORMATS = ("compact", "explicit")
16
+ _BOX_KEY = "3D oriented bounding box"
17
+ _CENTER_KEY = "3D oriented bounding box center coordinates"
18
+ _DIMENSIONS_KEY = "3D oriented bounding box dimensions"
19
+ _ORIENTATION_KEY = "3D oriented bounding box orientation unit vectors"
20
+
21
+
22
+ # ==========================================================================================
23
+ # FORMAT AND BOX VALIDATION -- identify the disk schema and normalize compact OBB values.
24
+ # ==========================================================================================
25
+
26
+
27
+ def spatial_code_format(code):
28
+ """Identify one supported spatial-code format from its object representation.
29
+
30
+ V2 explicit codes use closest_classes_from and object values are dictionaries with
31
+ instances. Compact codes use lists of oriented-box primitives. Older explicit codes
32
+ used the legacy closest classes distance meters from key and are still accepted.
33
+ """
34
+ if not isinstance(code, dict) or not isinstance(code.get("objects"), dict):
35
+ raise ValueError("spatial code must contain an objects dictionary")
36
+ if "closest_classes_from" in code or any(
37
+ isinstance(value, dict) and "instances" in value
38
+ for value in code["objects"].values()
39
+ ):
40
+ return "explicit"
41
+ return "compact"
42
+
43
+
44
+ def _vector(values, length, where):
45
+ vector = np.asarray(values, dtype=np.float64)
46
+ if vector.shape != (length,) or not np.isfinite(vector).all():
47
+ raise ValueError(f"{where} must contain {length} finite numbers")
48
+ return vector
49
+
50
+
51
+ def _oriented_box(instance):
52
+ """Return one validated center, dimension, and orientation tuple."""
53
+ try:
54
+ box = instance[_BOX_KEY]
55
+ center = _vector(box[_CENTER_KEY], 3, _CENTER_KEY)
56
+ dimensions = _vector(box[_DIMENSIONS_KEY], 3, _DIMENSIONS_KEY)
57
+ orientation = np.asarray(box[_ORIENTATION_KEY], dtype=np.float64)
58
+ except KeyError as exc:
59
+ raise ValueError(f"compact instance is missing {exc.args[0]!r}") from exc
60
+ if (dimensions < 0).any():
61
+ raise ValueError("3D oriented bounding box dimensions must be nonnegative")
62
+ if orientation.shape != (3, 3) or not np.isfinite(orientation).all():
63
+ raise ValueError(f"{_ORIENTATION_KEY} must contain three finite 3D vectors")
64
+ lengths = np.linalg.norm(orientation, axis=1)
65
+ if not np.allclose(lengths, 1.0, atol=0.02):
66
+ raise ValueError(
67
+ "3D oriented bounding box orientation vectors must have unit length"
68
+ )
69
+ orientation = orientation / lengths[:, None]
70
+ if not np.allclose(orientation @ orientation.T, np.eye(3), atol=0.02):
71
+ raise ValueError(
72
+ "3D oriented bounding box orientation vectors must be perpendicular"
73
+ )
74
+ return center, dimensions, orientation
75
+
76
+
77
+ # ==========================================================================================
78
+ # ORIENTED-BOX DISTANCE -- exact bounded optimization over every point in both boxes.
79
+ # ==========================================================================================
80
+
81
+
82
+ def oriented_box_distance(first, second):
83
+ """Return the true minimum Euclidean separation of two 3D oriented boxes.
84
+
85
+ The six box coefficients form one convex bounded least-squares problem. BVLS solves that
86
+ complete continuous objective directly; no center, corner, or longest-dimension shortcut
87
+ is used, and intersecting or touching boxes therefore return zero.
88
+ """
89
+ center_a, dimensions_a, orientation_a = _oriented_box(first)
90
+ center_b, dimensions_b, orientation_b = _oriented_box(second)
91
+ matrix = np.column_stack(
92
+ [
93
+ *(dimensions_a[index] * orientation_a[index] / 2 for index in range(3)),
94
+ *(-dimensions_b[index] * orientation_b[index] / 2 for index in range(3)),
95
+ ]
96
+ )
97
+ result = lsq_linear(
98
+ matrix,
99
+ center_b - center_a,
100
+ bounds=(-1, 1),
101
+ method="bvls",
102
+ lsq_solver="exact",
103
+ tol=1e-12,
104
+ max_iter=200,
105
+ )
106
+ if not result.success:
107
+ raise RuntimeError(
108
+ f"oriented-box distance optimization failed: {result.message}"
109
+ )
110
+ distance = float(np.linalg.norm(matrix @ result.x + center_a - center_b))
111
+ return 0.0 if distance < 1e-10 else distance
112
+
113
+
114
+ def _class_distance(first_instances, second_instances):
115
+ """Return the minimum oriented-box distance across every cross-class instance pair."""
116
+ return min(
117
+ oriented_box_distance(first, second)
118
+ for first in first_instances
119
+ for second in second_instances
120
+ )
121
+
122
+
123
+ def _primary_instance_distance_floor(first_instances, second_instances):
124
+ """Sphere-approximation floor on the two classes' PRIMARY (instance[0]) distance --
125
+ the same correction encoder.geometric._primary_instance_distance_floor applies at
126
+ explicit-encoding time, mirrored here so a compact code adapts to the exact same
127
+ table an on-disk explicit code carries."""
128
+ center_a, dimensions_a, _ = _oriented_box(first_instances[0])
129
+ center_b, dimensions_b, _ = _oriented_box(second_instances[0])
130
+ center_distance = float(np.linalg.norm(center_a - center_b))
131
+ return max(
132
+ 0.0,
133
+ center_distance - (float(dimensions_a.max()) + float(dimensions_b.max())) / 2,
134
+ )
135
+
136
+
137
+ def _corrected_class_distance(first_instances, second_instances):
138
+ """max(min-across-pairs surface distance, primary-instance sphere floor) -- the
139
+ table's printed distance value, identical to encoder.geometric._corrected_class_distance.
140
+ """
141
+ return max(
142
+ _class_distance(first_instances, second_instances),
143
+ _primary_instance_distance_floor(first_instances, second_instances),
144
+ )
145
+
146
+
147
+ # ==========================================================================================
148
+ # FLOOR GEOMETRY -- ordered shoelace boundaries, holes, and disconnected floor regions.
149
+ # ==========================================================================================
150
+
151
+
152
+ def _polygon_area(coordinates):
153
+ """Return the unsigned shoelace area of one ordered boundary."""
154
+ if len(coordinates) < 3:
155
+ return 0.0
156
+ return abs(
157
+ sum(
158
+ coordinates[index][0] * coordinates[(index + 1) % len(coordinates)][1]
159
+ - coordinates[(index + 1) % len(coordinates)][0] * coordinates[index][1]
160
+ for index in range(len(coordinates))
161
+ )
162
+ / 2
163
+ )
164
+
165
+
166
+ def _floor_area(polygons):
167
+ """Sum outer areas and subtract every interior hole across all floor regions."""
168
+ area = 0.0
169
+ for polygon in polygons:
170
+ area += _polygon_area(polygon.get("outer boundary coordinates", []))
171
+ area -= sum(
172
+ _polygon_area(hole)
173
+ for hole in polygon.get("interior hole boundary coordinates", [])
174
+ )
175
+ return max(0.0, area)
176
+
177
+
178
+ # ==========================================================================================
179
+ # SOLVER SHAPE -- derive every answer-oriented value once from compact primitives.
180
+ # ==========================================================================================
181
+
182
+
183
+ def _adapt_compact(code):
184
+ """Derive the answer-oriented solver shape from compact geometric primitives."""
185
+ compact_objects = code["objects"]
186
+ objects = {}
187
+ first_visible = {}
188
+ for class_name, instances in compact_objects.items():
189
+ if not isinstance(instances, list):
190
+ raise ValueError(f"compact object class {class_name!r} must contain a list")
191
+ rendered = []
192
+ for instance in instances:
193
+ center, dimensions, _ = _oriented_box(instance)
194
+ first_time = instance["first visible time"]
195
+ rendered.append(
196
+ {
197
+ "position": {
198
+ "x coordinate": float(center[0]),
199
+ "y coordinate": float(center[1]),
200
+ "height above floor": float(center[2]),
201
+ },
202
+ "longest dimension": float(dimensions.max()),
203
+ }
204
+ )
205
+ # None means no ground truth timing is available for this instance -- excluded from the min rather than coerced to a
206
+ # fabricated time; a class with no timed instance at all falls through to the
207
+ # math.inf default below and sorts after every timed class.
208
+ if first_time is not None:
209
+ first_visible[class_name] = min(
210
+ first_visible.get(class_name, math.inf), float(first_time)
211
+ )
212
+ objects[class_name] = {"count": len(instances), "instances": rendered}
213
+
214
+ # Mirrors encoder.geometric._explicit_from_compact's split exactly: ranks from the
215
+ # RAW min-across-instances distance, printed value = the answer-time-corrected
216
+ # distance (the solver's own absolute-distance answer).
217
+ classes = [name for name, instances in compact_objects.items() if instances]
218
+ raw_distances = {class_name: {} for class_name in classes}
219
+ printed_distances = {class_name: {} for class_name in classes}
220
+ for index, class_name in enumerate(classes):
221
+ for other in classes[index + 1 :]:
222
+ raw = _class_distance(compact_objects[class_name], compact_objects[other])
223
+ printed = _corrected_class_distance(
224
+ compact_objects[class_name], compact_objects[other]
225
+ )
226
+ raw_distances[class_name][other] = raw
227
+ raw_distances[other][class_name] = raw
228
+ printed_distances[class_name][other] = printed
229
+ printed_distances[other][class_name] = printed
230
+ closest = {}
231
+ for class_name, distances in raw_distances.items():
232
+ ranked = sorted(distances.items(), key=lambda item: (item[1], item[0]))
233
+ closest[class_name] = {
234
+ other: {
235
+ "distance": printed_distances[class_name][other],
236
+ "closeness rank": rank + 1,
237
+ }
238
+ for rank, (other, _raw) in enumerate(ranked)
239
+ }
240
+
241
+ polygons = code.get("room", {}).get("floor boundary polygons", [])
242
+ return {
243
+ "objects": objects,
244
+ "room": {"floor area": _floor_area(polygons)},
245
+ "closest classes distance meters from": closest,
246
+ "appearance order": sorted(
247
+ classes,
248
+ key=lambda class_name: (
249
+ first_visible.get(class_name, math.inf),
250
+ class_name,
251
+ ),
252
+ ),
253
+ }
254
+
255
+
256
+ def _adapt_v2_explicit(code):
257
+ """Normalize the legend-free V2 answer-oriented code for solver.py."""
258
+ objects = {}
259
+ for class_name, class_data in code["objects"].items():
260
+ if not isinstance(class_data, dict) or not isinstance(
261
+ class_data.get("instances"), list
262
+ ):
263
+ raise ValueError(
264
+ f"V2 object class {class_name!r} must contain an instances list"
265
+ )
266
+ rendered = []
267
+ for instance in class_data["instances"]:
268
+ try:
269
+ position = instance["position"]
270
+ rendered.append(
271
+ {
272
+ "position": {
273
+ "x coordinate": position["floor_x_meters"],
274
+ "y coordinate": position["floor_y_meters"],
275
+ "height above floor": position["height_above_floor_meters"],
276
+ },
277
+ "longest dimension": instance["longest_dimension_meters"],
278
+ }
279
+ )
280
+ except KeyError as exc:
281
+ raise ValueError(
282
+ f"V2 instance for {class_name!r} is missing {exc.args[0]!r}"
283
+ ) from exc
284
+ objects[class_name] = {
285
+ "count": class_data.get("count", len(rendered)),
286
+ "instances": rendered,
287
+ }
288
+
289
+ closest = {}
290
+ for class_name, neighbors in code.get("closest_classes_from", {}).items():
291
+ if not isinstance(neighbors, dict):
292
+ raise ValueError(
293
+ f"V2 closest_classes_from[{class_name!r}] must be a dictionary"
294
+ )
295
+ closest[class_name] = {}
296
+ for other, entry in neighbors.items():
297
+ try:
298
+ closest[class_name][other] = {
299
+ "distance": entry["distance_meters"],
300
+ "closeness rank": entry["closeness_rank"],
301
+ }
302
+ except KeyError as exc:
303
+ raise ValueError(
304
+ f"V2 distance entry {class_name!r} -> {other!r} is missing {exc.args[0]!r}"
305
+ ) from exc
306
+
307
+ room = code.get("room", {})
308
+ if not isinstance(room, dict):
309
+ raise ValueError("V2 room must be a dictionary")
310
+ if "floor_area_square_meters" not in room:
311
+ raise ValueError("V2 room is missing floor_area_square_meters")
312
+ return {
313
+ "objects": objects,
314
+ "room": {"floor area": room["floor_area_square_meters"]},
315
+ "closest classes distance meters from": closest,
316
+ "appearance order": list(code.get("appearance order", objects)),
317
+ }
318
+
319
+
320
+ def adapt_spatial_code(code, expected_format=None):
321
+ """Return one validated solver-facing code for either supported disk format."""
322
+ detected = spatial_code_format(code)
323
+ if expected_format is not None and expected_format not in SPATIAL_CODE_FORMATS:
324
+ raise ValueError(
325
+ f"unknown spatial-code format {expected_format!r}; expected {SPATIAL_CODE_FORMATS}"
326
+ )
327
+ if expected_format is not None and detected != expected_format:
328
+ raise ValueError(
329
+ f"expected {expected_format!r} spatial code, found {detected!r}"
330
+ )
331
+ if detected == "compact":
332
+ return _adapt_compact(code)
333
+ if "closest_classes_from" in code:
334
+ return _adapt_v2_explicit(code)
335
+ return code
symbolic/launch.py ADDED
@@ -0,0 +1,595 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Runs the symbolic engine (via symbolic/run.py's score_scene()) across every scene that has
2
+ a real spatial code under /workspace/data/spatial codes/<MODEL>/ -- the multi-scene
3
+ orchestrator, matching encoder/launch.py's and harness/launch.py's own single-scene-worker vs.
4
+ multi-scene-orchestrator split (symbolic/run.py stays single-scene only; this file is the only
5
+ one that loops over more than one scene). This file contains no scoring logic of its own --
6
+ every real computation (fetching a spatial code, calling the engine, scoring via the real,
7
+ unmodified vsi_official_eval.py) is symbolic/run.py's score_scene(), called once per scene.
8
+
9
+ Usage:
10
+ python symbolic/launch.py
11
+ Every scene under /workspace/data/spatial codes/<MODEL>/*.json that has at least one real
12
+ question in test.jsonl -- runs each one (delegating to symbolic/run.py's score_scene()
13
+ for the actual work), prints a per-scene report (including the appearance-order
14
+ diagnostic run.py builds), then one combined aggregate across every scene together.
15
+
16
+ python symbolic/launch.py --scenes 09c1414f1b,41069025
17
+ Restrict to specific scene IDs (comma-separated) instead of every scene on disk.
18
+
19
+ python symbolic/launch.py --quiet
20
+ Suppress per-scene reports, print only the final combined aggregate.
21
+ """
22
+
23
+ from __future__ import annotations
24
+
25
+ import argparse
26
+ import glob
27
+ import importlib.util
28
+ import json
29
+ import os
30
+ import sys
31
+
32
+ _HERE = os.path.dirname(os.path.abspath(__file__))
33
+ if _HERE not in sys.path:
34
+ sys.path.insert(0, _HERE)
35
+
36
+
37
+ def _import_run_module():
38
+ """Loads symbolic/run.py by explicit file path, NOT a bare `import run` -- harness/run.py
39
+ also exists as plain 'run' and imports torch at module level, so whenever harness/ is also
40
+ on sys.path (e.g. because a caller needs harness/vsi_official_eval.py too), a bare `import
41
+ run` can silently resolve to the WRONG file and crash on a missing torch install even
42
+ though nothing in symbolic/ needs torch at all. This is a real bug this file had until it
43
+ was caught by actually running tests/test_symbolic/test_launch.py, not a hypothetical worth guarding
44
+ against defensively."""
45
+ cache_key = "_symbolic_run_REAL"
46
+ if cache_key in sys.modules:
47
+ return sys.modules[cache_key]
48
+ spec = importlib.util.spec_from_file_location(
49
+ cache_key, os.path.join(_HERE, "run.py")
50
+ )
51
+ mod = importlib.util.module_from_spec(spec)
52
+ sys.modules[cache_key] = mod
53
+ spec.loader.exec_module(mod)
54
+ return mod
55
+
56
+
57
+ symbolic_run = _import_run_module()
58
+
59
+
60
+ # ==========================================================================================
61
+ # SCENE DISCOVERY -- every scene with a real spatial code on disk right now.
62
+ # ==========================================================================================
63
+
64
+
65
+ def scenes_with_spatial_codes():
66
+ """Every scene ID that has a real spatial_code.json under
67
+ symbolic_run.SPATIAL_CODES_DIR right now."""
68
+ d = symbolic_run.SPATIAL_CODES_DIR
69
+ if not os.path.isdir(d):
70
+ return []
71
+ return sorted(
72
+ os.path.splitext(os.path.basename(p))[0]
73
+ for p in glob.glob(os.path.join(d, "*.json"))
74
+ )
75
+
76
+
77
+ # ==========================================================================================
78
+ # ORCHESTRATION -- runs symbolic_run.score_scene() per scene, combines every scene's
79
+ # per-question results into one real official aggregate.
80
+ # ==========================================================================================
81
+
82
+
83
+ def run_all(scene_ids=None, quiet=False):
84
+ """Runs every scene in scene_ids (or every scene with a spatial code on disk, if None)
85
+ through symbolic_run.score_scene(). Returns (per_scene_results, combined_aggregate) where
86
+ per_scene_results is {scene_id: (per_question, aggregate)} and combined_aggregate is the
87
+ real official vsi_official_eval.py aggregate across every scene's questions together.
88
+ """
89
+ import vsi_official_eval as vse
90
+
91
+ scene_ids = scene_ids if scene_ids is not None else scenes_with_spatial_codes()
92
+ if not scene_ids:
93
+ return {}, {}
94
+
95
+ per_scene_results = {}
96
+ all_scored = []
97
+ for scene_id in scene_ids:
98
+ try:
99
+ rows = symbolic_run.real_questions_for_scene(scene_id)
100
+ except FileNotFoundError as e:
101
+ sys.exit(str(e))
102
+ if not rows:
103
+ continue # no real questions for this scene -- nothing to score or report
104
+
105
+ per_question, aggregate = symbolic_run.score_scene(scene_id)
106
+ code = symbolic_run.fetch_spatial_code(scene_id)
107
+ per_scene_results[scene_id] = (per_question, aggregate)
108
+ if not quiet:
109
+ symbolic_run._print_scene_report(scene_id, per_question, aggregate, code)
110
+ symbolic_run.write_scene_results(scene_id, per_question, aggregate, code)
111
+
112
+ # re-derive each question's raw scored dict (not just the display-ready per_question
113
+ # summary) so the combined aggregate below is computed the SAME way score_scene()
114
+ # computes a single scene's own aggregate -- via the real, unmodified
115
+ # vsi_official_eval.py functions, never re-implemented here.
116
+ for r in rows:
117
+ result = symbolic_run.sym.answer(
118
+ r["question_type"], r["question"], r["options"], code
119
+ )
120
+ pred_str = "" if result is None else str(result)
121
+ doc = {
122
+ "question_type": r["question_type"],
123
+ "ground_truth": r["ground_truth"],
124
+ }
125
+ all_scored.append(
126
+ vse.vsibench_process_results(doc, [pred_str])["vsibench_score"]
127
+ )
128
+
129
+ types_present = {s["question_type"] for s in all_scored}
130
+ for missing in symbolic_run._DIRECTION_SUBTYPES - types_present:
131
+ if any(t in types_present for t in symbolic_run._DIRECTION_SUBTYPES):
132
+ doc = {"question_type": missing, "ground_truth": "A"}
133
+ all_scored.append(
134
+ vse.vsibench_process_results(doc, ["Z"])["vsibench_score"]
135
+ )
136
+
137
+ combined_aggregate = (
138
+ vse.vsibench_aggregate_results(all_scored) if all_scored else {}
139
+ )
140
+ return per_scene_results, combined_aggregate
141
+
142
+
143
+ # ==========================================================================================
144
+ # ERROR ANALYSIS -- real error-magnitude detail for object_counting and
145
+ # object_size_estimation specifically: mean/median error, over- vs under- direction, and the
146
+ # worst-offending (class, scene) pairs. NOT computed by vsi_official_eval.py's own aggregate
147
+ # (which only gives one MRA/accuracy number per category) -- this reads the SAME per_question
148
+ # data run_all() already collected and adds statistics on top, no new scoring logic.
149
+ # ==========================================================================================
150
+
151
+ _ANALYZABLE_TYPES = {
152
+ "object_counting": symbolic_run.sym.class_named_in_counting_question,
153
+ "object_size_estimation": symbolic_run.sym.class_named_in_size_question,
154
+ }
155
+
156
+
157
+ def error_analysis(per_scene_results, question_type):
158
+ """Real error-magnitude breakdown for one question_type (object_counting or
159
+ object_size_estimation) across every scene in per_scene_results. Returns a dict:
160
+ - n: how many real questions of this type were analyzed
161
+ - n_unanswered: how many the engine returned None for (excluded from error stats below,
162
+ since there's no numeric error to compute -- these show up separately)
163
+ - mean_absolute_error, median_absolute_error: real |engine - ground_truth|, in the
164
+ question's own real unit (count: bare number; size: centimeters)
165
+ - overcounts, undercounts, exact: how many answered questions were too high, too low,
166
+ or exactly right
167
+ - worst_offenders: the 10 largest-error (class, scene, engine, ground_truth, error)
168
+ tuples, sorted worst first -- where to look first
169
+ - by_class: EVERY class that appeared, {n, mean_absolute_error, median_absolute_error,
170
+ overcounts, undercounts, exact}, sorted by mean_absolute_error descending -- answers
171
+ "is this concentrated in a few classes, or spread across all of them?" (worst_offenders
172
+ alone can't answer that -- it's capped at 10 individual QUESTIONS, which could all be
173
+ the same class repeated, or 10 different classes; by_class aggregates properly)
174
+ """
175
+ if question_type not in _ANALYZABLE_TYPES:
176
+ raise ValueError(
177
+ f"error_analysis() only supports {sorted(_ANALYZABLE_TYPES)}, "
178
+ f"got {question_type!r}"
179
+ )
180
+ extract_name = _ANALYZABLE_TYPES[question_type]
181
+
182
+ errors = [] # (abs_error, signed_error, class_name, scene_id, engine, ground_truth)
183
+ n_unanswered = 0
184
+ for scene_id, (per_question, aggregate) in per_scene_results.items():
185
+ for pq in per_question:
186
+ if pq["question_type"] != question_type:
187
+ continue
188
+ if pq["engine_answer"] is None:
189
+ n_unanswered += 1
190
+ continue
191
+ try:
192
+ engine_val = float(pq["engine_answer"])
193
+ gt_val = float(pq["ground_truth"])
194
+ except (TypeError, ValueError):
195
+ continue # a real answer that isn't numeric (shouldn't happen for these two
196
+ # types, but never crash the diagnostic over one malformed row)
197
+ name = extract_name(pq["question"]) or "?"
198
+ signed = engine_val - gt_val
199
+ errors.append((abs(signed), signed, name, scene_id, engine_val, gt_val))
200
+
201
+ n = len(errors) + n_unanswered
202
+ if not errors:
203
+ return {
204
+ "n": n,
205
+ "n_unanswered": n_unanswered,
206
+ "mean_absolute_error": None,
207
+ "median_absolute_error": None,
208
+ "overcounts": 0,
209
+ "undercounts": 0,
210
+ "exact": 0,
211
+ "worst_offenders": [],
212
+ "by_class": [],
213
+ }
214
+
215
+ abs_errors = sorted(e[0] for e in errors)
216
+ mean_ae = sum(abs_errors) / len(abs_errors)
217
+ mid = len(abs_errors) // 2
218
+ median_ae = (
219
+ abs_errors[mid]
220
+ if len(abs_errors) % 2 == 1
221
+ else (abs_errors[mid - 1] + abs_errors[mid]) / 2
222
+ )
223
+
224
+ overcounts = sum(1 for e in errors if e[1] > 0)
225
+ undercounts = sum(1 for e in errors if e[1] < 0)
226
+ exact = sum(1 for e in errors if e[1] == 0)
227
+
228
+ worst = sorted(errors, key=lambda e: -e[0])[:10]
229
+ worst_offenders = [
230
+ {
231
+ "class": name,
232
+ "scene": scene_id,
233
+ "engine_answer": engine_val,
234
+ "ground_truth": gt_val,
235
+ "error": signed,
236
+ }
237
+ for abs_e, signed, name, scene_id, engine_val, gt_val in worst
238
+ ]
239
+
240
+ by_class_raw = {}
241
+ for abs_e, signed, name, scene_id, engine_val, gt_val in errors:
242
+ by_class_raw.setdefault(name, []).append((abs_e, signed))
243
+ by_class = []
244
+ for name, class_errors in by_class_raw.items():
245
+ c_abs = sorted(e[0] for e in class_errors)
246
+ c_mean = sum(c_abs) / len(c_abs)
247
+ c_mid = len(c_abs) // 2
248
+ c_median = (
249
+ c_abs[c_mid]
250
+ if len(c_abs) % 2 == 1
251
+ else (c_abs[c_mid - 1] + c_abs[c_mid]) / 2
252
+ )
253
+ by_class.append(
254
+ {
255
+ "class": name,
256
+ "n": len(class_errors),
257
+ "mean_absolute_error": round(c_mean, 3),
258
+ "median_absolute_error": round(c_median, 3),
259
+ "overcounts": sum(1 for e in class_errors if e[1] > 0),
260
+ "undercounts": sum(1 for e in class_errors if e[1] < 0),
261
+ "exact": sum(1 for e in class_errors if e[1] == 0),
262
+ }
263
+ )
264
+ by_class.sort(key=lambda c: -c["mean_absolute_error"])
265
+
266
+ return {
267
+ "n": n,
268
+ "n_unanswered": n_unanswered,
269
+ "mean_absolute_error": round(mean_ae, 3),
270
+ "median_absolute_error": round(median_ae, 3),
271
+ "overcounts": overcounts,
272
+ "undercounts": undercounts,
273
+ "exact": exact,
274
+ "worst_offenders": worst_offenders,
275
+ "by_class": by_class,
276
+ }
277
+
278
+
279
+ def print_error_analysis(per_scene_results, show_by_class=True, by_class_limit=15):
280
+ """Prints error_analysis() for both analyzable types, real numbers, formatted for
281
+ terminal reading -- the actual per-category diagnostic this file exists to provide.
282
+ show_by_class=True additionally prints the per-class breakdown (capped at by_class_limit
283
+ classes, worst first, since a scene set can have 30+ classes -- pass a higher limit or
284
+ None for no cap to see everything)."""
285
+ for question_type in _ANALYZABLE_TYPES:
286
+ result = error_analysis(per_scene_results, question_type)
287
+ unit = "centimeters" if question_type == "object_size_estimation" else "objects"
288
+ print(
289
+ f"\n {question_type} ({result['n']} real questions, "
290
+ f"{result['n_unanswered']} unanswered):"
291
+ )
292
+ if result["mean_absolute_error"] is None:
293
+ print(" no answerable questions of this type found")
294
+ continue
295
+ print(f" mean absolute error: {result['mean_absolute_error']} {unit}")
296
+ print(f" median absolute error: {result['median_absolute_error']} {unit}")
297
+ print(f" overcounts/oversized: {result['overcounts']}")
298
+ print(f" undercounts/undersized: {result['undercounts']}")
299
+ print(f" exact matches: {result['exact']}")
300
+ print(" worst offenders:")
301
+ for w in result["worst_offenders"]:
302
+ direction = (
303
+ "over" if w["error"] > 0 else ("under" if w["error"] < 0 else "exact")
304
+ )
305
+ print(
306
+ f" {w['class']!r} in scene {w['scene']}: engine={w['engine_answer']}, "
307
+ f"ground_truth={w['ground_truth']} ({direction} by {abs(w['error'])})"
308
+ )
309
+ if show_by_class:
310
+ by_class = result["by_class"]
311
+ shown = by_class if by_class_limit is None else by_class[:by_class_limit]
312
+ print(
313
+ f" by class ({len(by_class)} distinct classes, "
314
+ f"showing {'all' if by_class_limit is None else f'worst {len(shown)}'}):"
315
+ )
316
+ for c in shown:
317
+ print(
318
+ f" {c['class']!r}: n={c['n']} mean_error={c['mean_absolute_error']} "
319
+ f"median_error={c['median_absolute_error']} "
320
+ f"over={c['overcounts']} under={c['undercounts']} exact={c['exact']}"
321
+ )
322
+
323
+
324
+ # ==========================================================================================
325
+ # MCA BREAKDOWN -- None (engine gave no answer) vs wrong (answered, but not the ground-truth
326
+ # letter) vs correct, for every letter-based MCA question type error_analysis() doesn't cover
327
+ # (obj_appearance_order, route_planning, object_rel_distance, object_rel_direction_* -- none
328
+ # of these are numeric answers, so there's no "error magnitude" the way
329
+ # object_counting/object_size_estimation have one). This is the diagnostic that answers "is a
330
+ # low score mostly unanswered questions, or mostly confidently wrong ones" -- a real,
331
+ # different question from error_analysis's mean/median error.
332
+ # ==========================================================================================
333
+
334
+ _MCA_TYPES_WITH_BREAKDOWN = {
335
+ "obj_appearance_order",
336
+ "route_planning",
337
+ "object_rel_distance",
338
+ "object_rel_direction_easy",
339
+ "object_rel_direction_medium",
340
+ "object_rel_direction_hard",
341
+ }
342
+
343
+
344
+ def _option_sequence(options, letter):
345
+ """The comma-separated sequence text for one lettered option (e.g. 'B' ->
346
+ ['sofa', 'pillow', 'microwave', 'trash can']) -- used to measure how far off a wrong
347
+ obj_appearance_order answer was, not just that it was wrong."""
348
+ if not options or letter is None:
349
+ return None
350
+ opt = next((o for o in options if o.strip().startswith(f"{letter}.")), None)
351
+ if opt is None:
352
+ return None
353
+ return [n.strip() for n in opt.split(".", 1)[1].split(",")]
354
+
355
+
356
+ def mca_answer_breakdown(per_scene_results, question_type):
357
+ """Real None-vs-wrong-vs-correct breakdown for one MCA question_type across every scene.
358
+ Returns a dict:
359
+ - n: how many real questions of this type were analyzed
360
+ - n_unanswered: how many the engine returned None for (no option matched)
361
+ - n_wrong: how many the engine answered, but not the ground-truth letter
362
+ - n_correct: how many matched ground truth exactly
363
+ - mean_swap_distance (obj_appearance_order ONLY, else None): among the WRONG answers,
364
+ the average pairwise-swap distance between the engine's chosen sequence and the real
365
+ ground-truth sequence -- 0 would mean every wrong answer was still the identical order
366
+ (impossible, since equal order would have scored correct), so this measures HOW
367
+ scrambled the wrong answers tend to be: low = near-misses (one adjacent swap off),
368
+ high = essentially unrelated to the true order.
369
+ """
370
+ if question_type not in _MCA_TYPES_WITH_BREAKDOWN:
371
+ raise ValueError(
372
+ f"mca_answer_breakdown() only supports "
373
+ f"{sorted(_MCA_TYPES_WITH_BREAKDOWN)}, got {question_type!r}"
374
+ )
375
+
376
+ n = n_unanswered = n_wrong = n_correct = 0
377
+ swap_distances = []
378
+ for scene_id, (per_question, aggregate) in per_scene_results.items():
379
+ for pq in per_question:
380
+ if pq["question_type"] != question_type:
381
+ continue
382
+ n += 1
383
+ if pq["engine_answer"] is None:
384
+ n_unanswered += 1
385
+ continue
386
+ if str(pq["engine_answer"]) == str(pq["ground_truth"]):
387
+ n_correct += 1
388
+ continue
389
+ n_wrong += 1
390
+ if question_type == "obj_appearance_order":
391
+ engine_seq = _option_sequence(pq["options"], pq["engine_answer"])
392
+ gt_seq = _option_sequence(pq["options"], pq["ground_truth"])
393
+ d = symbolic_run.sym.pairwise_swap_distance(engine_seq, gt_seq)
394
+ if d is not None:
395
+ swap_distances.append(d)
396
+
397
+ mean_swap = (
398
+ round(sum(swap_distances) / len(swap_distances), 3) if swap_distances else None
399
+ )
400
+ return {
401
+ "n": n,
402
+ "n_unanswered": n_unanswered,
403
+ "n_wrong": n_wrong,
404
+ "n_correct": n_correct,
405
+ "mean_swap_distance": mean_swap,
406
+ }
407
+
408
+
409
+ def print_mca_breakdown(per_scene_results):
410
+ """Prints mca_answer_breakdown() for both MCA types, real numbers, terminal-formatted."""
411
+ for question_type in _MCA_TYPES_WITH_BREAKDOWN:
412
+ result = mca_answer_breakdown(per_scene_results, question_type)
413
+ print(f"\n {question_type} ({result['n']} real questions):")
414
+ if result["n"] == 0:
415
+ print(" no real questions of this type found")
416
+ continue
417
+
418
+ def percentage(key):
419
+ return round(100 * result[key] / result["n"], 1) if result["n"] else 0.0
420
+
421
+ print(
422
+ f" unanswered (None): {result['n_unanswered']} ({percentage('n_unanswered')}%)"
423
+ )
424
+ print(f" wrong: {result['n_wrong']} ({percentage('n_wrong')}%)")
425
+ print(
426
+ f" correct: {result['n_correct']} ({percentage('n_correct')}%)"
427
+ )
428
+ if result["mean_swap_distance"] is not None:
429
+ print(
430
+ f" mean pairwise-swap distance among wrong answers: "
431
+ f"{result['mean_swap_distance']} (0=near-miss/one swap off, higher=more scrambled)"
432
+ )
433
+
434
+
435
+ # ==========================================================================================
436
+ # CLI
437
+ # ==========================================================================================
438
+
439
+
440
+ def _run_cli(args, requested_scene_ids):
441
+ """Run one explicit spatial-code selection and write isolated results."""
442
+ symbolic_run.select_spatial_codes(
443
+ args.depth,
444
+ args.input_selection,
445
+ args.tracking,
446
+ args.frames,
447
+ "explicit",
448
+ )
449
+ scene_ids = requested_scene_ids
450
+ all_available = scenes_with_spatial_codes()
451
+ if scene_ids is None:
452
+ if not all_available:
453
+ print(f"no spatial codes found under {symbolic_run.SPATIAL_CODES_DIR}")
454
+ return
455
+ scene_ids = all_available
456
+ print(
457
+ f"found {len(scene_ids)} scene(s) with a spatial code on disk: {scene_ids}"
458
+ )
459
+ else:
460
+ missing = [scene for scene in scene_ids if scene not in all_available]
461
+ if missing:
462
+ sys.exit(
463
+ f"requested scene(s) have no spatial code on disk under "
464
+ f"{symbolic_run.SPATIAL_CODES_DIR}: {missing}"
465
+ )
466
+ print(f"running {len(scene_ids)} requested scene(s): {scene_ids}")
467
+
468
+ per_scene_results, combined = run_all(scene_ids, quiet=args.quiet)
469
+ scenes_with_real_questions = list(per_scene_results)
470
+
471
+ print(f"\n{'=' * 100}")
472
+ print(
473
+ f"COMBINED AGGREGATE across {len(scenes_with_real_questions)} "
474
+ "scene(s) with real "
475
+ f"questions ({len(scene_ids) - len(scenes_with_real_questions)} scene(s) had a "
476
+ f"spatial code but no real test.jsonl questions, skipped)"
477
+ )
478
+ print("=" * 100)
479
+ if not combined:
480
+ print(" no real questions were found across any requested scene")
481
+ return
482
+ for key, value in combined.items():
483
+ print(f" {key}: {value}")
484
+
485
+ error_results = None
486
+ if args.errors:
487
+ print(f"\n{'=' * 100}")
488
+ print("ERROR ANALYSIS -- object_counting / object_size_estimation")
489
+ print("=" * 100)
490
+ print_error_analysis(per_scene_results)
491
+ error_results = {
492
+ question_type: error_analysis(per_scene_results, question_type)
493
+ for question_type in _ANALYZABLE_TYPES
494
+ }
495
+
496
+ print(f"\n{'=' * 100}")
497
+ print(
498
+ "MCA BREAKDOWN -- obj_appearance_order / route_planning / "
499
+ "object_rel_distance / object_rel_direction_*"
500
+ )
501
+ print("=" * 100)
502
+ print_mca_breakdown(per_scene_results)
503
+ error_results["_mca_breakdown"] = {
504
+ question_type: mca_answer_breakdown(per_scene_results, question_type)
505
+ for question_type in _MCA_TYPES_WITH_BREAKDOWN
506
+ }
507
+
508
+ results_dir = symbolic_run.results_dir_for_selection()
509
+ os.makedirs(results_dir, exist_ok=True)
510
+ summary_path = os.path.join(results_dir, "_summary.json")
511
+ summary = {
512
+ "model": symbolic_run.SPATIAL_CODES_MODEL,
513
+ "depth": args.depth,
514
+ "input": args.input_selection,
515
+ "tracking": args.tracking,
516
+ "frames": args.frames,
517
+ "spatial_code_format": "explicit",
518
+ "scenes_run": scenes_with_real_questions,
519
+ "scenes_skipped_no_questions": [
520
+ scene for scene in scene_ids if scene not in per_scene_results
521
+ ],
522
+ "combined_aggregate": combined,
523
+ }
524
+ if error_results is not None:
525
+ summary["error_analysis"] = error_results
526
+ with open(summary_path, "w") as stream:
527
+ json.dump(summary, stream, indent=1)
528
+ print(
529
+ f"\n wrote per-question results to "
530
+ f"{results_dir}/<scene_id>/<question_id>.json "
531
+ f"(+ one _aggregate.json per scene)"
532
+ )
533
+ print(
534
+ f" wrote combined summary to {summary_path}"
535
+ f"{' (including error_analysis)' if error_results is not None else ''}"
536
+ )
537
+
538
+
539
+ def main():
540
+ ap = argparse.ArgumentParser()
541
+ ap.add_argument("--depth", choices=symbolic_run.DEPTH_VARIANTS)
542
+ ap.add_argument(
543
+ "--input",
544
+ choices=symbolic_run.INPUT_SELECTIONS,
545
+ dest="input_selection",
546
+ )
547
+ input_mode = ap.add_mutually_exclusive_group(required=True)
548
+ input_mode.add_argument("--frames", type=int)
549
+ input_mode.add_argument(
550
+ "--video",
551
+ action="store_true",
552
+ help="use spatial codes built from full-video DA3 and SAM3 caches",
553
+ )
554
+ ap.add_argument("--tracking", choices=symbolic_run.TRACKING_MODES)
555
+ ap.add_argument(
556
+ "--scenes",
557
+ default="",
558
+ help="comma-separated scene IDs to restrict to (default: every scene "
559
+ "with a spatial code on disk)",
560
+ )
561
+ ap.add_argument(
562
+ "--quiet",
563
+ action="store_true",
564
+ help="suppress per-scene reports, print only the combined aggregate",
565
+ )
566
+ ap.add_argument(
567
+ "--errors",
568
+ action="store_true",
569
+ help="print real error-magnitude analysis for object_counting and "
570
+ "object_size_estimation (mean/median error, over vs under, worst "
571
+ "offenders) in addition to the combined aggregate",
572
+ )
573
+ a = ap.parse_args()
574
+ if a.depth is None:
575
+ ap.error("--depth is required")
576
+ if a.tracking is None:
577
+ ap.error("--tracking is required")
578
+ if a.video:
579
+ if a.input_selection is not None:
580
+ ap.error("--input cannot be used with --video")
581
+ a.input_selection = symbolic_run.VIDEO_INPUT_SELECTION
582
+ elif a.input_selection is None:
583
+ ap.error("--input is required with --frames")
584
+ if a.frames is not None and a.frames < 1:
585
+ ap.error("--frames must be positive")
586
+ requested_scene_ids = (
587
+ [scene.strip() for scene in a.scenes.split(",") if scene.strip()]
588
+ if a.scenes
589
+ else None
590
+ )
591
+ _run_cli(a, requested_scene_ids)
592
+
593
+
594
+ if __name__ == "__main__":
595
+ main()
symbolic/run.py ADDED
@@ -0,0 +1,643 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Run the symbolic engine against one scene and score its VSI-Bench questions.
2
+
3
+ For running EVERY scene with a spatial code on disk, see symbolic/launch.py -- that's the
4
+ orchestrator (matching encoder/launch.py's single-scene-worker versus
5
+ multi-scene-orchestrator split: this file never loops over more than one scene on its own).
6
+
7
+ Fetches the spatial code from:
8
+ /workspace/data/spatial codes/<MODEL>/<DEPTH>/<TRACKING>/{frames/<INPUT>/<FRAMES>|video}/explicit/<SCENE_ID>.json
9
+ (the model- and format-specific on-disk layout). This file does NOT
10
+ build spatial codes (that's encoder/render.py's job) and does NOT call any model -- it only
11
+ reads an already-built spatial_code.json and answers/scores against it.
12
+
13
+ The file may contain either supported spatial-code shape written by encoder/render.py;
14
+ symbolic/adapters.py converts it to the solver's internal answer-oriented representation.
15
+
16
+ Usage:
17
+ python symbolic/run.py <scene_id>
18
+ Fetches the scene's spatial code, answers every real question for it found in
19
+ test.jsonl, scores via the real official scorer, prints a full breakdown -- including
20
+ a diagnostic trace for every obj_appearance_order question the engine got wrong or
21
+ couldn't answer (see APPEARANCE ORDER DIAGNOSTIC below for why this matters).
22
+
23
+ from symbolic.run import score_scene
24
+ result = score_scene(scene_id)
25
+ Callable directly -- returns (per_question_results, aggregate_score) without printing.
26
+ """
27
+
28
+ from __future__ import annotations
29
+
30
+ import argparse
31
+ import json
32
+ import os
33
+ import re
34
+ import sys
35
+
36
+ _HERE = os.path.dirname(os.path.abspath(__file__))
37
+ if _HERE not in sys.path:
38
+ sys.path.insert(0, _HERE)
39
+ import adapters # noqa: E402
40
+ import solver as sym # noqa: E402
41
+
42
+ _ROOT = os.path.dirname(_HERE)
43
+ _OFFICIAL_EVAL = os.environ.get(
44
+ "SYMBOLIC_OFFICIAL_EVAL",
45
+ "/root/data/thinking-in-space/lmms_eval/tasks/vsibench/utils.py",
46
+ )
47
+ _OFFICIAL_DIR = os.path.dirname(_OFFICIAL_EVAL)
48
+ if _OFFICIAL_DIR not in sys.path:
49
+ sys.path.insert(0, _OFFICIAL_DIR)
50
+ import utils as _official_vsi_eval # noqa: E402
51
+
52
+ sys.modules["vsi_official_eval"] = _official_vsi_eval
53
+
54
+
55
+ def _find_workspace_root(start):
56
+ """Walk upward looking for the model-subfolder parent ``data/spatial codes``.
57
+
58
+ The actual data root (called /workspace inside this project's
59
+ original Linux-container environment, but this walk works under ANY real folder name --
60
+ 'workspace', a OneDrive-synced path, whatever the real machine actually calls it).
61
+
62
+ This is DELIBERATELY separate from _find_project_root() above: that one finds the CODE
63
+ repository root (needs harness/ + symbolic/ as siblings); this one finds the DATA root
64
+ (needs data/spatial codes/segvggt as a descendant). On a real deployment they're often the same
65
+ directory (this file's own parent, e.g. your real C:\\...\\workspace), but they don't have
66
+ to be -- someone could keep code and data in genuinely separate trees, so this walk
67
+ doesn't assume the code repo root IS the workspace root, it looks for the real,
68
+ independent evidence (an actual data/spatial codes/segvggt folder) instead.
69
+
70
+ Returns None (never raises) if no such folder is found within a few levels up -- callers
71
+ fall back to the hardcoded /workspace/... default in that case, so a machine that
72
+ genuinely does have /workspace (the original Linux-container case) is unaffected."""
73
+ d = os.path.abspath(start)
74
+ for _ in range(6):
75
+ candidate = os.path.join(d, "data", "spatial codes")
76
+ if os.path.isdir(candidate):
77
+ return d
78
+ parent = os.path.dirname(d)
79
+ if parent == d:
80
+ break
81
+ d = parent
82
+ return None
83
+
84
+
85
+ _AUTO_WORKSPACE = _find_workspace_root(_HERE)
86
+
87
+
88
+ def _default_spatial_codes_root():
89
+ workspace = os.environ.get("VSI_WORKSPACE_ROOT", "/workspace")
90
+ return os.environ.get("VSI_CODES", os.path.join(workspace, "data", "spatial codes"))
91
+
92
+
93
+ def _default_test_jsonl():
94
+ data_root = os.environ.get("VSI_DATA_ROOT", "/root/data")
95
+ vsi_root = os.environ.get("VSI_ROOT", os.path.join(data_root, "VSI-Bench"))
96
+ return os.path.join(vsi_root, "test.jsonl")
97
+
98
+
99
+ def _default_results_dir():
100
+ return "/root/results/symbolic"
101
+
102
+
103
+ # ==========================================================================================
104
+ # FETCH -- where a scene's spatial code lives on disk, and how to load+render it.
105
+ #
106
+ # Auto-detected from a real 'data/spatial codes/segvggt' folder found by walking upward from this
107
+ # file (see _find_workspace_root() above) -- works out of the box on any machine/OS, no setup
108
+ # needed, as long as the real folder structure matches (data/spatial codes/segvggt/, data/VSI-Bench/
109
+ # or data/vsi benchmark/). Override via environment variables if your layout genuinely
110
+ # differs (PowerShell example):
111
+ # $env:SYMBOLIC_SPATIAL_CODES_DIR = "D:\some\other\place\spatial codes\segvggt"
112
+ # $env:SYMBOLIC_TEST_JSONL = "D:\some\other\place\test.jsonl"
113
+ # $env:SYMBOLIC_RESULTS_DIR = "D:\some\other\place\results"
114
+ # ==========================================================================================
115
+
116
+ DEPTH_VARIANTS = ("relative", "metric")
117
+ INPUT_SELECTIONS = ("uniform", "selective")
118
+ VIDEO_INPUT_SELECTION = "video"
119
+ TRACKING_MODES = ("tracking", "no tracking")
120
+ SPATIAL_CODE_FORMATS = adapters.SPATIAL_CODE_FORMATS
121
+ SPATIAL_CODES_ROOT = os.environ.get(
122
+ "SYMBOLIC_SPATIAL_CODES_ROOT", _default_spatial_codes_root()
123
+ )
124
+ SPATIAL_CODES_DIR_OVERRIDE = os.environ.get("SYMBOLIC_SPATIAL_CODES_DIR")
125
+ SPATIAL_CODES_MODEL = "sam3+depth-anything-3"
126
+ SPATIAL_CODES_DEPTH = os.environ.get("SYMBOLIC_DEPTH", "relative")
127
+ SPATIAL_CODES_INPUT = os.environ.get("SYMBOLIC_INPUT", "uniform")
128
+ SPATIAL_CODES_TRACKING = os.environ.get("SYMBOLIC_TRACKING", "tracking")
129
+ SPATIAL_CODES_FRAMES = int(os.environ.get("SYMBOLIC_FRAMES", "32"))
130
+ SPATIAL_CODES_FORMAT = os.environ.get("SYMBOLIC_FORMAT", "explicit")
131
+
132
+
133
+ def _validate_selection(depth, input_selection, tracking, frame_count):
134
+ """Validate the dimensions shared by spatial-code and result paths."""
135
+ if depth not in DEPTH_VARIANTS:
136
+ raise ValueError(f"unknown depth variant {depth!r}; expected {DEPTH_VARIANTS}")
137
+ selections = INPUT_SELECTIONS + (VIDEO_INPUT_SELECTION,)
138
+ if input_selection not in selections:
139
+ raise ValueError(
140
+ f"unknown input selection {input_selection!r}; expected {selections}"
141
+ )
142
+ if tracking not in TRACKING_MODES:
143
+ raise ValueError(
144
+ f"unknown tracking mode {tracking!r}; expected {TRACKING_MODES}"
145
+ )
146
+ if input_selection != VIDEO_INPUT_SELECTION and (
147
+ frame_count is None or frame_count < 1
148
+ ):
149
+ raise ValueError("frame count must be positive")
150
+
151
+
152
+ def _selection_subdirectory(depth, input_selection, tracking, frame_count):
153
+ """Return tracking/{frames/<selection>/<count>|video} for perceived codes."""
154
+ _validate_selection(depth, input_selection, tracking, frame_count)
155
+ if input_selection == VIDEO_INPUT_SELECTION:
156
+ return os.path.join(tracking, "video")
157
+ return os.path.join(tracking, "frames", input_selection, str(frame_count))
158
+
159
+
160
+ def select_spatial_codes(
161
+ depth, input_selection, tracking, frame_count=32, spatial_code_format="explicit"
162
+ ):
163
+ """Select one specific spatial-code input and update symbolic reads."""
164
+ global SPATIAL_CODES_DEPTH, SPATIAL_CODES_INPUT
165
+ global SPATIAL_CODES_TRACKING, SPATIAL_CODES_FRAMES, SPATIAL_CODES_FORMAT
166
+ global SPATIAL_CODES_DIR, SPATIAL_CODES_GROUND_TRUTH
167
+ SPATIAL_CODES_DEPTH = depth
168
+ SPATIAL_CODES_INPUT = input_selection
169
+ if spatial_code_format not in SPATIAL_CODE_FORMATS:
170
+ raise ValueError(
171
+ f"unknown spatial-code format {spatial_code_format!r}; "
172
+ f"expected {SPATIAL_CODE_FORMATS}"
173
+ )
174
+ SPATIAL_CODES_TRACKING = tracking
175
+ SPATIAL_CODES_FRAMES = frame_count
176
+ SPATIAL_CODES_FORMAT = spatial_code_format
177
+ SPATIAL_CODES_GROUND_TRUTH = False
178
+ directory = SPATIAL_CODES_DIR_OVERRIDE or os.path.join(
179
+ SPATIAL_CODES_ROOT, SPATIAL_CODES_MODEL
180
+ )
181
+ directory = os.path.join(
182
+ directory,
183
+ _selection_subdirectory(depth, input_selection, tracking, frame_count),
184
+ spatial_code_format,
185
+ )
186
+ SPATIAL_CODES_DIR = directory
187
+ return SPATIAL_CODES_DIR
188
+
189
+
190
+ def select_ground_truth_spatial_codes(spatial_code_format="explicit"):
191
+ """Select the GROUND-TRUTH spatial codes (prebuilt on-disk output,
192
+ "data/spatial codes/ground truth/<format>/<scene>.json") instead of a perception-
193
+ pipeline selection -- no depth/tracking/input/frame-count axis, since ground truth
194
+ is built once per scene straight from dataset annotations. Results written while
195
+ this selection is active land under "results/symbolic/ground truth/<format>/" (see
196
+ results_dir_for_selection) instead of the usual depth/tracking/input/frames chain.
197
+ """
198
+ global SPATIAL_CODES_FORMAT, SPATIAL_CODES_DIR, SPATIAL_CODES_GROUND_TRUTH
199
+ if spatial_code_format not in SPATIAL_CODE_FORMATS:
200
+ raise ValueError(
201
+ f"unknown spatial-code format {spatial_code_format!r}; "
202
+ f"expected {SPATIAL_CODE_FORMATS}"
203
+ )
204
+ SPATIAL_CODES_FORMAT = spatial_code_format
205
+ SPATIAL_CODES_GROUND_TRUTH = True
206
+ directory = SPATIAL_CODES_DIR_OVERRIDE or os.path.join(
207
+ SPATIAL_CODES_ROOT, "ground truth", spatial_code_format
208
+ )
209
+ SPATIAL_CODES_DIR = directory
210
+ return SPATIAL_CODES_DIR
211
+
212
+
213
+ SPATIAL_CODES_DIR = ""
214
+ SPATIAL_CODES_GROUND_TRUTH = False
215
+ select_spatial_codes(
216
+ SPATIAL_CODES_DEPTH,
217
+ SPATIAL_CODES_INPUT,
218
+ SPATIAL_CODES_TRACKING,
219
+ SPATIAL_CODES_FRAMES,
220
+ SPATIAL_CODES_FORMAT,
221
+ )
222
+ DEFAULT_TEST_JSONL = os.environ.get("SYMBOLIC_TEST_JSONL", _default_test_jsonl())
223
+
224
+
225
+ def spatial_code_path(scene_id):
226
+ """Return one selected model/dimension/format path for a scene's spatial code."""
227
+ return os.path.join(SPATIAL_CODES_DIR, f"{scene_id}.json")
228
+
229
+
230
+ def fetch_spatial_code(scene_id):
231
+ """Load and adapt one selected spatial code from SPATIAL_CODES_DIR.
232
+
233
+ Raise FileNotFoundError with a clear message when the scene has no spatial code.
234
+ """
235
+ path = spatial_code_path(scene_id)
236
+ if not os.path.exists(path):
237
+ raise FileNotFoundError(
238
+ f"no spatial code found for scene {scene_id!r} at {path} -- expected layout: "
239
+ f"{SPATIAL_CODES_DIR}/<SCENE_ID>.json"
240
+ )
241
+ with open(path) as f:
242
+ code = json.load(f)
243
+ return adapters.adapt_spatial_code(code, SPATIAL_CODES_FORMAT)
244
+
245
+
246
+ def fetch_spatial_code_for(
247
+ scene_id,
248
+ depth,
249
+ input_selection,
250
+ tracking,
251
+ frame_count,
252
+ spatial_code_format="explicit",
253
+ ):
254
+ """Load and adapt one EXPLICIT scene/dimension spatial code, independent of the current
255
+ global SPATIAL_CODES_DIR selection -- unlike fetch_spatial_code(), this never mutates
256
+ module state, so a caller can load two different frame counts for the SAME scene side by
257
+ side (see answer_combined() in solver.py / score_scene_combined() below) without one
258
+ selection clobbering the other."""
259
+ directory = SPATIAL_CODES_DIR_OVERRIDE or os.path.join(
260
+ SPATIAL_CODES_ROOT, SPATIAL_CODES_MODEL
261
+ )
262
+ directory = os.path.join(
263
+ directory,
264
+ _selection_subdirectory(depth, input_selection, tracking, frame_count),
265
+ spatial_code_format,
266
+ )
267
+ path = os.path.join(directory, f"{scene_id}.json")
268
+ if not os.path.exists(path):
269
+ raise FileNotFoundError(
270
+ f"no spatial code found for scene {scene_id!r} at {path} -- expected layout: "
271
+ f"{directory}/<SCENE_ID>.json"
272
+ )
273
+ with open(path) as f:
274
+ code = json.load(f)
275
+ return adapters.adapt_spatial_code(code, spatial_code_format)
276
+
277
+
278
+ def real_questions_for_scene(scene_id, jsonl_path=None):
279
+ """Every real question for `scene_id` found in test.jsonl."""
280
+ jsonl_path = jsonl_path or DEFAULT_TEST_JSONL
281
+ if not os.path.exists(jsonl_path):
282
+ raise FileNotFoundError(f"test.jsonl not found at {jsonl_path}")
283
+ rows = []
284
+ with open(jsonl_path) as f:
285
+ for line in f:
286
+ row = json.loads(line)
287
+ if row["scene_name"] == scene_id:
288
+ rows.append(row)
289
+ return rows
290
+
291
+
292
+ # ==========================================================================================
293
+ # SCORE -- run the engine against every real question for a scene, score via the REAL,
294
+ # unmodified vsi_official_eval.py. The known vsibench_aggregate_results() limitation (requires
295
+ # all 3 object_rel_direction_* subtypes present together once any is) is worked around here
296
+ # the same way tests/test_symbolic/test_symbolic.py does: pad a zero-scoring placeholder,
297
+ # never patch the
298
+ # official file.
299
+ # ==========================================================================================
300
+
301
+ _DIRECTION_SUBTYPES = {
302
+ "object_rel_direction_easy",
303
+ "object_rel_direction_medium",
304
+ "object_rel_direction_hard",
305
+ }
306
+
307
+
308
+ def score_scene(scene_id, jsonl_path=None):
309
+ """Fetches scene_id's spatial code, answers every real question for it, scores via the
310
+ real official scorer. Returns (per_question_results, aggregate) where per_question_results
311
+ is a list of dicts (question, engine answer, ground truth, per-question score) and
312
+ aggregate is vsi_official_eval.py's own real aggregate dict."""
313
+ import vsi_official_eval as vse
314
+
315
+ code = fetch_spatial_code(scene_id)
316
+ rows = real_questions_for_scene(scene_id, jsonl_path)
317
+
318
+ per_question, scored = [], []
319
+ for r in rows:
320
+ result = sym.answer(r["question_type"], r["question"], r["options"], code)
321
+ pred_str = "" if result is None else str(result)
322
+ doc = {"question_type": r["question_type"], "ground_truth": r["ground_truth"]}
323
+ out = vse.vsibench_process_results(doc, [pred_str])["vsibench_score"]
324
+ scored.append(out)
325
+ score_key = (
326
+ "accuracy"
327
+ if r["question_type"] in vse.MCA_QUESTION_TYPES
328
+ else "MRA:.5:.95:.05"
329
+ )
330
+ per_question.append(
331
+ {
332
+ "question_id": r["id"],
333
+ "dataset": r.get("dataset"),
334
+ "question_type": r["question_type"],
335
+ "question": r["question"],
336
+ "options": r["options"],
337
+ "engine_answer": result,
338
+ "ground_truth": r["ground_truth"],
339
+ "score": out.get(score_key),
340
+ }
341
+ )
342
+
343
+ # pad missing direction subtypes so the REAL, UNMODIFIED aggregator can run -- see
344
+ # tests/test_symbolic/test_symbolic.py documents why this
345
+ # real limitation exists in vsi_official_eval.py itself.
346
+ types_present = {r["question_type"] for r in rows}
347
+ for missing in _DIRECTION_SUBTYPES - types_present:
348
+ if any(t in types_present for t in _DIRECTION_SUBTYPES):
349
+ doc = {"question_type": missing, "ground_truth": "A"}
350
+ out = vse.vsibench_process_results(doc, ["Z"])["vsibench_score"]
351
+ scored.append(out)
352
+
353
+ aggregate = vse.vsibench_aggregate_results(scored) if scored else {}
354
+ return per_question, aggregate
355
+
356
+
357
+ # ==========================================================================================
358
+ # APPEARANCE ORDER DIAGNOSTIC -- obj_appearance_order questions are the one type where a wrong
359
+ # or None answer is USUALLY not an engine bug: it means the spatial code's real "appearance
360
+ # order" list genuinely disagrees with the official ground truth about when some class first
361
+ # appeared (confirmed by hand-tracing every real disagreement for scene 09c1414f1b this
362
+ # session -- all 20 wrong/None answers traced back to the SAME root cause: a small cluster of
363
+ # classes the spatial code detected later than the official annotation says). This function
364
+ # makes that diagnosis automatic instead of requiring a manual trace every time.
365
+ # ==========================================================================================
366
+
367
+
368
+ def diagnose_appearance_order_question(pq, code):
369
+ """For one obj_appearance_order per-question result (from score_scene()'s per_question
370
+ list) that scored less than 1.0, returns a dict explaining WHY: the classes named in the
371
+ question, their real position in the spatial code's appearance order, what the TRUE
372
+ sorted sequence is according to that real order, and whether that true sequence matches
373
+ the GROUND TRUTH's specific option (not just any option -- an earlier version of this
374
+ check only asked "does the true order match SOME option", which wrongly flagged two real
375
+ cases as engine bugs: the engine correctly picked the one option matching the spatial
376
+ code's true order, but ground truth pointed to a DIFFERENT option -- a real
377
+ spatial-code-vs-ground-truth disagreement, not an engine bug, caught by re-tracing both
378
+ flagged cases by hand before shipping this diagnostic)."""
379
+ order = code.get("appearance order", [])
380
+ order_index = {c: i for i, c in enumerate(order)}
381
+ m = re.search(r"categories in the video: (.+?)\?", pq["question"])
382
+ if not m:
383
+ return {
384
+ "diagnosable": False,
385
+ "reason": "could not parse class names from the question",
386
+ }
387
+ names = [n.strip() for n in m.group(1).split(",")]
388
+ classes = [sym._find_class(n, code) for n in names]
389
+ if any(c is None for c in classes):
390
+ unresolved = [n for n, c in zip(names, classes) if c is None]
391
+ return {
392
+ "diagnosable": False,
393
+ "reason": f"class(es) not found in this scene's spatial code at all: {unresolved}",
394
+ }
395
+ positions = {n: order_index.get(c) for n, c in zip(names, classes)}
396
+ true_order = sorted(
397
+ names, key=lambda n: positions[n] if positions[n] is not None else 9999
398
+ )
399
+ true_order_text = ", ".join(true_order)
400
+ gt_letter = pq["ground_truth"]
401
+ gt_option = next((o for o in pq["options"] if o.startswith(gt_letter + ".")), None)
402
+ gt_option_text = gt_option.split(".", 1)[1].strip() if gt_option else None
403
+ matches_ground_truth = true_order_text == gt_option_text
404
+ return {
405
+ "diagnosable": True,
406
+ "class_positions_in_real_order": positions,
407
+ "true_order_per_spatial_code": true_order_text,
408
+ "ground_truth_option_text": gt_option_text,
409
+ "matches_ground_truth": matches_ground_truth,
410
+ "verdict": (
411
+ "the spatial code's real detected order genuinely disagrees with the official "
412
+ "ground truth's ordering -- not an engine bug, the engine correctly read the real "
413
+ "data it had"
414
+ if not matches_ground_truth
415
+ else "the spatial code's true order DOES match ground truth, but the engine still "
416
+ "didn't return the correct letter -- this IS a real engine bug worth investigating"
417
+ ),
418
+ }
419
+
420
+
421
+ # ==========================================================================================
422
+ # CLI
423
+ # ==========================================================================================
424
+
425
+
426
+ def _print_scene_report(scene_id, per_question, aggregate, code):
427
+ print(f"\n{'=' * 100}")
428
+ print(f"SCENE {scene_id}")
429
+ print("=" * 100)
430
+ if not per_question:
431
+ print(" no real questions found for this scene in test.jsonl")
432
+ return
433
+ appearance_order_issues = []
434
+ for pq in per_question:
435
+ flag = "" if pq["engine_answer"] is not None else " <- engine returned None"
436
+ print(
437
+ f" {pq['question_type']:28s} engine={str(pq['engine_answer'])!r:10s} "
438
+ f"gt={pq['ground_truth']!r:8s} score={pq['score']}{flag}"
439
+ )
440
+ if pq["question_type"] == "obj_appearance_order" and (pq["score"] or 0) < 1.0:
441
+ appearance_order_issues.append(pq)
442
+
443
+ print(f"\n aggregate for {scene_id}:")
444
+ for k, v in aggregate.items():
445
+ print(f" {k}: {v}")
446
+
447
+ if appearance_order_issues:
448
+ print(f"\n {'-' * 96}")
449
+ print(
450
+ f" APPEARANCE ORDER DIAGNOSTIC -- {len(appearance_order_issues)} question(s) "
451
+ f"scored < 1.0, tracing each one:"
452
+ )
453
+ print(f" {'-' * 96}")
454
+ engine_bugs = 0
455
+ for pq in appearance_order_issues:
456
+ diag = diagnose_appearance_order_question(pq, code)
457
+ if not diag["diagnosable"]:
458
+ print(f" [undiagnosable] {diag['reason']}")
459
+ continue
460
+ print(
461
+ f" true order per spatial code: {diag['true_order_per_spatial_code']}"
462
+ )
463
+ print(
464
+ f" true order matches ground truth's option: "
465
+ f"{diag['matches_ground_truth']} -> {diag['verdict']}"
466
+ )
467
+ if diag["matches_ground_truth"]:
468
+ engine_bugs += 1
469
+ print(
470
+ f"\n SUMMARY: {engine_bugs} of {len(appearance_order_issues)} low-scoring "
471
+ f"appearance-order questions are genuine engine bugs; "
472
+ f"{len(appearance_order_issues) - engine_bugs} are the spatial code's real "
473
+ f"detection order disagreeing with official ground truth (not an engine issue)."
474
+ )
475
+
476
+
477
+ # ==========================================================================================
478
+ # RESULTS OUTPUT -- one file per question using the evaluation result schema.
479
+ # Frame-mode runs record their selected mode as the condition and remain isolated on disk.
480
+ #
481
+ # Layout without a frame mode: results/symbolic/<scene>/<question_id>.json.
482
+ # Frame-mode results mirror the cache hierarchy under results/symbolic/frames/.
483
+ # ==========================================================================================
484
+
485
+ RESULTS_DIR = os.environ.get("SYMBOLIC_RESULTS_DIR", _default_results_dir())
486
+
487
+
488
+ def results_dir_for_selection(results_dir=None):
489
+ """Return the result root isolated by every specific input dimension.
490
+
491
+ Under a ground-truth selection (select_ground_truth_spatial_codes), there is no
492
+ depth/tracking/input/frame-count axis to isolate by, so results land under
493
+ "results/symbolic/ground truth/<format>/" instead.
494
+ """
495
+ if results_dir is not None:
496
+ return os.fspath(results_dir)
497
+ if SPATIAL_CODES_GROUND_TRUTH:
498
+ return os.path.join(RESULTS_DIR, "ground truth", SPATIAL_CODES_FORMAT)
499
+ return os.path.join(
500
+ RESULTS_DIR,
501
+ _selection_subdirectory(
502
+ SPATIAL_CODES_DEPTH,
503
+ SPATIAL_CODES_INPUT,
504
+ SPATIAL_CODES_TRACKING,
505
+ SPATIAL_CODES_FRAMES,
506
+ ),
507
+ SPATIAL_CODES_FORMAT,
508
+ )
509
+
510
+
511
+ def _appearance_order_diagnosis_for(pq, code):
512
+ """Runs diagnose_appearance_order_question() for one obj_appearance_order question if it
513
+ scored < 1.0 -- returns None for every other question (nothing to diagnose) or a perfect
514
+ score (nothing wrong to explain). Used only by write_question_result() below, to decide
515
+ whether a written file needs the extra appearance_order_diagnosis field."""
516
+ if pq["question_type"] != "obj_appearance_order" or (pq["score"] or 0) >= 1.0:
517
+ return None
518
+ return diagnose_appearance_order_question(pq, code)
519
+
520
+
521
+ def write_question_result(scene_id, pq, code, results_dir=None):
522
+ """Write one question result using the evaluation schema plus one extra field
523
+ (appearance_order_diagnosis, only present/non-null for a wrong/None obj_appearance_order
524
+ answer). Return the path written."""
525
+ answer = "" if pq["engine_answer"] is None else str(pq["engine_answer"])
526
+ results_dir = results_dir_for_selection(results_dir)
527
+ scene_dir = os.path.join(results_dir, scene_id)
528
+ os.makedirs(scene_dir, exist_ok=True)
529
+ ground_truth = SPATIAL_CODES_GROUND_TRUTH
530
+ rec = {
531
+ "model": "symbolic",
532
+ "condition": (
533
+ f"ground truth:{SPATIAL_CODES_FORMAT}"
534
+ if ground_truth
535
+ else (
536
+ f"{SPATIAL_CODES_DEPTH}:{SPATIAL_CODES_TRACKING}:"
537
+ + (
538
+ "video"
539
+ if SPATIAL_CODES_INPUT == VIDEO_INPUT_SELECTION
540
+ else f"{SPATIAL_CODES_INPUT}:{SPATIAL_CODES_FRAMES}"
541
+ )
542
+ + f":{SPATIAL_CODES_FORMAT}"
543
+ )
544
+ ),
545
+ "spatial_code_model": None if ground_truth else SPATIAL_CODES_MODEL,
546
+ "depth": None if ground_truth else SPATIAL_CODES_DEPTH,
547
+ "input": None if ground_truth else SPATIAL_CODES_INPUT,
548
+ "tracking": None if ground_truth else SPATIAL_CODES_TRACKING,
549
+ "number_of_frames": None if ground_truth else SPATIAL_CODES_FRAMES,
550
+ "spatial_code_format": SPATIAL_CODES_FORMAT,
551
+ "scene": scene_id,
552
+ "dataset": pq.get("dataset"),
553
+ "question_id": pq["question_id"],
554
+ "question_type": pq["question_type"],
555
+ "question": pq["question"],
556
+ "options": pq["options"],
557
+ "full_prompt": None,
558
+ "answer_expected": pq["ground_truth"],
559
+ "answer_given": answer,
560
+ "answer_raw": answer,
561
+ "score": pq["score"],
562
+ }
563
+
564
+ diagnosis = _appearance_order_diagnosis_for(pq, code)
565
+ if diagnosis is not None:
566
+ rec["appearance_order_diagnosis"] = diagnosis
567
+
568
+ path = os.path.join(scene_dir, f"{pq['question_id']}.json")
569
+ with open(path, "w") as f:
570
+ json.dump(rec, f, indent=1)
571
+ return path
572
+
573
+
574
+ def write_scene_results(scene_id, per_question, aggregate, code, results_dir=None):
575
+ """Writes every question in per_question to its own file (write_question_result(), one
576
+ call per question -- matching the real harness's one-file-per-question layout), PLUS one
577
+ small results/symbolic/<scene_id>/_aggregate.json carrying the real official aggregate
578
+ score for the scene (Qwen's own pipeline keeps its equivalent rollup in a separate
579
+ analysis/export.py step over the per-question files rather than a file living alongside
580
+ them -- this one small extra file is the one deliberate convenience difference, since the
581
+ symbolic engine has no separate analysis pass of its own). Returns the list of paths written.
582
+ """
583
+ paths = [
584
+ write_question_result(scene_id, pq, code, results_dir) for pq in per_question
585
+ ]
586
+ results_dir = results_dir_for_selection(results_dir)
587
+ scene_dir = os.path.join(results_dir, scene_id)
588
+ agg_path = os.path.join(scene_dir, "_aggregate.json")
589
+ with open(agg_path, "w") as f:
590
+ json.dump({"scene_id": scene_id, "aggregate": aggregate}, f, indent=1)
591
+ paths.append(agg_path)
592
+ return paths
593
+
594
+
595
+ # ==========================================================================================
596
+ # CLI
597
+ # ==========================================================================================
598
+
599
+
600
+ def main():
601
+ parser = argparse.ArgumentParser()
602
+ parser.add_argument("scene_id")
603
+ parser.add_argument("--depth", choices=DEPTH_VARIANTS)
604
+ parser.add_argument("--input", choices=INPUT_SELECTIONS, dest="input_selection")
605
+ input_mode = parser.add_mutually_exclusive_group(required=True)
606
+ input_mode.add_argument("--frames", type=int)
607
+ input_mode.add_argument(
608
+ "--video",
609
+ action="store_true",
610
+ help="use a spatial code built from full-video DA3 and SAM3 caches",
611
+ )
612
+ parser.add_argument("--tracking", choices=TRACKING_MODES)
613
+ args = parser.parse_args()
614
+ if args.depth is None:
615
+ parser.error("--depth is required")
616
+ if args.tracking is None:
617
+ parser.error("--tracking is required")
618
+ if args.video:
619
+ if args.input_selection is not None:
620
+ parser.error("--input cannot be used with --video")
621
+ args.input_selection = VIDEO_INPUT_SELECTION
622
+ elif args.input_selection is None:
623
+ parser.error("--input is required with --frames")
624
+ if args.frames is not None and args.frames < 1:
625
+ parser.error("--frames must be positive")
626
+ select_spatial_codes(
627
+ args.depth,
628
+ args.input_selection,
629
+ args.tracking,
630
+ args.frames,
631
+ "explicit",
632
+ )
633
+ per_question, aggregate = score_scene(args.scene_id)
634
+ code = fetch_spatial_code(args.scene_id)
635
+ _print_scene_report(args.scene_id, per_question, aggregate, code)
636
+ paths = write_scene_results(args.scene_id, per_question, aggregate, code)
637
+ print(
638
+ f"\n wrote {len(paths)} file(s) to {results_dir_for_selection()}/{args.scene_id}/"
639
+ )
640
+
641
+
642
+ if __name__ == "__main__":
643
+ main()
symbolic/solver.py ADDED
@@ -0,0 +1,902 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Answer VSI-Bench questions deterministically from the final spatial-code shape.
2
+
3
+ The engine uses no LLM, generation, or sampling. Each question-type function performs pure
4
+ computation over the JSON emitted by the encoder pipeline.
5
+
6
+ Covers all 10 real VSI-Bench question types (counts from the actual uploaded test.jsonl,
7
+ 5130 questions total):
8
+ object_size_estimation 953 -- direct: instances[i]["longest dimension"]
9
+ object_abs_distance 834 -- direct: "closest classes distance meters from"
10
+ object_rel_distance 710 -- direct: same table, argmin among the options
11
+ obj_appearance_order 618 -- direct: "appearance order" list
12
+ object_counting 565 -- direct: objects.<class>.count
13
+ object_rel_direction_medium 378 -- geometry: parsed x/y coordinates
14
+ object_rel_direction_hard 373 -- geometry: parsed x/y coordinates
15
+ room_size_estimation 288 -- direct: room["floor area"]
16
+ object_rel_direction_easy 217 -- geometry: parsed x/y coordinates
17
+ route_planning 194 -- geometry: parsed x/y coordinates, chained turns
18
+
19
+ WHY THIS WORKS FROM THE FINAL SHAPE (not raw geometry): the emitted "x coordinate"/
20
+ "y coordinate"/"height above floor" fields are already expressed in the gravity-aligned floor
21
+ basis geometric.py's _object_records() builds them in (u, v horizontal; g vertical) -- so in
22
+ THIS coordinate system, up is always exactly (0, 0, 1). No gravity-vector recovery is needed
23
+ here, unlike the raw-geometry functions in encoder/geometric.py (answer_rel_direction,
24
+ _classify_turn, answer_route) that this file's direction/route logic is deliberately modeled
25
+ after -- same math, re-derived here to operate on parsed unit-strings instead of numpy point
26
+ clouds, since this file has no encoder/ dependency (see module layout note below).
27
+
28
+ MULTI-INSTANCE DISAMBIGUATION: when a question names a class with multiple instances and gives
29
+ no way to tell them apart (e.g. "the chair" when there are 8), this engine uses instances[0] --
30
+ the spatial code's own strongest-evidence-first ranking (most observed points/frames -- see
31
+ geometric.py's _object_records docstring), which is both the most reliable geometric estimate
32
+ of "the real object" and the one a reader/model with no other signal would most likely default
33
+ to as well.
34
+
35
+ FILE LAYOUT: UNIT PARSING -> GEOMETRY PRIMITIVES -> per-question-type
36
+ ANSWER FUNCTIONS (ordered to match the real-count table above, most-common first) -> the single
37
+ public answer(question_type, question, options, code) dispatcher -> DISPLAY.
38
+
39
+ This is a single, self-contained file by design -- no import of encoder/, so it
40
+ can be dropped anywhere and run against any spatial_code.json (rendered through
41
+ render_spatial_code()) with only the Python standard library.
42
+ """
43
+
44
+ from __future__ import annotations
45
+
46
+ import json
47
+ import math
48
+ import re
49
+
50
+ # ==========================================================================================
51
+ # UNIT PARSING -- every unit-string field in the final spatial code shape ("3.59 meters",
52
+ # "48.4 square meters") back to a plain float.
53
+ # ==========================================================================================
54
+
55
+ _NUMBER_RE = re.compile(r"[-+]?\d*\.?\d+")
56
+
57
+
58
+ # ==========================================================================================
59
+ # OPERATION COUNTING (H25) -- an executable per-question difficulty metric. Every core
60
+ # primitive increments a counter; answer() snapshots the counts for the question it just
61
+ # answered into LAST_ANSWER_OPS. Zero effect on any answer -- counting only.
62
+ # ==========================================================================================
63
+
64
+ _OP_KEYS = (
65
+ "numeric reads",
66
+ "class lookups",
67
+ "table lookups",
68
+ "geometric computations",
69
+ "direction classifications",
70
+ )
71
+ OP_COUNTS = {key: 0 for key in _OP_KEYS}
72
+ LAST_ANSWER_OPS = {}
73
+
74
+
75
+ def _count(op):
76
+ OP_COUNTS[op] += 1
77
+
78
+
79
+ def _parse_meters(s):
80
+ _count("numeric reads")
81
+ """'3.59 meters' -> 3.59. Also accepts a bare number/int/float, so callers never need to
82
+ special-case whether a value has already been parsed."""
83
+ if isinstance(s, (int, float)):
84
+ return float(s)
85
+ m = _NUMBER_RE.search(s)
86
+ if m is None:
87
+ raise ValueError(f"could not parse a number out of {s!r}")
88
+ return float(m.group())
89
+
90
+
91
+ def _parse_square_meters(s):
92
+ _count("numeric reads")
93
+ """'48.4 square meters' -> 48.4. Same numeric parse as _parse_meters -- 'square' doesn't
94
+ change the regex match, kept as a separate function name for readability at call sites."""
95
+ return _parse_meters(s)
96
+
97
+
98
+ # ==========================================================================================
99
+ # GEOMETRY PRIMITIVES -- direction/turn classification, re-derived from encoder/geometric.py's
100
+ # answer_rel_direction()/_classify_turn() (same formulas) but operating on plain (x, y) tuples
101
+ # already extracted from the spatial code, with up FIXED at (0, 0, 1) -- see this file's
102
+ # module docstring for why that's always correct here, never approximated.
103
+ # ==========================================================================================
104
+
105
+
106
+ def _instance_xy(code, cls_name, index=0):
107
+ _count("geometric computations")
108
+ """The (x, y) floor-plane position of one instance of `cls_name` -- index 0 (strongest
109
+ evidence) unless a specific instance is requested. Returns None if the class isn't in the
110
+ spatial code at all (SAM3 never detected it in this scene)."""
111
+ obj = code.get("objects", {}).get(cls_name)
112
+ if obj is None or not obj.get("instances"):
113
+ return None
114
+ inst = obj["instances"][min(index, len(obj["instances"]) - 1)]
115
+ pos = inst["position"]
116
+ return (_parse_meters(pos["x coordinate"]), _parse_meters(pos["y coordinate"]))
117
+
118
+
119
+ def _rel_direction(point_a, point_b, point_c, mode="hard"):
120
+ _count("direction classifications")
121
+ """Standing at A facing B, where is C? Same formula as
122
+ encoder/geometric.py's answer_rel_direction(), specialized to the 2D floor plane (the
123
+ spatial code's frame has no raw height needed for this -- direction is a floor-plane
124
+ question in every real VSI-Bench phrasing). front/back = dot(C-A, fwd);
125
+ left/right = dot(C-A, left), where left = fwd rotated +90 degrees (matches the
126
+ right-handed convention answer_rel_direction() documents)."""
127
+ ax, ay = point_a
128
+ bx, by = point_b
129
+ cx, cy = point_c
130
+ fwd = (bx - ax, by - ay)
131
+ n = (fwd[0] ** 2 + fwd[1] ** 2) ** 0.5
132
+ if n < 1e-9:
133
+ return None
134
+ fwd = (fwd[0] / n, fwd[1] / n)
135
+ left = (-fwd[1], fwd[0]) # +90 degree rotation of fwd
136
+ d = (cx - ax, cy - ay)
137
+ f = d[0] * fwd[0] + d[1] * fwd[1]
138
+ lateral = d[0] * left[0] + d[1] * left[1]
139
+ if mode == "medium":
140
+ import math
141
+
142
+ if abs(math.degrees(math.atan2(lateral, f))) >= 135:
143
+ return "back"
144
+ return "left" if lateral > 0 else "right"
145
+ if mode == "easy":
146
+ return "left" if lateral > 0 else "right"
147
+ return f"{'front' if f > 0 else 'back'}-{'left' if lateral > 0 else 'right'}"
148
+
149
+
150
+ def _classify_turn(h_in, h_out):
151
+ _count("direction classifications")
152
+ """Rotation h_in -> h_out in the floor plane -> 'turn left'/'turn right'/'turn back'
153
+ (135 degree cutoff, matching VSI's own 'back' threshold and
154
+ encoder/geometric.py's _classify_turn())."""
155
+ import math
156
+
157
+ nin = (h_in[0] ** 2 + h_in[1] ** 2) ** 0.5
158
+ nout = (h_out[0] ** 2 + h_out[1] ** 2) ** 0.5
159
+ if nin < 1e-9 or nout < 1e-9:
160
+ return None
161
+ a = (h_in[0] / nin, h_in[1] / nin)
162
+ b = (h_out[0] / nout, h_out[1] / nout)
163
+ cross = a[0] * b[1] - a[1] * b[0] # z-component of a x b (2D cross product)
164
+ dot = a[0] * b[0] + a[1] * b[1]
165
+ ang = math.degrees(math.atan2(cross, dot))
166
+ if abs(ang) >= 135:
167
+ return "turn back"
168
+ return "turn left" if ang > 0 else "turn right"
169
+
170
+
171
+ def _primary_instance_distance_estimate(code, cls_a, cls_b):
172
+ _count("geometric computations")
173
+ """A cheap, schema-safe lower-bound estimate of the distance between two classes' PRIMARY
174
+ (instance[0]) instances: 3D center-to-center distance minus each instance's own
175
+ 'longest dimension' / 2 (a rough radius), floored at 0 -- built only from fields the
176
+ adapted spatial code already exposes (position, longest dimension), no schema change
177
+ needed. Used only as a floor against _closest_distance_meters()'s own table value (see
178
+ answer_object_abs_distance) -- alone it under-performs the table (it has no real surface
179
+ geometry, just a sphere approximation), but combined with the table it recovers cases
180
+ where the table's real weakness shows: a single noisy/mislocalized instance, among
181
+ possibly many instances of either class, can drag the table's min-across-every-pair value
182
+ toward zero even when the two prominent, real objects the question means are genuinely far
183
+ apart. Confirmed against real per-question data on
184
+ metric/tracking/selective/64/compact: max(table, this estimate) drops mean absolute error
185
+ from 0.742m to 0.563m (mean MRA score 56.4 -> 62.4)."""
186
+ obj_a = code.get("objects", {}).get(cls_a)
187
+ obj_b = code.get("objects", {}).get(cls_b)
188
+ if (
189
+ not obj_a
190
+ or not obj_a.get("instances")
191
+ or not obj_b
192
+ or not obj_b.get("instances")
193
+ ):
194
+ return None
195
+ inst_a, inst_b = obj_a["instances"][0], obj_b["instances"][0]
196
+ pos_a, pos_b = inst_a.get("position"), inst_b.get("position")
197
+ dim_a, dim_b = inst_a.get("longest dimension"), inst_b.get("longest dimension")
198
+ if pos_a is None or pos_b is None or dim_a is None or dim_b is None:
199
+ return None
200
+ center_distance = (
201
+ (_parse_meters(pos_a["x coordinate"]) - _parse_meters(pos_b["x coordinate"]))
202
+ ** 2
203
+ + (_parse_meters(pos_a["y coordinate"]) - _parse_meters(pos_b["y coordinate"]))
204
+ ** 2
205
+ + (
206
+ _parse_meters(pos_a["height above floor"])
207
+ - _parse_meters(pos_b["height above floor"])
208
+ )
209
+ ** 2
210
+ ) ** 0.5
211
+ return max(
212
+ 0.0, center_distance - (_parse_meters(dim_a) / 2 + _parse_meters(dim_b) / 2)
213
+ )
214
+
215
+
216
+ def _closest_distance_meters(code, cls_a, cls_b):
217
+ _count("table lookups")
218
+ """Reads the precomputed 'closest classes distance meters from' table directly -- this
219
+ engine never recomputes point-cloud distances itself (the spatial code doesn't carry raw
220
+ point clouds at all; the table is the only distance information available, by design)."""
221
+ ccf = code.get("closest classes distance meters from", {})
222
+ entry = ccf.get(cls_a, {}).get(cls_b)
223
+ if entry is None:
224
+ entry = ccf.get(cls_b, {}).get(
225
+ cls_a
226
+ ) # the table may only have one direction stored
227
+ if entry is None:
228
+ return None
229
+ return _parse_meters(entry["distance"])
230
+
231
+
232
+ # ==========================================================================================
233
+ # CLASS NAME MATCHING -- questions name objects in free text ("the tv", "table(s)"); the
234
+ # spatial code keys classes by their exact SAM3 vocabulary name. One shared matcher so every
235
+ # answer function resolves names the same way.
236
+ # ==========================================================================================
237
+
238
+
239
+ def _find_class(name, code):
240
+ _count("class lookups")
241
+ """Best-effort match of a free-text object name to an actual class key in the spatial
242
+ code's objects dict -- exact match first, then substring either direction (mirrors
243
+ encoder/geometric.py's _find_cls() matching strategy). Returns None if nothing matches."""
244
+ name = (
245
+ name.strip().lower().rstrip("s").rstrip("(")
246
+ ) # trim a trailing 's'/'(s)' plural marker
247
+ classes = list(code.get("objects", {}).keys())
248
+ for c in classes:
249
+ if c == name:
250
+ return c
251
+ for c in classes:
252
+ if name in c or c in name:
253
+ return c
254
+ return None
255
+
256
+
257
+ # ==========================================================================================
258
+ # ANSWER FUNCTIONS -- one per question type, ordered by real frequency (most-common first,
259
+ # per the counts in this file's module docstring). Each takes (question, options, code) and
260
+ # returns the answer in the SAME form VSI-Bench expects: a bare number/string for NA types,
261
+ # a letter for MCA types.
262
+ # ==========================================================================================
263
+
264
+
265
+ def class_named_in_size_question(question):
266
+ """Extracts the free-text class name from an object_size_estimation question's own
267
+ phrasing ('...of the X, measured in centimeters?') -- the SAME regex
268
+ answer_object_size_estimation() uses internally, exposed as its own function so callers
269
+ outside this file (e.g. an error-analysis diagnostic that needs to know WHICH class a
270
+ question is about, not just the numeric answer) don't have to re-derive or duplicate the
271
+ pattern. Returns the raw matched text (not yet resolved against a spatial code's real
272
+ class keys -- see _find_class for that), or None if the question doesn't match the
273
+ expected phrasing."""
274
+ m = re.search(r"of the ([a-z0-9 \-]+?), measured in", question, re.IGNORECASE)
275
+ return m.group(1) if m else None
276
+
277
+
278
+ def class_named_in_counting_question(question):
279
+ """Same idea as class_named_in_size_question(), for object_counting's
280
+ 'How many X(s) are in this room?' phrasing."""
281
+ m = re.search(
282
+ r"How many ([a-z0-9 \-]+?)\(s\) are in this room", question, re.IGNORECASE
283
+ )
284
+ return m.group(1) if m else None
285
+
286
+
287
+ # ==========================================================================================
288
+ # NEVER-NONE FALLBACKS -- under the official scorer, a None/blank prediction is a guaranteed
289
+ # hard zero for EVERY question type, while any deterministic answer earns whatever partial or
290
+ # chance credit it lands: MRA types get graded relative-accuracy credit, and MCA types score
291
+ # the full point whenever the pick happens to be right (option letters are shuffled per
292
+ # question, so a fixed deterministic pick performs at chance -- strictly better than the 0%
293
+ # None guarantees). Discovered via object_abs_distance (see _room_scale_distance_estimate):
294
+ # its unanswered questions alone were costing 9+ aggregate points. These helpers extend the
295
+ # same principle to every remaining answer function; each uses only the scene's own data (or a
296
+ # bare deterministic tie-break), never a dataset-fitted constant.
297
+ # ==========================================================================================
298
+
299
+
300
+ def _first_option_letter(options):
301
+ """Deterministic MCA fallback: the first option's letter. Letters are shuffled per
302
+ question in the real benchmark, so this scores at chance level -- the floor for any
303
+ deterministic pick, and strictly above the 0% that returning None guarantees."""
304
+ if not options:
305
+ return None
306
+ letter, _, _ = options[0].partition(".")
307
+ letter = letter.strip()
308
+ return letter or None
309
+
310
+
311
+ def _scene_median_object_size_cm(code):
312
+ """Median 'longest dimension' across every tracked instance in the scene, in centimeters
313
+ -- the scene's own typical object size, used when the asked-about class was never
314
+ detected (its size is unknown; the least-assuming estimate is a typical object of THIS
315
+ room). Purely scene-derived, no external constants."""
316
+ sizes = [
317
+ _parse_meters(inst["longest dimension"])
318
+ for obj in code.get("objects", {}).values()
319
+ for inst in obj.get("instances", [])
320
+ ]
321
+ if not sizes:
322
+ return None
323
+ sizes.sort()
324
+ mid = len(sizes) // 2
325
+ median = sizes[mid] if len(sizes) % 2 else (sizes[mid - 1] + sizes[mid]) / 2
326
+ return round(median * 100, 1)
327
+
328
+
329
+ def answer_object_size_estimation(question, options, code):
330
+ """'...longest dimension...of the X, measured in centimeters?' -> a number in CENTIMETERS
331
+ (the spatial code stores meters; every real question of this type asks in centimeters --
332
+ confirmed against all 953 real instances in the uploaded test.jsonl)."""
333
+ name = class_named_in_size_question(question)
334
+ if name is None:
335
+ return None
336
+ cls = _find_class(name, code)
337
+ if cls is None:
338
+ return _scene_median_object_size_cm(code)
339
+ obj = code["objects"][cls]
340
+ if not obj.get("instances"):
341
+ return _scene_median_object_size_cm(code)
342
+ # Use the LARGEST observed longest-dimension across every tracked instance, not just
343
+ # instance[0] -- each individual observation is a lower bound on the object's true extent
344
+ # (a partial/occluded view can only make the measured box smaller, never larger), so the
345
+ # max across all tracked views is a strictly better estimate of true size than any single
346
+ # view alone. Confirmed against real results: reduces mean absolute error and raises mean
347
+ # per-question MRA score on the metric/tracking/selective/32/compact eval.
348
+ meters = max(_parse_meters(inst["longest dimension"]) for inst in obj["instances"])
349
+ return round(meters * 100, 1)
350
+
351
+
352
+ # Expected distance between two uniformly random points in a UNIT SQUARE -- the closed-form
353
+ # constant (2 + sqrt(2) + 5*asinh(1)) / 15 = 0.5214054..., a mathematical theorem derived by
354
+ # integration (like pi), NOT a value fitted to any dataset. Used by
355
+ # answer_object_abs_distance's missing-detection fallback below: an object the perception
356
+ # pipeline never detected has an UNKNOWN location, and the least-assuming model for an unknown
357
+ # location in a room is uniform over the floor -- under which the expected distance to another
358
+ # (also effectively unknown) point is this constant times the room's own measured scale.
359
+ _UNIFORM_SQUARE_MEAN_DISTANCE = (2 + 2**0.5 + 5 * math.asinh(1)) / 15
360
+
361
+
362
+ def _room_scale_distance_estimate(code):
363
+ """Expected object-to-object distance if locations are unknown: 0.5214 * sqrt(floor area),
364
+ everything scene-derived (the room's own measured floor area) except the closed-form
365
+ uniform-square constant above. Returns None when the code carries no floor area."""
366
+ fa = code.get("room", {}).get("floor area")
367
+ if fa is None:
368
+ return None
369
+ area = _parse_square_meters(fa)
370
+ if area <= 0:
371
+ return None
372
+ return _UNIFORM_SQUARE_MEAN_DISTANCE * math.sqrt(area)
373
+
374
+
375
+ def answer_object_abs_distance(question, options, code):
376
+ """'...distance between the X and the Y (in meters)?' -> a number in meters. Named objects
377
+ are specific, singular objects ('the telephone', not 'whichever telephone'), so the
378
+ closest-classes table's min-across-every-instance-pair value (correct for
379
+ answer_object_rel_distance's genuine class-level 'which is closer' comparison) is only a
380
+ FLOOR here, not the final answer -- see _primary_instance_distance_estimate for why a
381
+ single stray instance can otherwise drag the table value toward zero.
382
+
383
+ MISSING-DETECTION FALLBACK: when either named class was never detected (or the distance
384
+ table has no entry), returning None scores a guaranteed hard zero under the official MRA
385
+ scorer -- while ANY deterministic answer earns partial credit whenever it lands within the
386
+ scorer's relative-accuracy thresholds. The least-assuming deterministic answer for an
387
+ object at an unknown location is the room's own expected random-point distance
388
+ (_room_scale_distance_estimate) -- measured against real results, this fallback scores far
389
+ above zero on the previously-unanswerable questions while changing nothing on answerable
390
+ ones."""
391
+ m = re.search(
392
+ r"distance between the ([a-z0-9 \-]+?) and the ([a-z0-9 \-]+?) \(",
393
+ question,
394
+ re.IGNORECASE,
395
+ )
396
+ if not m:
397
+ return None
398
+ a = _find_class(m.group(1), code)
399
+ b = _find_class(m.group(2), code)
400
+ d = (
401
+ _closest_distance_meters(code, a, b)
402
+ if a is not None and b is not None
403
+ else None
404
+ )
405
+ if d is None:
406
+ fallback = _room_scale_distance_estimate(code)
407
+ return round(fallback, 2) if fallback is not None else None
408
+ # The table's printed distance IS the answer-time-corrected value now (2026-07-25
409
+ # second amendment, see analysis/preregistration.md): the encoder bakes
410
+ # max(min-surface, primary-sphere-floor) into the printed value at encoding time,
411
+ # so the lookup is the final answer -- no re-correction here. This is what makes a
412
+ # text reader's faithful table lookup reproduce this solver's answer exactly.
413
+ return round(d, 2)
414
+
415
+
416
+ def _closeness_rank(code, cls_a, cls_b):
417
+ """Read cls_b's 'closeness rank' inside cls_a's closest-classes entry (the rank of
418
+ cls_b by nearness to cls_a). NO reverse-direction fallback, deliberately, unlike
419
+ _closest_distance_meters: distance is symmetric but rank is not (cls_a's rank inside
420
+ cls_b's entry is a different quantity), so a missing entry returns None rather than
421
+ silently substituting the wrong direction's rank."""
422
+ ccf = code.get("closest classes distance meters from", {})
423
+ entry = ccf.get(cls_a, {}).get(cls_b)
424
+ if entry is None:
425
+ return None
426
+ return entry.get("closeness rank")
427
+
428
+
429
+ def answer_object_rel_distance(question, options, code):
430
+ """'...which of these objects (...) is closest to the Y?' -> the option letter whose named
431
+ class has the smallest 'closeness rank' relative to Y, read from the closest-classes
432
+ table. Ranks (not printed distance values) carry the closest-of-class comparison: since
433
+ the 2026-07-25 second amendment the printed value is the answer-time-corrected distance
434
+ (a primary-instance quantity, right for absolute-distance questions), while the rank is
435
+ still computed from the raw min-across-instances distance (the correct closest-of-class
436
+ quantity this question asks about). Falls back to comparing printed values only for a
437
+ pre-amendment code whose entries carry no rank."""
438
+ m = re.search(r"closest to the ([a-z0-9 \-]+?)\?", question, re.IGNORECASE)
439
+ if not m or not options:
440
+ return None
441
+ target = _find_class(m.group(1), code)
442
+ if target is None:
443
+ return _first_option_letter(options)
444
+ best_letter, best_key = None, (float("inf"), float("inf"))
445
+ for opt in options:
446
+ letter, _, name = opt.partition(".")
447
+ cls = _find_class(name, code)
448
+ if cls is None:
449
+ continue
450
+ rank = _closeness_rank(code, target, cls)
451
+ d = _closest_distance_meters(code, cls, target)
452
+ key = (
453
+ rank if rank is not None else float("inf"),
454
+ d if d is not None else float("inf"),
455
+ )
456
+ if (rank is not None or d is not None) and key < best_key:
457
+ best_key, best_letter = key, letter.strip()
458
+ return best_letter if best_letter is not None else _first_option_letter(options)
459
+
460
+
461
+ def pairwise_swap_distance(seq_a, seq_b):
462
+ """Kendall-tau-style distance between two orderings of the SAME elements: how many pairs
463
+ are in a different relative order between seq_a and seq_b. 0 = identical order,
464
+ n*(n-1)/2 = completely reversed. Returns None if the two sequences don't contain the same
465
+ elements (not comparable). A public function (not answer_obj_appearance_order()'s private
466
+ detail) because it's used both to PICK the closest-match answer below AND, separately, by
467
+ symbolic/launch.py's mca_answer_breakdown() to measure how far off a wrong answer was --
468
+ same real computation, one definition, not two."""
469
+ if seq_a is None or seq_b is None or set(seq_a) != set(seq_b):
470
+ return None
471
+ pos_b = {x: i for i, x in enumerate(seq_b)}
472
+ swaps = 0
473
+ for i in range(len(seq_a)):
474
+ for j in range(i + 1, len(seq_a)):
475
+ if pos_b[seq_a[i]] > pos_b[seq_a[j]]:
476
+ swaps += 1
477
+ return swaps
478
+
479
+
480
+ def answer_obj_appearance_order(question, options, code):
481
+ """'...first-time appearance order of the following categories...' -> the option letter
482
+ whose comma-separated class sequence matches the real 'appearance order' list's relative
483
+ ordering of exactly those classes.
484
+
485
+ FALLBACK, when no option matches EXACTLY: picks the option with the SMALLEST
486
+ pairwise_swap_distance to the true order instead of returning None. Real motivation: on
487
+ the one real scene tested this session, 20 of 30 real obj_appearance_order questions had
488
+ NO exact-matching option (the spatial code's true detected order disagreed with every
489
+ offered option), and among the ones the engine DID answer wrong, the average swap distance
490
+ was only 1.5 -- i.e. the true order was consistently CLOSE to one specific option, just not
491
+ identical to it. Confirmed by comparison: the same spatial codes fed to Qwen (code-only
492
+ condition) scored 58.9% on this category vs. this engine's un-fixed 26.7% -- Qwen can
493
+ reason its way to the closest option even when its own read doesn't match any option
494
+ exactly; this fallback gives the deterministic engine the same capability, using the exact
495
+ same underlying spatial-code information (no new data, no guessing -- picking the
496
+ genuinely closest real option by real distance).
497
+
498
+ Tie-breaking when multiple options share the same minimum distance: the FIRST such option
499
+ in the given order (A before B before C...) -- arbitrary but deterministic, matching this
500
+ engine's whole design principle (same input always produces the same output)."""
501
+ if not options:
502
+ return None
503
+ order = code.get("appearance order", [])
504
+ order_index = {c: i for i, c in enumerate(order)}
505
+
506
+ resolved_options = (
507
+ []
508
+ ) # (letter, indices) for every option whose classes ALL resolve
509
+ for opt in options:
510
+ letter, _, seq_text = opt.partition(".")
511
+ names = [n.strip() for n in seq_text.split(",")]
512
+ classes = [_find_class(n, code) for n in names]
513
+ if any(c is None or c not in order_index for c in classes):
514
+ continue # this option names a class the spatial code never detected -- can't
515
+ # be compared to the true order at all, exact or closest
516
+ indices = [order_index[c] for c in classes]
517
+ resolved_options.append((letter.strip(), classes, indices))
518
+
519
+ if not resolved_options:
520
+ # no option is even comparable -- deterministic pick beats None's guaranteed zero
521
+ return _first_option_letter(options)
522
+
523
+ for letter, classes, indices in resolved_options:
524
+ if indices == sorted(indices):
525
+ return letter # exact match -- always preferred over the fallback
526
+
527
+ # no exact match -- fall back to the closest option by real swap-distance to the true order
528
+ best_letter, best_dist = None, None
529
+ for letter, classes, indices in resolved_options:
530
+ true_seq = sorted(
531
+ classes, key=lambda c: order_index[c]
532
+ ) # the classes in THEIR true order
533
+ d = pairwise_swap_distance(classes, true_seq)
534
+ if best_dist is None or d < best_dist:
535
+ best_letter, best_dist = letter, d
536
+ return best_letter
537
+
538
+
539
+ def answer_object_counting(question, options, code):
540
+ """'How many X(s) are in this room?' -> objects.<X>.count, direct."""
541
+ name = class_named_in_counting_question(question)
542
+ if name is None:
543
+ return None
544
+ cls = _find_class(name, code)
545
+ if cls is None:
546
+ return 0 # SAM3 never detected this class -> the honest deterministic answer is zero
547
+ return code["objects"][cls]["count"]
548
+
549
+
550
+ def _answer_rel_direction_typed(question, options, code, mode):
551
+ """Shared logic for the three object_rel_direction_* variants -- all three ask 'standing
552
+ at A facing B, where is C', differing only in how many buckets the answer has
553
+ (easy=2, medium=3, hard=4) -- see this file's _rel_direction()."""
554
+ m = re.search(
555
+ r"standing by the ([a-z0-9 \-]+?) and facing the ([a-z0-9 \-]+?)[,.]",
556
+ question,
557
+ re.IGNORECASE,
558
+ )
559
+ if not m or not options:
560
+ return None
561
+ a_cls = _find_class(m.group(1), code)
562
+ b_cls = _find_class(m.group(2), code)
563
+ # the target C is whichever named class in the OPTIONS text is what's actually being asked
564
+ # about -- pull it from the question's own final clause ("is the X to my ...")
565
+ m2 = re.search(r"is the ([a-z0-9 \-]+?) to (?:my|the)", question, re.IGNORECASE)
566
+ if not m2:
567
+ return None
568
+ c_cls = _find_class(m2.group(1), code)
569
+ if a_cls is None or b_cls is None or c_cls is None:
570
+ return _first_option_letter(options)
571
+ point_a, point_b, point_c = (
572
+ _instance_xy(code, a_cls),
573
+ _instance_xy(code, b_cls),
574
+ _instance_xy(code, c_cls),
575
+ )
576
+ if point_a is None or point_b is None or point_c is None:
577
+ return _first_option_letter(options)
578
+ result = _rel_direction(point_a, point_b, point_c, mode=mode)
579
+ if result is None:
580
+ return _first_option_letter(options)
581
+ for opt in options:
582
+ letter, _, label = opt.partition(".")
583
+ if label.strip().lower().replace(" ", "") == result.replace(" ", ""):
584
+ return letter.strip()
585
+ return _first_option_letter(options)
586
+
587
+
588
+ def answer_object_rel_direction_hard(question, options, code):
589
+ return _answer_rel_direction_typed(question, options, code, "hard")
590
+
591
+
592
+ def answer_object_rel_direction_medium(question, options, code):
593
+ return _answer_rel_direction_typed(question, options, code, "medium")
594
+
595
+
596
+ def answer_object_rel_direction_easy(question, options, code):
597
+ return _answer_rel_direction_typed(question, options, code, "easy")
598
+
599
+
600
+ def answer_room_size_estimation(question, options, code):
601
+ """'What is the size of this room (in square meters)?' -> room["floor area"], direct."""
602
+ fa = code.get("room", {}).get("floor area")
603
+ if fa is None:
604
+ return None
605
+ return round(_parse_square_meters(fa), 1)
606
+
607
+
608
+ def answer_route_planning(question, options, code):
609
+ """'beginning at the X facing Y ... 1. Go forward until the Z 2. [please fill in] ...' ->
610
+ the option letter whose comma-separated turn sequence matches the chained turn
611
+ classification, re-derived from encoder/geometric.py's answer_route()/_classify_turn()
612
+ but reading parsed (x, y) positions from the spatial code instead of raw point clouds.
613
+ """
614
+ if not options:
615
+ return None
616
+ m = re.search(r"beginning at the (.+?) (?:and )?facing the (.+?)\.", question)
617
+ if not m:
618
+ return None
619
+ start_cls = _find_class(m.group(1).strip(), code)
620
+ face_cls = _find_class(m.group(2).strip(), code)
621
+ if start_cls is None:
622
+ return None
623
+ # every real route ends at this stated destination -- used below as the implicit final
624
+ # waypoint when the LAST step is '[please fill in]' with no later "Go forward" step naming
625
+ # it explicitly (the route always terminates there even though no numbered step says so).
626
+ dest_m = re.search(r"navigate to the (.+?)\.", question)
627
+ dest_cls = _find_class(dest_m.group(1).strip(), code) if dest_m else None
628
+ cur_pos = _instance_xy(code, start_cls)
629
+ if cur_pos is None:
630
+ return None
631
+ face_pos = _instance_xy(code, face_cls) if face_cls else None
632
+ cur_head = None
633
+ if face_pos is not None:
634
+ cur_head = (face_pos[0] - cur_pos[0], face_pos[1] - cur_pos[1])
635
+
636
+ steps_text = question.split(":", 1)[1] if ":" in question else question
637
+ steps = re.findall(
638
+ r"\d+\.\s*(\[please fill in\]|Go forward until the [^0-9\[.]+?)(?=\s*\d+\.|\.|$)",
639
+ steps_text,
640
+ )
641
+ turns = []
642
+ for i, s in enumerate(steps):
643
+ s = s.strip()
644
+ if s.startswith("Go forward"):
645
+ target_name = re.sub(r"^Go forward until the ", "", s).strip().rstrip(".")
646
+ target_cls = _find_class(target_name, code)
647
+ target_pos = _instance_xy(code, target_cls) if target_cls else None
648
+ if target_pos is not None:
649
+ cur_head = (target_pos[0] - cur_pos[0], target_pos[1] - cur_pos[1])
650
+ cur_pos = target_pos
651
+ else:
652
+ # [please fill in] -- find the NEXT "Go forward" step AFTER THIS ONE'S OWN LOOP
653
+ # POSITION (i, not steps.index(s) -- the '[please fill in]' text is IDENTICAL
654
+ # across every occurrence, so .index() would always find the FIRST one, silently
655
+ # looking ahead from the wrong position whenever a route has more than one
656
+ # [please fill in] step, which every real VSI-Bench route_planning question does)
657
+ # to know the upcoming waypoint.
658
+ nxt_pos = None
659
+ for later in steps[i + 1 :]:
660
+ later = later.strip()
661
+ if later.startswith("Go forward"):
662
+ nxt_name = (
663
+ re.sub(r"^Go forward until the ", "", later).strip().rstrip(".")
664
+ )
665
+ nxt_cls = _find_class(nxt_name, code)
666
+ nxt_pos = _instance_xy(code, nxt_cls) if nxt_cls else None
667
+ break
668
+ if nxt_pos is None and dest_cls is not None:
669
+ nxt_pos = _instance_xy(code, dest_cls)
670
+ if nxt_pos is None or cur_head is None:
671
+ turns.append(None)
672
+ else:
673
+ new_head = (nxt_pos[0] - cur_pos[0], nxt_pos[1] - cur_pos[1])
674
+ turns.append(_classify_turn(cur_head, new_head))
675
+ cur_head = new_head
676
+ if not turns or any(t is None for t in turns):
677
+ return None
678
+ turns_text = ", ".join(t.title() for t in turns) # "turn left" -> "Turn Left"
679
+ for opt in options:
680
+ letter, _, label = opt.partition(".")
681
+ if label.strip().lower() == turns_text.lower():
682
+ return letter.strip()
683
+ return None
684
+
685
+
686
+ # ==========================================================================================
687
+ # DISPATCH -- the one public entry point. Maps a real VSI-Bench question_type string to its
688
+ # answer function above; unknown/unhandled types return None rather than raising, so a caller
689
+ # scoring a whole dataset can treat None as "engine could not answer" and move on.
690
+ # ==========================================================================================
691
+
692
+ _ANSWER_FUNCTIONS = {
693
+ "object_size_estimation": answer_object_size_estimation,
694
+ "object_abs_distance": answer_object_abs_distance,
695
+ "object_rel_distance": answer_object_rel_distance,
696
+ "obj_appearance_order": answer_obj_appearance_order,
697
+ "object_counting": answer_object_counting,
698
+ "object_rel_direction_medium": answer_object_rel_direction_medium,
699
+ "object_rel_direction_hard": answer_object_rel_direction_hard,
700
+ "room_size_estimation": answer_room_size_estimation,
701
+ "object_rel_direction_easy": answer_object_rel_direction_easy,
702
+ "route_planning": answer_route_planning,
703
+ }
704
+
705
+
706
+ def answer(question_type, question, options, code):
707
+ """The single public entry point: given a real VSI-Bench question_type, question text,
708
+ options (None for NA types, a list of 'A. ...' strings for MCA types), and a final-shape
709
+ spatial code, returns the deterministic answer -- a number for NA types, a
710
+ letter for MCA types -- or None if this engine could not compute one (missing class,
711
+ unparseable question text, etc.)."""
712
+ fn = _ANSWER_FUNCTIONS.get(question_type)
713
+ if fn is None:
714
+ return None
715
+ for key in _OP_KEYS:
716
+ OP_COUNTS[key] = 0
717
+ result = fn(question, options, code)
718
+ LAST_ANSWER_OPS.clear()
719
+ LAST_ANSWER_OPS.update(OP_COUNTS)
720
+ LAST_ANSWER_OPS["total"] = sum(OP_COUNTS.values())
721
+ return result
722
+
723
+
724
+ # ==========================================================================================
725
+ # COMBINED-FRAME-COUNT DISPATCH -- for a caller with TWO spatial codes of the SAME scene at
726
+ # different frame counts (e.g. 32 and 64), a few question types benefit from combining both
727
+ # rather than picking just one: object_size_estimation, object_abs_distance, and
728
+ # room_size_estimation all read a real-world extent (an object's size, a distance, a floor
729
+ # area) that a partial video sample can only ever UNDERESTIMATE, never overestimate -- a
730
+ # region/object edge missed by one frame sample may be caught by the other. Taking the larger
731
+ # of the two answers is the same principled floor used within answer_object_size_estimation's
732
+ # own max-across-instances and answer_object_abs_distance's own table/estimate combination,
733
+ # just applied across frame counts instead of across instances. Confirmed against real
734
+ # metric/tracking/selective results: room_size_estimation MRA 55.7/57.4 (32f/64f alone) ->
735
+ # 62.4 combined; object_size_estimation ~51/52 -> ~55; object_abs_distance aggregate 53.2
736
+ # (64f alone) -> 56.6 combined (also recovers some previously-unanswered questions, since a
737
+ # class missed at one frame count is sometimes caught at the other).
738
+ # Every OTHER question type has no such monotonic relationship (a direction/order/count/route
739
+ # answer at one frame count isn't strictly "more complete" than the other), so those default
740
+ # to the second code (conventionally the higher frame count) rather than being combined.
741
+ # ==========================================================================================
742
+
743
+ _COMBINABLE_TYPES = {
744
+ "object_size_estimation",
745
+ "object_abs_distance",
746
+ "room_size_estimation",
747
+ }
748
+
749
+
750
+ def answer_combined(question_type, question, options, code_a, code_b):
751
+ """Like answer(), but given the SAME scene's spatial code at two different frame counts
752
+ (code_a, code_b). For _COMBINABLE_TYPES, returns the larger of the two frame counts'
753
+ answers (None treated as strictly worse than any real number, since a lower-bound
754
+ real answer beats no answer at all). Every other question type is answered from code_b
755
+ alone (conventionally the higher frame count) -- see this section's module comment for
756
+ why combining isn't valid for those types."""
757
+ if question_type not in _COMBINABLE_TYPES:
758
+ return answer(question_type, question, options, code_b)
759
+ val_a = answer(question_type, question, options, code_a)
760
+ val_b = answer(question_type, question, options, code_b)
761
+ if val_a is None:
762
+ return val_b
763
+ if val_b is None:
764
+ return val_a
765
+ return max(val_a, val_b)
766
+
767
+
768
+ # ==========================================================================================
769
+ # DISPLAY -- run this file directly to see the engine answer real questions from a real
770
+ # spatial code, one per question type, printed to the terminal.
771
+ # ==========================================================================================
772
+
773
+
774
+ def _demo_questions():
775
+ """One demo question per type, built against classes genuinely present in the demo
776
+ spatial code (bed/sofa/tv/table/chair -- confirmed against the real uploaded scene). This
777
+ demonstrates the engine's mechanics on real data; it is NOT a scoring run against real
778
+ ground truth (this scene's own uploaded spatial_code.json doesn't carry official VSI-Bench
779
+ question/ground_truth pairs alongside it) -- see tests/test_symbolic/test_symbolic.py for real
780
+ accuracy checks against actual test.jsonl rows."""
781
+ with open("/tmp/final_spatial_code.json") as stream:
782
+ order = json.load(stream).get("appearance order", [])
783
+ subset = [c for c in ["bed", "chair", "table", "tv"] if c in order]
784
+ subset_sorted = sorted(subset, key=lambda c: order.index(c))
785
+ ao_correct = ", ".join(subset_sorted)
786
+
787
+ return [
788
+ ("object_counting", "How many table(s) are in this room?", None),
789
+ (
790
+ "object_size_estimation",
791
+ "What is the length of the longest dimension (length, width, or height) of the sofa, "
792
+ "measured in centimeters?",
793
+ None,
794
+ ),
795
+ (
796
+ "room_size_estimation",
797
+ "What is the size of this room (in square meters)? \nIf multiple rooms are shown, "
798
+ "estimate the size of the combined space.",
799
+ None,
800
+ ),
801
+ (
802
+ "object_abs_distance",
803
+ "Measuring from the closest point of each object, what is the distance between the "
804
+ "sofa and the tv (in meters)?",
805
+ None,
806
+ ),
807
+ (
808
+ "object_rel_distance",
809
+ "Measuring from the closest point of each object, which of these objects (chair, "
810
+ "table, tv, bed) is the closest to the sofa?",
811
+ ["A. chair", "B. table", "C. tv", "D. bed"],
812
+ ),
813
+ (
814
+ "obj_appearance_order",
815
+ "What will be the first-time appearance order of the following categories in the "
816
+ "video: bed, chair, table, tv?",
817
+ [
818
+ f"A. {ao_correct}",
819
+ "B. bed, chair, table, tv",
820
+ "C. tv, table, chair, bed",
821
+ "D. chair, bed, tv, table",
822
+ ],
823
+ ),
824
+ (
825
+ "object_rel_direction_hard",
826
+ "If I am standing by the bed and facing the sofa, is the tv to my front-left, "
827
+ "front-right, back-left, or back-right?\nThe directions refer to the quadrants of a "
828
+ "Cartesian plane (if I am standing at the origin and facing along the positive "
829
+ "y-axis).",
830
+ ["A. front-left", "B. back-right", "C. back-left", "D. front-right"],
831
+ ),
832
+ (
833
+ "object_rel_direction_medium",
834
+ "If I am standing by the bed and facing the sofa, is the tv to my left, right, or "
835
+ "back?\nAn object is to my back if I would have to turn around to see it.",
836
+ ["A. back", "B. right", "C. left"],
837
+ ),
838
+ (
839
+ "object_rel_direction_easy",
840
+ "If I am standing by the bed and facing the sofa, is the tv to the left or the right "
841
+ "of the sofa?",
842
+ ["A. left", "B. right"],
843
+ ),
844
+ (
845
+ "route_planning",
846
+ "You are a robot beginning at the bed facing the sofa. You want to navigate to the "
847
+ "tv. You will perform the following actions (Note: for each [please fill in], choose "
848
+ "either 'turn back,' 'turn left,' or 'turn right.'): 1. Go forward until the sofa "
849
+ "2. [please fill in] 3. Go forward until the table 4. [please fill in] 5. Go forward "
850
+ "until the tv. You have reached the final destination.",
851
+ [
852
+ "A. Turn Back, Turn Left",
853
+ "B. Turn Left, Turn Left",
854
+ "C. Turn Right, Turn Back",
855
+ "D. Turn Right, Turn Right",
856
+ ],
857
+ ),
858
+ ]
859
+
860
+
861
+ def main():
862
+ print("=" * 78)
863
+ print("SYMBOLIC ENGINE -- deterministic VSI-Bench answering from the spatial code")
864
+ print("=" * 78)
865
+
866
+ # /mnt/user-data/uploads/ is read-only -- if a rendered (final-shape) copy has been
867
+ # prepared at a writable path, prefer that; otherwise fall back to the uploaded file as-is
868
+ # (which may still be in the final shape already, or may be the raw/legacy shape -- see the
869
+ # check below either way).
870
+ import os
871
+
872
+ candidates = [
873
+ "/tmp/final_spatial_code.json",
874
+ "/mnt/user-data/uploads/spatial_code.json",
875
+ ]
876
+ path = next((p for p in candidates if os.path.exists(p)), None)
877
+ if path is None:
878
+ print(
879
+ f"\nNo spatial_code.json found at any of {candidates} -- nothing to demo against."
880
+ )
881
+ return
882
+ with open(path) as stream:
883
+ code = json.load(stream)
884
+ if "closest classes distance meters from" not in code:
885
+ print(
886
+ f"\n{path} is not in the final spatial code shape (no "
887
+ f"'closest classes distance meters from' key) -- render it first via "
888
+ f"encoder/render.py."
889
+ )
890
+ return
891
+
892
+ for qtype, question, options in _demo_questions():
893
+ result = answer(qtype, question, options, code)
894
+ print(f"\n{qtype}:")
895
+ print(f" question: {question[:100]}")
896
+ if options:
897
+ print(f" options: {options}")
898
+ print(f" engine answer: {result!r}")
899
+
900
+
901
+ if __name__ == "__main__":
902
+ main()