[Remyx Recommendation] SpaceDG: Benchmarking Spatial Intelligence under Visual Degradation#73
Draft
github-actions[bot] wants to merge 1 commit into
Draft
[Remyx Recommendation] SpaceDG: Benchmarking Spatial Intelligence under Visual Degradation#73github-actions[bot] wants to merge 1 commit into
github-actions[bot] wants to merge 1 commit into
Conversation
…er Visual Degradation
This was referenced May 29, 2026
Closed
salma-remyx
added a commit
that referenced
this pull request
May 29, 2026
The action's candidate-selection + role-based-guardrails work (v1.0.6) is validated end-to-end on this repo (draft PR #73). Drop the rate-limit-days: '0' override that bypassed the per-run rate limit during validation, so the weekly cron falls back to the action default (7 days). Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
3 tasks
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.
Why this paper for this team
VQASynth's 'Add optional pipeline for chain-of-thought reasoning' generates data for spatial understanding. SpaceDG introduces a benchmark for evaluating spatial intelligence under visual degradations, revealing a significant robustness gap in current MLLMs. This directly extends and complements VQASynth's CoT generation by providing insights into how robust the generated reasoning data is when visual inputs are imperfect. Understanding these degradation-induced failure modes can help VQASynth evolve its CoT generation to be more resilient, perhaps by explicitly incorporating reasoning about visual uncertainty or by generating data reflecting challenging conditions, thereby addressing the 'Generalization to Diverse Scenes' open problem.
Why this candidate (selected from the lookback pool)
SpaceDG is a spatial-reasoning evaluation benchmark over (degraded) static images, which drops directly into the repo's existing evaluation stage: a new dataset loader in benchmarks.py, degradation-aware scoring in evaluation.py, and execution through the existing inference.py VLM wrapper. It requires no new trainer, model, or 3D infrastructure — only code paths the repo already calls for its multi-benchmark eval stage.
Suggested experiment
Apply a subset of SpaceDG's synthetic degradations (e.g., motion blur, low light) to a small batch of VQASynth's input images. Generate CoT-based QA pairs for these degraded images using the 'Add optional pipeline for chain-of-thought reasoning'. Compare the quality, correctness, and logical consistency of the generated reasoning against those from pristine images to identify sensitivity to degradations.
What this PR actually does
Call site:
docker/eval_stage/process_eval.py run_eval() — the existing eval-stage CLI now constructs BenchmarkRunner(degradation=..., severity=...) and calls runner.degrade_items(items) before run_inference_on_benchmark; degradation also flows through BenchmarkRunner.get_benchmark_items()Implemented from the paper:
Stubbed / left out:
I built a self-contained image-space corruption library (nine ImageNet-C-style operators) and wired it into the pre-existing eval stage: the process_eval.py CLI gains --degradation/--severity flags and degrades every benchmark image before inference, so the product genuinely exercises the new code (not an orphan). What is faithfully delivered is the robustness-evaluation methodology — re-running existing spatial benchmarks under degradation to expose the clean-vs-degraded gap. What is NOT present is the paper's actual primary contribution: the physically grounded 3DGS degradation-synthesis engine, the released SpaceDG dataset, and the human-verified SpaceDG-Bench. The degradations here are cheap perceptual approximations, not the paper's physically grounded renders, and there is no automated gap-reporting — the user must run and diff two reports themselves.
Test results
✅ All tests passed.
Opened by the Remyx Recommendation orchestrator.