model releaseApple

Apple Releases LensVLM-9B, a 9B Vision-Language Model That Selectively Decompresses Text Images

TL;DR

Apple has released LensVLM-9B, a 9-billion-parameter vision-language model fine-tuned from Qwen3.5-9B-Base that processes documents as compressed images, selectively expanding only relevant pages to full resolution. The model supports 5x, 10x, and 15x compression ratios and is available under Apple's Machine Learning Research Model License.

2 min read
0

Apple Releases LensVLM-9B

Apple has published LensVLM-9B, a 9-billion-parameter vision-language model designed to process long documents by scanning compressed image representations of text and selectively expanding only the sections deemed relevant to a query.

The model is a fine-tune of Alibaba's Qwen3.5-9B-Base, adapted by Apple's machine learning research team. Rather than ingesting raw text tokens or full-resolution page images, LensVLM first views documents as compressed visual representations, then uses learned tools to selectively "uncompress" specific pages back to their original form when the model determines they're needed to answer a question.

According to Apple, the model supports three compression ratios — 5x, 10x, and 15x — allowing users to trade off between processing efficiency and detail retention. The approach is detailed in an accompanying paper, "LensVLM: Selective Context Expansion for Compressed Visual Representation of Text" (arXiv:2605.07019), authored by a team including Roy Xie, Dan Friedman, Donghan Yu, and others at Apple.

What's confirmed

  • Parameters: 9 billion
  • Base model: Qwen/Qwen3.5-9B-Base
  • Format: Safetensors, BF16 tensor type, includes a chat template
  • Task category: Image-Text-to-Text
  • Compression modes: 5x, 10x, 15x (user-selectable)
  • Downloads: 1,432 in the past month on Hugging Face
  • Quantized variants: 9 additional quantized models available

Apple has not disclosed a context window size, benchmark scores, or pricing for LensVLM-9B. The model is not currently deployed by any inference provider on Hugging Face, meaning developers must run it themselves via the accompanying GitHub repository (apple-aiml-research/ml-lensvlm).

Licensing

The model weights, including Apple's modifications to the underlying Qwen architecture, are released under the Apple Machine Learning Research Model License — a research-use license rather than a permissive open-source license. The accompanying inference code is distributed separately under the Apple Sample Code License. This means commercial deployment terms differ from typical open-weight releases and developers should review both licenses before production use.

Usage

Apple provides a demo script for running inference against custom documents:

python demo.py --model apple/LensVLM-9B --text_file document.txt --question "What is the main finding?" --compression 10x

Full setup instructions, data preparation steps, and evaluation scripts are available in the GitHub repository's README.

What this means

LensVLM targets a specific bottleneck in document AI: processing long text-heavy documents without paying the full token or compute cost of high-resolution vision encoding for every page. By compressing documents into images and selectively expanding only relevant sections, Apple claims to reduce the computational overhead typically required for long-document understanding — though no efficiency or accuracy benchmarks have been published to substantiate the tradeoffs at each compression level.

The research-only license signals this is an academic release rather than a product-ready model for Apple's consumer stack. Builders evaluating it should treat the lack of disclosed context window and benchmark data as a gap to independently verify before adopting the approach for retrieval-augmented or long-document pipelines.

Related Articles

model release

Black Forest Labs Releases FLUX 3 Action, a 7B Open-Weights World Action Model, Claims Top RoboLab Benchmark Score

Black Forest Labs has released FLUX 3 Action, a 7B parameter open-weights World Action Model. The company claims it achieves first place on the RoboLab benchmark, though independent verification is pending.

model release

Alibaba Launches Qwen-Audio-3.1, Cuts AI Audio API Prices by Up to 95 Percent

Alibaba's Qwen team has released Qwen-Audio-3.1, a five-model lineup covering speech recognition, text-to-speech, and real-time voice interaction. Alongside the release, Alibaba cut API pricing by up to 95 percent for ASR, 85 percent for real-time models, and 70 percent for TTS.

model release

Qwen3.8 Omni Flash: Alibaba's First Agentic Omni-Modal Model Adds Native Audio-Video Understanding, 1M Context

Alibaba's Qwen team has released Qwen3.8 Omni Flash, described as the first Qwen model built around agentic capabilities with native audio-video understanding. It ships with a 1M-token context window and support for two- and four-channel spatial audio.

model release

Meta Releases Muse Glimmer 30B, an Open-Weight Agentic Model for Consumer Hardware

Meta Superintelligence Labs has released Muse Glimmer 30B, a dense open-weight model distilled from its larger Muse Spark system and tuned for agentic workflows on consumer hardware. The model supports 131K context, image understanding, and over 100 languages at $0.30/$1.10 per 1M input/output tokens.

Comments

Loading...