Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      CodeSOD: A Unique Way to Primary Key

      July 22, 2025

      BrowserStack launches Figma plugin for detecting accessibility issues in design phase

      July 22, 2025

      Parasoft brings agentic AI to service virtualization in latest release

      July 22, 2025

      Node.js vs. Python for Backend: 7 Reasons C-Level Leaders Choose Node.js Talent

      July 21, 2025

      The best CRM software with email marketing in 2025: Expert tested and reviewed

      July 22, 2025

      This multi-port car charger can power 4 gadgets at once – and it’s surprisingly cheap

      July 22, 2025

      I’m a wearables editor and here are the 7 Pixel Watch 4 rumors I’m most curious about

      July 22, 2025

      8 ways I quickly leveled up my Linux skills – and you can too

      July 22, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      The Intersection of Agile and Accessibility – A Series on Designing for Everyone

      July 22, 2025
      Recent

      The Intersection of Agile and Accessibility – A Series on Designing for Everyone

      July 22, 2025

      Zero Trust & Cybersecurity Mesh: Your Org’s Survival Guide

      July 22, 2025

      Execute Ping Commands and Get Back Structured Data in PHP

      July 22, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      A Tomb Raider composer has been jailed — His legacy overshadowed by $75k+ in loan fraud

      July 22, 2025
      Recent

      A Tomb Raider composer has been jailed — His legacy overshadowed by $75k+ in loan fraud

      July 22, 2025

      “I don’t think I changed his mind” — NVIDIA CEO comments on H20 AI GPU sales resuming in China following a meeting with President Trump

      July 22, 2025

      Galaxy Z Fold 7 review: Six years later — Samsung finally cracks the foldable code

      July 22, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Development»Machine Learning»MiMo-VL-7B: A Powerful Vision-Language Model to Enhance General Visual Understanding and Multimodal Reasoning

    MiMo-VL-7B: A Powerful Vision-Language Model to Enhance General Visual Understanding and Multimodal Reasoning

    June 2, 2025

    Vision-language models (VLMs) have become foundational components for multimodal AI systems, enabling autonomous agents to understand visual environments, reason over multimodal content, and interact with both digital and physical worlds. The significance of these capabilities has led to extensive research across architectural designs and training methodologies, resulting in rapid advancements in the field. Researchers from Xiaomi introduce MiMo-VL-7B, a compact yet powerful VLM comprising three key components: a native-resolution Vision Transformer encoder that preserves fine-grained visual details, a Multi-Layer Perceptron projector for efficient cross-modal alignment, and the MiMo-7B language model optimized for complex reasoning tasks.

    MiMo-VL-7B undergoes two sequential training processes. The first process is a four-stage pre-training phase, including projector warmup, vision-language alignment, general multimodal pre-training, and long-context supervised fine-tuning, which consumes 2.4 trillion tokens from curated high-quality datasets. This yields the MiMo-VL-7B-SFT model. The second process is the post-training phase, which introduces Mixed On-policy Reinforcement Learning (MORL), integrating diverse reward signals spanning perception accuracy, visual grounding precision, logical reasoning capabilities, and human preferences. This yields the MiMo-VL-7B-RL model. Key findings reveal that incorporating high-quality, broad-coverage reasoning data from the pre-training stage enhances model performance, while achieving stable simultaneous improvements remains challenging.

    The MiMo-VL-7B architecture contains three components, (a) a Vision Transformer (ViT) for encoding visual inputs such as images and videos, (b) a projector that maps the visual encodings into a latent space aligned with the LLM,  and (c) the LLM itself, which performs textual understanding and reasoning. The Qwen2.5-ViT is adopted as a visual encoder to support native resolution inputs. The LLM backbone with MiMo-7B-Base as its strong reasoning capability, and a randomly initialized Multi-Layer Perceptron (MLP) as the projector are used in the model’s architecture. The model’s pre-training dataset comprises 2.4 trillion tokens, diverse multimodal data, image captions, interleaved data, Optical Character Recognition (OCR) data, grounding data, video content, GUI interactions, reasoning examples, and text-only sequences.

    The post-training phase further enhances MiMo-VL-7B on challenging reasoning tasks and with human preference alignment by utilizing the MORL framework that seamlessly integrates Reinforcement Learning with Verifiable Rewards (RLVR) and RLHF. RLVR utilizes rule-based reward functions for continuous self-improvement, so multiple verifiable reasoning and perception tasks are designed to validate the final answer precisely using predefined rules. RLHF is employed in this verifiable reward framework to address human preference alignment and mitigate undesirable behaviors. Moreover, the MORL is implemented to optimize RLVR and RLHF objectives simultaneously.

    Comprehensive evaluation across 50 tasks demonstrates MiMo-VL-7B’s state-of-the-art performance among open-source models. In general capabilities, the models achieve exceptional results on general vision-language tasks, with MiMo-VL-7B-SFT and MiMo-VL-7B-RL obtaining 64.6% and 66.7% on MMMUval, respectively, outperforming larger models like Gemma 3 27B. For document understanding, MiMo-VL-7B-RL excels with 56.5% on CharXivRQ, significantly exceeding Qwen2.5-VL by 14.0 points and InternVL3 by 18.9 points. In multimodal reasoning tasks, both the RL and SFT models substantially outperform open-source baselines, with MiMo-VL-7B-SFT even surpassing much larger models, including Qwen2.5-VL-72B and QVQ-72B-Preview. The RL variant achieves further improvements, boosting MathVision accuracy from 57.9% to 60.4%.

    MiMo-VL-7B demonstrates exceptional GUI understanding and grounding capabilities, with the RL model outperforming all compared general VLMs and achieving comparable or superior performance to GUI-specialized models on challenging benchmarks like Screenspot-Pro and OSWorld-G. The model achieves the highest Elo rating among all evaluated open-source VLMs, ranking first across models spanning 7B to 72B parameters and closely approaching proprietary models like Claude 3.7 Sonnet. MORL provides a significant 22+ point boost to the SFT model, validating the effectiveness of the training methodology and highlighting the competitive capability of this general-purpose VLM approach.

    In conclusion, researchers introduced MiMo-VL-7B models that achieve state-of-the-art performance through curated, high-quality pre-training datasets and the MORL frameworks. Key development insights include consistent performance gains from incorporating reasoning data in later pre-training stages,  the advantages of on-policy RL over vanilla GRPO, and challenges of task interference when applying MORL across diverse capabilities. The researchers open-source the comprehensive evaluation suite to promote transparency and reproducibility in multimodal research. This work advances capable open-source vision-language models and provides valuable insights for the community.


    Check out the Paper, GitHub Page and Model on Hugging Face. All credit for this research goes to the researchers of this project. Also, feel free to follow us on Twitter and don’t forget to join our 95k+ ML SubReddit and Subscribe to our Newsletter.

    The post MiMo-VL-7B: A Powerful Vision-Language Model to Enhance General Visual Understanding and Multimodal Reasoning appeared first on MarkTechPost.

    Source: Read More 

    Facebook Twitter Reddit Email Copy Link
    Previous ArticleFast-track SOP processing using Amazon Bedrock
    Next Article Conformance Checking at MongoDB: Testing That Our Code Matches Our TLA+ Specs

    Related Posts

    Machine Learning

    How to Evaluate Jailbreak Methods: A Case Study with the StrongREJECT Benchmark

    July 22, 2025
    Machine Learning

    Boolformer: Symbolic Regression of Logic Functions with Transformers

    July 22, 2025
    Leave A Reply Cancel Reply

    For security, use of Google's reCAPTCHA service is required which is subject to the Google Privacy Policy and Terms of Use.

    Continue Reading

    ChatGPT Spots Cancer Missed by Doctors; Woman Says It Saved Her Life

    Artificial Intelligence

    Heard about the 16 billion passwords leak? Here are the facts and how to protect yourself

    News & Updates

    Darcula Adds GenAI to Phishing Toolkit, Lowering the Barrier for Cybercriminals

    Development

    As an SEO beginner, how can I get traffic for the website I’ve created?

    Development

    Highlights

    Linux

    KDE Continue Work on Slick New ‘First Run’ Setup Tool

    June 24, 2025

    Setting up KDE Plasma on a new device will soon be far more engaging, as…

    Boosting team productivity with Amazon Q Business Microsoft 365 integrations for Microsoft 365 Outlook and Word

    May 22, 2025

    Microsoft Removes Password Management from Authenticator App Starting August 2025

    July 1, 2025

    Reducing Barriers Across Industries Through Inclusive Design

    June 23, 2025
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.