Instructions to use litert-community/Ovis2.5-2B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- LiteRT-LM
How to use litert-community/Ovis2.5-2B with LiteRT-LM:
# LiteRT-LM runs on various platforms (Android, iOS, Windows, Linux, macOS, IoT, Web/WASM) # and supports many APIs (C++, Python, Kotlin, Swift, JavaScript, Flutter). # For platform-specific integration guides, please refer to the official developer website: # https://ai.google.dev/edge/litert-lm # To try LiteRT-LM, the easiest way is to use our CLI tool. # 1. Install the LiteRT-LM CLI tool: pip install -U litert-lm # 2. Download and run this model locally: # See: https://ai.google.dev/edge/litert-lm/cli litert-lm run \ --from-huggingface-repo=litert-community/Ovis2.5-2B \ --prompt="Write me a poem"
- LiteRT
How to use litert-community/Ovis2.5-2B with LiteRT:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
Ovis2.5-2B β LiteRT-LM (on-device Vision-Language Model)
AIDC-AI/Ovis2.5-2B converted to the LiteRT-LM
(.litertlm) format for on-device image+text inference with Google's
LiteRT-LM runtime (the engine behind the official
litert-community/* models, and the same runtime that runs litert-community/FastVLM-0.5B).
Ovis2.5 is a SOTA-for-size vision-language model (OpenCompass ~73.9 for the 2B) with a distinctive
structural-embedding vision path: a Siglip2 NaViT encoder feeds a visual tokenizer that turns
each image patch-group into a probability distribution over a 65 536-word visual vocabulary, then
embeds it β giving the language model image tokens that live in the same structured space as text.
The language decoder is Qwen3-1.7B. This bundle runs the whole thing through LiteRT-LM's fast_vlm
multimodal path β give it an image and a question, get a grounded answer, fully on-device.
| File | Ovis2.5-2B.litertlm (~2.15 GB) |
| Vision | Siglip2-NaViT encoder + visual-tokenizer (head β softmax β visual-vocab embedding), int8 weights β single 512Γ512 image β 256 image tokens |
| Decoder | Qwen3-1.7B, int4 weights (symmetric, blockwise-32 + OCTAV optimal-clipping); input embedding INT8 (externalized section) |
| Compute | integer |
| Context (KV cache) | 2048 |
| Image input | resized to 512Γ512 (Siglip normalization is baked into the vision encoder) |
| Base model | AIDC-AI/Ovis2.5-2B (Apache-2.0) |
Quality
The vision tower converts bit-faithfully to the reference β float CPU-parity end-to-end
corr β 1.0 (max abs diff 3e-6), with no FLEX/CUSTOM fallback ops; int8 vision weights keep
end-to-end corr **0.99**. The Qwen3-1.7B decoder uses the same blockwise-32 + OCTAV int4 recipe
that scores 90.7% GSM8K on the sibling
Ministral-3-3B-Reasoning build
and shipped the InternVL3.5-2B VLM.
On a reference deployed-path eager run (fixed-512 vision β 256 tokens β Qwen3-1.7B) the model
describes real photos accurately and in detail (e.g. a black-and-white Ansel-Adams-style landscape β
"snow-capped sharp mountain peaks β¦ a river winding through the valley β¦ cloud layers β¦ black-and-white
contrast with depth of field").
Reasoning VLM. Ovis2.5 is a thinking model: it may emit a
<think>β¦</think>block before its final answer (this matches the base model). Allow enough max-tokens (β₯1024) for the answer to follow.
On-device performance: decode/load are expected to be in line with the InternVL3.5-2B build on the same runtime (~20 tok/s CPU, ~45 tok/s GPU on iPhone 17 Pro for single-image VQA). Independent on-device measurement for this specific build is recommended before quoting exact numbers.
Run on iPhone / macOS
Use the LiteRT-LM Swift runtime (swift-litert-lm / the
LiteRTDemo sample). Load Ovis2.5-2B.litertlm with the image (vision) tower enabled (modalities
[.vision] / Modality.textImage), attach a photo, and ask a question.
Note for app integrators: this is a vision-only bundle (no audio tower). Bring up the engine with the vision modality only β requesting the audio tower (
.all) on a bundle with no audio section fails at session creation.
Run on Android β Google AI Edge Gallery
Install a recent Google AI Edge Gallery (1.0.16+ can
import .litertlm directly from Hugging Face), download Ovis2.5-2B.litertlm, import it (tap +),
attach an image and ask. The bundle already carries the tokenizer and prompt template.
Conversion notes
- LiteRT-LM
fast_vlmbundle: VISION_ENCODER ([1,512,512,3]β[1,256,4608]) + VISION_ADAPTER ([1,256,4608]β[1,256,2048], matched to the Qwen3-1.7B hidden size) + single-token EMBEDDER + PREFILL_DECODE (embeddings-input). - The NaViT static rewrite is the enabling trick. Ovis's Siglip2-NaViT vision tower is dynamic
resolution (
.item()/.tolist()/grid-loops/argsort) and does nottorch.export. Because the config'sfullatt_block_indexes=Nonemakes every layer use full attention, the window-reorder is a mathematical no-op β so it can be dropped and replaced with a precomputed position embedding + rotary and a single full attention over the fixed 512Γ512 grid (1024 patches). Static-vs-original feature corr 0.99999964. - The encoder bakes Siglip normalization (
(x-0.5)/0.5, the runtime feeds a[0,1]NHWC image) and does patchify GPU-safe: the patch-embedding Conv2d is applied to the whole image (raster order), then a single gather reorders patches into Ovis's hidden-stride "merge" order β all reshapes β€4D, no>5Dop that GPU delegates reject. - The adapter is Ovis's visual-tokenizer tail:
head(Linear 4608β65532 + LayerNorm) β softmax β visual-vocabulary embedding (vte, 65536Γ2048). The 256-token bundle carries the visual atoms; Ovis's two learned image-boundary indicator embeddings are omitted (thefast_vlmpath splices only the atom embeddings) β verified to stay coherent in eager. - Decoder extracted from the Ovis2_5 wrapper as a standalone
Qwen3ForCausalLMand exported with cache β€ base max so base RoPE is exact.
License
Apache-2.0, inherited from the base model AIDC-AI/Ovis2.5-2B.
- Downloads last month
- 21
Model tree for litert-community/Ovis2.5-2B
Base model
ATH-MaaS/Ovis2.5-2B