feat(evals): semantic object VQA + ImageDetections3DPC.agent_encode (evo autoresearch, 0.355 -> 0.9997) - #3417
Draft
spomichter wants to merge 2 commits into
Draft
feat(evals): semantic object VQA + ImageDetections3DPC.agent_encode (evo autoresearch, 0.355 -> 0.9997)#3417spomichter wants to merge 2 commits into
spomichter wants to merge 2 commits into
Conversation
…odom object memory) Frozen detections + independent truth clusterer, 12 families incl. VQASynth-style distances, set-F1 recall, egocentric and betweenness. Gates: blind-ablation ceiling, answer-leak grep, abstraction budget (max one agent_encode + one memory2 search skill), target-only diff.
…mantic object memory Distilled from evo autoresearch winner exp_0013 (semantic VQA: baseline 0.3546 -> 0.9997; replicates 0.953/0.9998; blind control 0.06). Compact per-frame 'name#k conf pos' entries with encoder-side greedy instance clustering plus a once-per-pass P1-P9 procedure legend (closed-form clearance/compass/ego-frame rules, noise deletion, distance-table discipline).
Codecov Report❌ Patch coverage is
@@ Coverage Diff @@
## feat/evals-framework #3417 +/- ##
========================================================
- Coverage 76.12% 76.11% -0.01%
========================================================
Files 1201 1203 +2
Lines 115988 116055 +67
Branches 10415 10422 +7
========================================================
+ Hits 88294 88338 +44
- Misses 24671 24694 +23
Partials 3023 3023
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
after the pointcloud encoding work (#3415) the agent could read geometry but had no object memory: detections lived in memory2 as per-frame rich tables the model can't aggregate (baseline: answered "3" for 6 chairs, "surfboard" for what's near the bed, "refrigerator" for nearest-anything).
Solution
stacked on #3411, sibling to #3415. two commits:
1. semantic object VQA benchmark (
evals_bench/semantic/): 47 generated cases over a YOLO(v8m)+odom-grounded object memory fromgo2_bigoffice. 12 families: recall (set-F1), counting, zone counting, presence (prior-inverting probes), nearest-class, egocentric ahead/behind/left/right (odom yaw frame transform), 8-way object-object compass, VQASynth-style metric distances (object-object + robot-object), within-radius, next-to, betweenness. ground truth computed by an independent clusterer over frozen detections; teacher/student context parity contract documented in the harness. gates: blind-ablation ceiling ≤0.35 (measured 0.06 — two calibration rounds drove it down from 0.39), answer-leak grep, target-only diff, and an abstraction budget gate (max one agent_encode + max one memory2 search skill; wrapper stores = fail).2.
ImageDetections3DPC.agent_encode()— found by evo autoresearch, 14 experiments in two lanes. final: 0.9997 (all 47 pass; stability replicates 0.953/0.9998, mean 0.984; blind 0.06). design: compact per-framename#k conf pos=(x,y,z)entries where the ENCODER pre-runs the greedy 1.5 m instance-clustering scan (models can't execute it mentally over ~290 rows), plus a once-per-pass P1–P9 procedure legend: noise deletion, per-class distance-table discipline (kills salience bias), closed-form ego-frame via fwd/left signed comparisons (no trig), the 2.41-ratio compass rule from #3415, strictly-between admission test.report w/ figures: https://dimos-semantic-vqa-report.vercel.app (pointcloud sibling: https://dimos-pc-encoding-report.vercel.app)
Mergeability
Breaking Changes
None
How to Test
Contributor License Agreement