Image work has always had a small credibility problem: people can say where they looked, but we do not always know whether they actually looked there.
The same problem shows up in multimodal AI. A model can answer a question about a chart, a photograph, a geometry diagram, or a robotic scene, then produce a neat textual chain of thought afterwards. It may sound procedural. It may mention “examining the relevant region.” It may even say “the graph shows…” with the confidence of a consultant holding a laser pointer.
But text is cheap. Looking is the expensive part.
The paper behind Omni-R1 asks a useful question: what if multimodal reasoning should not only talk about visual evidence, but generate intermediate visual states while reasoning?1 Not merely “I inspected the object,” but “I zoomed into this region.” Not merely “these two points are connected,” but “I marked the nodes.” Not merely “the next robotic state follows,” but “I predicted the next visual frame.”
That is the shift. Omni-R1 is not just another chain-of-thought method wearing a vision badge. It treats visual operations as part of the reasoning trajectory itself.
This matters because many business uses of multimodal AI are not really about producing a final answer. They are about producing an answer that can be inspected, challenged, repeated, and audited. In factories, medical-adjacent document workflows, insurance claims, engineering drawings, logistics dashboards, retail shelf analysis, or design QA, the final sentence is often the least trustworthy part of the system. The real question is: what did the model look at, what did it change, and what intermediate evidence did it create before deciding?
Omni-R1 is still a research system. The paper does not prove that enterprise visual agents are production-ready. It does, however, points toward a more interesting design pattern: multimodal agents as visual workbenches, not just visual chatbots.
The old pattern: the image is evidence, but the reasoning is text
Most multimodal reasoning systems follow a familiar pattern. They receive an image and a text query, encode the image, generate textual reasoning, and then output an answer. The image influences the model internally, but the reasoning trace remains mostly verbal.
That design is convenient. Text is easy to store, score, review, and fine-tune. But it also creates a mismatch. Many visual tasks are not naturally solved by text alone.
A person solving a geometry problem may draw an auxiliary line. A person reading a dense chart may zoom into the axis labels. A person inspecting a photograph may circle the relevant object. A person reasoning about a robot arm may mentally simulate the next state. These are not decorative actions. They are part of the reasoning process.
Omni-R1 formalizes this mismatch by shifting from text-based multimodal reasoning to generative multimodal reasoning. The model’s trajectory contains both textual rationale and generated visual evidence. In the appendix, the paper describes this as an interleaved sequence: at each reasoning step, the policy produces a textual rationale, selects a visual action, executes it through a renderer or executor, receives a post-action image, and continues until producing the final answer.
The action vocabulary is deliberately simple:
| Visual action | What it does | Why it matters |
|---|---|---|
ZOOM-in |
Crops and enlarges a selected region | Useful for small objects, fine labels, local attributes |
BBOX |
Draws a bounding box around a region | Useful for grounding and localization |
MARK |
Highlights or enumerates objects | Useful when several items must be referenced separately |
LINE |
Draws a line between two points | Useful for geometry, alignment, and structural relations |
PRED |
Applies a one-step visual state transition | Useful for operational scenes and embodied planning |
This is a modest action set, but the conceptual move is large. The model is no longer only answering from an image. It is manipulating an intermediate visual workspace.
That is why the “seeing is thinking” frame is accurate here. The paper’s main contribution is not that the model sees images. Many models do. The contribution is that the model treats visual transformation as part of reasoning.
Functional images are not pretty pictures
The paper’s first technical bottleneck is easy to underestimate: generated reasoning images are not ordinary images.
Most image generation systems are optimized for natural-looking images. Omni-R1 needs something stranger: functional image generation. A zoomed crop, a bounding box overlay, a graph node marker, a geometric helper line, or a predicted next scene state may look visually crude, but it has to serve a reasoning purpose.
That distinction matters. A beautiful image can be useless evidence. A crude red box can be excellent evidence.
Omni-R1 therefore does not train the model only to produce fluent multimodal sequences. It tries to stabilize the visual tokens so that the generated intermediate images remain perceptually coherent enough to support downstream reasoning.
The method has two stages.
First, PeSFT, or Perception-Aligned Supervised Fine-Tuning, teaches the model the interleaved format. It uses ordinary cross-entropy over the reasoning trajectory, but adds a perception loss for image-token segments. The paper describes this as aligning hidden states with the geometry of a frozen visual codebook. In practical terms, the authors are trying to prevent image tokens from becoming arbitrary symbolic decorations. The generated visual state should remain visually meaningful.
Second, PeRPO, or Perception-Calibrated Relative Policy Optimization, applies reinforcement learning to long interleaved trajectories. Its reward combines three components:
| Reward component | What it checks | Likely purpose |
|---|---|---|
| Accuracy reward | Whether the final answer matches the ground truth | Main task correctness |
| Format reward | Whether the trajectory is well-formed and parsable | Output discipline |
| Perception reward | Whether intermediate visual generations are perceptually coherent | Stabilizing functional images |
The perception reward is especially important because the final answer alone may not penalize bad intermediate visuals reliably. A model might accidentally answer correctly while producing useless visual evidence. Conversely, a model might learn to satisfy answer-format rewards while letting generated images degrade. PeRPO tries to make the intermediate visual workspace part of optimization, not just a side effect.
This is the paper’s main mechanism: teach the model to reason in an interleaved visual-textual format, then reward not only final correctness but also the stability of the generated visual evidence.
Omni-R1-Zero attacks the annotation bottleneck
The second bottleneck is annotation cost.
Interleaved visual reasoning data is expensive. It is one thing to label the final answer to a visual question. It is another to annotate every intermediate reasoning step, including where to zoom, what to mark, what line to draw, and what intermediate image should appear next. That is not “data labeling.” That is asking humans to behave like patient geometry tutors, visual inspectors, and robotic planners at scale. Naturally, nobody wants to pay for that unless absolutely necessary.
Omni-R1 uses supervised interleaved data in PeSFT. The paper says it samples from Zebra-CoT, an image-text interleaved multimodal reasoning dataset, for that stage. But the more interesting variant is Omni-R1-Zero.
Omni-R1-Zero starts from text-only chain-of-thought seeds and bootstraps step-wise visualizations. For each reasoning step, the base model generates an image, and these synthetic traces are assembled into the same interleaved template. The authors are clear that these traces are not meant to be perfect supervision. They are meant to expose the model to the format and intermediate multimodal states. PeRPO then refines the behavior.
This is a familiar pattern in modern AI research: when direct annotation is expensive, use imperfect synthetic structure to activate a behavior, then use reward-based optimization to shape it. The difference here is that the synthetic structure is not merely text. It is a scaffold for visual reasoning actions.
For business readers, this is probably the most operationally relevant idea in the paper. If visual agents require fully hand-authored visual reasoning traces, adoption will be limited to expensive domains. If models can learn from cheaper text-only reasoning seeds plus synthetic visual steps, the economics improve.
Not magically. But materially.
Omni-Bench measures whether one model can handle several kinds of visual work
The paper introduces Omni-Bench, an 800-sample benchmark designed to test generative multimodal reasoning across four task families:
| Uni-Task | Source examples | What the task stresses |
|---|---|---|
| Natural-Scene Perception | V* | Local evidence, object attributes, visual search |
| Structured-Image | ArxivQA, ChartQA | Charts, figures, mixed text-graphics interpretation |
| Diagrammatic Math | Geometry3K, MathVista | Geometry, diagrams, auxiliary structure |
| Vision-Operational Scenes | ViC-Bench | Visual state transitions and operational planning |
The benchmark also maps these tasks to recurring visual skills: grounding, marking, auxiliary line drawing, and visual prediction.
This benchmark is not large. It has 800 samples, with 300 in Vision-Operational Scenes and smaller slices elsewhere. But its purpose is not to become the final court of multimodal intelligence. Its purpose is to test whether one generative reasoning framework can compose different visual skills across task types.
That design matters because prior interleaved multimodal reasoning methods often specialize around one pattern. A zooming method may help fine-grained visual QA. A visualized path method may help spatial reasoning. Omni-R1 tries to unify several of these behaviors inside one generative paradigm.
The evaluation protocol extracts the final answer and uses a fixed LLM-judge template to compare it against the gold answer, producing a binary correctness decision. The authors describe the judge as a deterministic answer-matching checker rather than an open-ended evaluator. This helps reduce evaluation looseness, but it also means the benchmark primarily scores final-answer correctness, not whether every intermediate generated image is faithful. That distinction will matter later.
The main results show gains, but the backbone matters
On Omni-Bench, Omni-R1 and Omni-R1-Zero generally improve over their corresponding base models. The headline is not “one model crushes everything.” The better reading is more precise: the method produces meaningful improvements within its backbone families, and the Bagel-based Omni-R1 is competitive with strong text-only and tool-based reasoning baselines.
A few numbers anchor the interpretation.
On the Anole-7B backbone, the base model average on Omni-Bench is 0.081. Zebra-CoT improves that to 0.129. Omni-R1 variants reach 0.153, while Omni-R1-Zero-M reaches 0.159. That is almost a doubling over the weak base model in relative terms, but the absolute level remains low. This is not yet a universal visual reasoner; it is a method making a limited backbone behave better.
On the Bagel-7B backbone, the base model average is 0.286. Zebra-CoT reaches 0.333. Omni-R1-M reaches 0.402. That is the strongest average reported in Table 2 and slightly above MM-Eureka’s 0.397 on Qwen-2.5-VL-7B. The comparison is not perfectly clean because the backbones differ, but it does show that the framework can become competitive when placed on a stronger unified multimodal model.
The general benchmark results strengthen the case. On the Anole backbone, the base model average is 22.25 after the paper’s scaling procedure for MME-P and MME-R. Zebra-CoT reaches 38.12. Omni-R1-L reaches 48.29, while Omni-R1-Zero-S reaches 50.19. The Zero variant is especially interesting here: without supervised multimodal traces, it can surpass the supervised Omni-R1 variant on the reported average.
But the table should not be overread. Different metrics are mixed, MME scores are rescaled, and the benchmark suite includes perception, reasoning, hallucination probing, and diagnostic visual pattern tasks. The right conclusion is not “Zero is always better.” It is: synthetic interleaved visual reasoning plus PeRPO can become competitive enough that expensive multimodal trace annotation is not the only path.
That is the business-relevant signal.
The ablation tells us PeRPO is not decorative
The ablation study is small but useful. It evaluates Omni-R1-Zero on Omni-Bench and removes two components: PeRPO and the perception reward.
| Test | Likely purpose | Result pattern | Interpretation |
|---|---|---|---|
| Full Omni-R1-Zero | Main variant | Average 0.159 | Baseline for component analysis |
| Without PeRPO | Ablation | Average drops to 0.113 | RL refinement is a major driver, especially for complex multimodal reasoning |
| Without perception reward | Ablation | Average drops to 0.130 | Perceptual calibration helps, but less than the full PeRPO stage |
The largest drop comes from removing PeRPO. The decline is especially visible in Vision-Operational and Diagrammatic tasks. That makes sense. Those tasks require multi-step structure, not just object recognition. A model must maintain a sequence of visual operations and use them coherently.
Removing the perception reward causes a smaller but consistent degradation. The paper notes a noticeable effect on Natural tasks, suggesting that the perception-calibrated reward helps with visual evidence utilization and training stability.
Here the evidence is not just “we added a clever reward term and performance went up.” The ablation suggests a hierarchy:
- The interleaved format introduces the behavior.
- PeRPO shapes the behavior into useful multi-step reasoning.
- The perception reward improves the quality and coherence of the visual workspace.
That hierarchy is important. It means the visual reasoning traces are not merely a prompt style. They require optimization pressure.
The qualitative cases explain what the numbers cannot
The figures and appendix examples serve a different purpose from the benchmark tables. They are not main quantitative proof. They are behavioral evidence.
Figure examples show the model zooming into a blurred region to identify glasses, drawing a bounding box around a cup handle or graph parameter, marking graph nodes to check connectivity, and predicting a sequence of robot-object interactions. Additional appendix cases show full interleaved trajectories where the model produces intermediate visual evidence before answering.
These examples are useful because they make the mechanism legible. A final accuracy table cannot tell us whether the model actually used a visual operation. A case trajectory can.
Still, qualitative cases should be read carefully. They demonstrate capability, not reliability. A few successful examples do not prove that every generated bounding box is faithful or every visual prediction is causally useful. They show the kind of behavior the framework is designed to elicit.
The t-SNE analysis of generated image patterns is also exploratory rather than decisive. The paper reports that Omni-R1 concentrates into compact modes, while Omni-R1-Zero produces a more dispersed, multi-modal structure; correct instances cluster more tightly than incorrect ones. A reasonable interpretation is that supervised traces push models toward canonical visual operations, while reward-guided synthetic traces permit broader exploration. Interesting, yes. A deployment guarantee, no.
This is where many AI papers quietly smuggle in more certainty than the evidence supports. Omni-R1’s qualitative results are valuable because they show a new interaction pattern. They do not eliminate the need for trace-level verification.
The business value is inspectable work, not prettier reasoning
For enterprise use, the most important implication is not that multimodal models may answer more questions. It is that they may produce intermediate artifacts that can be inspected.
That changes the product design.
A visual QA chatbot gives a final response. A visual workbench gives intermediate views: crops, boxes, highlights, helper lines, predicted states. The difference is operational. A human reviewer can ask: did the model inspect the correct area? Did it mark the right object? Did it infer the next state from the right visual cue? Did it hallucinate a relation that the image does not support?
This is especially relevant in workflows where the cost of a wrong visual answer is not symmetric.
| Workflow | What direct answer systems struggle with | What generative visual reasoning could add | Remaining uncertainty |
|---|---|---|---|
| Document and chart review | Models may cite a conclusion without locating the visual evidence | Zooms, marks, and bounding boxes around relevant cells, labels, or chart regions | The paper does not prove reliability on enterprise document layouts |
| Industrial inspection | A defect label is not enough if the defect region is unclear | Visual localization and annotated intermediate evidence | Fine-grained defect detection requires domain-specific validation |
| Insurance or claims review | Models may accept or reject a claim from weak visual cues | Evidence crops and object markings for human audit | Generated annotations can still be wrong or misleading |
| Robotics planning | Textual action plans may ignore physical visual state | Predicted one-step visual transitions | Simulation fidelity is not established for real robots |
| Design QA | Models may flag issues without showing where | Lines, boxes, and markings on plans or mockups | Complex CAD or engineering constraints are outside the paper’s evidence |
The ROI story, if there is one, is not “replace human visual experts.” That would be the usual software fantasy, now with more rectangles.
The better story is cheaper diagnosis and review. If a model can produce inspectable intermediate visual artifacts, humans can audit faster. Weak answers can be rejected earlier. Edge cases can be routed to specialists with evidence attached. Training data can be collected around failed visual operations rather than only failed final answers.
That is a more credible path from research to operations.
What the paper directly shows versus what Cognaptus infers
It is worth separating the paper’s evidence from business interpretation.
| Layer | What is supported | What should not be claimed |
|---|---|---|
| Paper result | Interleaved visual-text reasoning can improve benchmark performance on Omni-Bench and general multimodal benchmarks | That generated visual traces are always faithful explanations |
| Paper result | PeRPO and perception reward contribute to performance in ablations | That the reward fully solves visual hallucination |
| Paper result | Omni-R1-Zero can perform competitively using bootstrapped synthetic interleaved traces | That human multimodal annotation is unnecessary in high-stakes domains |
| Cognaptus inference | Visual workbench-style agents may be more auditable than answer-only multimodal chatbots | That they are production-ready without trace-level validation |
| Cognaptus inference | Enterprise value may come from faster review and evidence packaging | That final-answer accuracy alone is enough for deployment |
This separation is not academic politeness. It is product hygiene.
A company adopting this pattern should not simply ask whether the final answer accuracy improves. It should ask whether the generated visual operations are correct enough to support a workflow. That requires separate evaluation: region accuracy, annotation faithfulness, visual-state transition validity, reviewer time saved, and failure-mode taxonomy.
The paper provides a promising mechanism. It does not provide a complete enterprise evaluation protocol.
The limitation is not only benchmark size; it is trace trust
The obvious limitation is that Omni-Bench is small. An 800-sample benchmark can be useful for research direction, but it is not enough to characterize behavior across the messiness of real visual work. Enterprise images are full of low-resolution scans, inconsistent layouts, occlusions, cropped screenshots, noisy diagrams, and domain-specific symbols. Reality remains committed to bad formatting. Annoying, but consistent.
The deeper limitation is trace trust.
Omni-R1 generates intermediate visual evidence, but the evaluation still mainly checks final answers. The paper adds perception-related optimization and qualitative demonstrations, but it does not fully solve the question: are the generated visual traces faithful to the reasoning process, or are they plausible-looking artifacts correlated with better answers?
This matters because visual evidence can persuade humans quickly. A wrong bounding box can be more dangerous than no bounding box if it gives a false sense of auditability. The same applies to zoomed crops, marked objects, auxiliary lines, and predicted visual states. Once a system starts drawing, users may assume it knows what it is doing. That assumption should be earned, not granted.
A practical deployment inspired by Omni-R1 would need at least four additional checks:
| Needed check | Why it matters |
|---|---|
| Trace faithfulness evaluation | Confirms whether visual actions genuinely support the final answer |
| Region-level ground truth | Tests whether boxes, marks, and zooms target the right evidence |
| Human review studies | Measures whether intermediate visuals reduce review time or merely look reassuring |
| Domain-specific failure analysis | Identifies where visual actions break under real data conditions |
Without these checks, the system may be visually articulate but operationally fragile.
The larger shift: from multimodal chat to multimodal agency
Omni-R1 sits inside a broader movement from passive multimodal understanding toward active multimodal agency. The model is not just reading the input. It is choosing operations on a visual state.
That difference may sound small until we translate it into product architecture.
A passive model answers: “The object is a plate.”
An active visual reasoning model shows the cup, draws attention to the saucer, zooms into the relevant region, and then answers: “The object holding the coffee drink is a plate.”
A passive model answers: “The graph is connected.”
An active visual reasoning model marks nodes, checks connectivity step by step, and then answers.
A passive model answers: “Move the object into the drawer.”
An active visual reasoning model predicts intermediate visual states along the sequence.
The second form is slower, more complex, and harder to evaluate. It is also closer to how visual work is actually done. People do not solve visual tasks by directly transforming pixels into answers. They inspect, isolate, mark, compare, and simulate. Omni-R1 pushes multimodal AI toward that workflow.
The business lesson is simple: the next useful multimodal systems may not be the ones that talk most fluently about images. They may be the ones that can maintain a visual scratchpad and let humans inspect the scratch marks.
Conclusion: the drawing is the argument
Omni-R1’s most interesting contribution is not a single benchmark score. It is a design hypothesis: multimodal reasoning should include generated visual operations as first-class steps.
That hypothesis is plausible. It matches how humans work with visual evidence. It gives models a structured way to zoom, ground, mark, draw, and predict. It creates a path toward more inspectable AI workflows. It also exposes the hard problem that answer-only benchmarks can hide: visual traces themselves must be evaluated.
For Cognaptus readers, the practical takeaway is not to rush toward “AI that sees.” That phrase is already overworked and under-audited. The better question is whether an AI system can show its visual work in a way that helps a human review, correct, and trust the process.
Seeing is useful. Drawing is better. But only if the drawing is accountable.
Cognaptus: Automate the Present, Incubate the Future.
-
Dongjie Cheng, Yongqi Li, Zhixin Ma, Hongru Cai, Yupeng Hu, Wenjie Wang, Liqiang Nie, and Wenjie Li, “Omni-R1: Towards the Unified Generative Paradigm for Multimodal Reasoning,” arXiv:2601.09536v2, 2026. ↩︎