LLaVA-OneVision-0.5B — LiteRT-LM (on-device Vision-Language Model)
llava-hf/llava-onevision-qwen2-0.5b-ov-hf
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).
LLaVA-OneVision-0.5B is a compact vision-language model from the LLaVA team: a SigLIP vision
encoder + MLP projector feeding a Qwen2-0.5B language decoder. This 829 MB bundle runs it
through LiteRT-LM's fast_vlm multimodal path — give it an image and a question, get a grounded
answer, fully offline.
| | |
|---|---|
| File | LLaVA-OneVision-0.5B.litertlm (~829 MB) |
| Vision | SigLIP encoder (384×384, 729 patches, no CLS) + MLP projector, int8 → 730 image tokens (729 + an image_newline) |
| Decoder | Qwen2-0.5B (896-dim, 24 layers), int4 weights (symmetric, blockwise-32 + OCTAV); tied embedding INT8 (externalized) |
| Compute | integer |
| Context (KV cache) | 2048 |
| Image input | resized to 384×384 (OpenAI-CLIP normalization baked into the vision encoder) |
| Base model | llava-hf/llava-onevision-qwen2-0.5b-ov-hf |
How to use
1. Install the runtime
pip install litert-lm
2. Run it in one command — this downloads the bundle, encodes your image and answers:
litert-lm run --from-huggingface-repo litert-community/LLaVA-OneVision-0.5B LLaVA-OneVision-0.5B.litertlm \
--attachment photo.jpg \
--prompt "Describe this image in one sentence."
On the COCO sample image huggingface/documentation-images/coco_sample.png (two tabby cats on a pink blanket, remote controls beside them) this prints:
The image is a digital image of a cat sleeping on a pinkish-red surface.
Drop --prompt for an interactive chat, and pass --attachment more than once for several images. litert-lm serve exposes the same bundle as a local OpenAI-compatible API. The same file runs on macOS, Linux and Windows.
Performance
litert-lm benchmark (litert-lm 0.15.0) on an Apple M4 Max, -p 256 -d 256 --runs 3 (the tool averages three iterations), max-num-tokens 4096, warm-up run discarded, otherwise idle machine. These figures cover the text path; the vision encoder runs once per image and is not included.
| Device | Backend | Prefill (256) | Decode | TTFT |
|---|---|---|---|---|
| Apple M4 Max (macOS) | CPU | 955 tok/s | 113.7 tok/s | 0.31 s |
| Apple M4 Max (macOS) | GPU (Metal) | 7030 tok/s | 239.3 tok/s | 0.04 s |
Every desktop backend listed above was checked by actually generating a caption on it, not just by reading the benchmark tool's output.
Accuracy note
Single-image VQA produces coherent, image-grounded answers (CPU-verified; the SigLIP vision tower
converts bit-faithfully to the reference, float CPU-parity corr ≈ 1.0).
Galaxy S26 — GPU backend
The published bundle runs on the Android GPU backend and generates.
| file | GPU backend | delegation | peak |
|---|---|---|---:|
| LLaVA-OneVision-0.5B.litertlm | runs | 3098 / 3098 ops across 3 subgraphs on LiteRT GPU | 441 MB |
Measured on a Samsung Galaxy S26 (SM-S942Q / SM8850, Android 16) with litert_lm_advanced_main from litert-lm 0.16.0, --backend=gpu --sampler_backend=cpu, prompt What is the capital of France?. Peak is the process high-water mark (VmHWM) sampled during that same run. Gated 2026-08-25.
The op counts above are the LiteRT GPU partitions. XNNPACK additionally takes 1 of the 4 nodes in main; the runtime accepts that split.
The gate prompt carries no image, so this covers engine creation and the text path. The vision path on the GPU is not measured here.
No speed rows, on purpose. On this handset the GPU backend wins prefill and does not win decode, so a GPU throughput figure only means something beside a CPU row from the same handset, and no S26 CPU row exists for this model yet.
GPU wiring, including the Gallery import toggle: GPU guide.
⚠️ Best for single-image VQA — one image per conversation
Ask about one image per chat. This 0.5B model with 730 image tokens per image becomes unreliable
when a second image is added to the same conversation (the answer truncates) — start a **new
conversation** for a different image. Single-image VQA, the primary use case, works well.
Run on iPhone / macOS
Use the LiteRT-LM Swift runtime (swift-litert-lm /
the LiteRTDemo sample). Load LLaVA-OneVision-0.5B.litertlm with the vision tower enabled
(modalities Modality.textImage / [.vision] — a vision-only bundle, no audio tower), attach a photo,
and ask a question.
Run on Android — Google AI Edge Gallery
Update (July 2026): Google AI Edge Gallery v1.0.16+ can import litert-lm models directly from Hugging Face inside the app (tap +) — no computer or adb needed. The manual steps below are only required on older builds or for sideloading a local file.
Run this model with image input in the official
Google AI Edge Gallery app — no custom app needed
(the bundle carries the tokenizer, chat template, and image preprocessing config):
1. Push the bundle onto the phone (or download it there directly from this repo):
adb push LLaVA-OneVision-0.5B.litertlm /sdcard/Download/
2. Open the Gallery app, tap the + icon (bottom-right) and pick LLaVA-OneVision-0.5B.litertlm in the file picker.
3. In the Import Model dialog, check "Support image" (required for image input), pick GPU (fast) or CPU, then tap Import.
4. Open the Ask Image task, choose the imported model, attach a photo, and ask.
Tip: ask about one image per conversation (start a new chat for a different image) — this 0.5B model is single-image only.
Run on desktop (LiteRT-LM CLI)
The same .litertlm bundle runs on macOS / Linux / Windows with the official
LiteRT-LM CLI — including as a
local OpenAI-compatible API server:
pip install litert-lm
litert-lm import --from-huggingface-repo litert-community/LLaVA-OneVision-0.5B LLaVA-OneVision-0.5B.litertlm llava-onevision-0.5b
litert-lm run llava-onevision-0.5b # interactive chat in the terminal
litert-lm serve # local OpenAI-compatible API server
Conversion notes
- LiteRT-LM
fast_vlmbundle: VISION_ENCODER ([1,384,384,3]→[1,729,1152], SigLIP) + VISION_ADAPTER
([1,729,1152]→[1,730,896], projector + the learned image_newline token) + single-token EMBEDDER
- PREFILL_DECODE (embeddings-input).
- The vision encoder bakes OpenAI-CLIP normalization + the NCHW transpose into the graph; the single
base-resolution (no-anyres) path is used so the image always maps to a fixed 730 soft tokens.
- Decoder exported with externalized (tied) embedder.
2026-08-28 — start_token fix (weights unchanged)
The bundle's LlmMetadata start_token held the literal string "None". This tokenizer has no BOS, and the LiteRT-LM engine resolved that string to a real vocabulary token — so every prompt began with the word None, which the model was never trained on. The start token has been removed.
Metadata-only change: every section of the bundle except the LlmMetadata block is byte-identical to the previous file (verified by sha256 per section), so the weights, the graph and the tokenizer are unchanged and the speed and memory numbers on this card still describe exactly this file — only the file's own sha256 differs. What changed is the input: the token stream the model reads for a given conversation can differ from the previous file's, and it now matches this model's own reference chat stream. Greedy decoding can turn on a single token, so an individual answer can differ from the previous file in either direction. Unless a row says otherwise, the accuracy figures on this card were measured on the previous file and have not been re-measured on this one. If you downloaded before 2026-08-28, re-download.
2026-08-29 — default system prompt restored (weights unchanged)
The upstream chat template emits a default system turn whenever the caller sends no system message — for this model: You are a helpful assistant.. The converter's template probe renders the template with a system message already present, so that block was never seen and never reached the bundle: with no system message the model was running without the default system turn it was tuned with. The chat template in LLaVA-OneVision-0.5B.litertlm now emits the block exactly once when no system message is given. In LLaVA-OneVision-0.5B.litertlm, the block is not emitted when you pass a system message. The restored block adds 11 prefill tokens to a conversation that sends no system message, so time-to-first-token grows by that much; per-token speed is unchanged.
Metadata-only change: every section of the bundle except the LlmMetadata block is byte-identical to the previous file (verified by sha256 per section), so the weights, the graph and the tokenizer are unchanged and the speed and memory numbers on this card still describe exactly this file per token — only the file's own sha256 differs. What changed is the input: with no system message, the prompt now renders byte-identical to the upstream chat template's output, verified on the LiteRT-LM runtime. A system message you pass yourself renders as before. Greedy decoding can turn on a single token, so an individual answer can differ from the previous file. Unless a row says otherwise, the accuracy figures on this card were measured on the previous file and have not been re-measured on this one. If you downloaded before 2026-08-29, re-download.
2026-08-30 — tokenizer section replaced (weights unchanged)
The tokenizer in LLaVA-OneVision-0.5B.litertlm was a SentencePiece conversion of the model's BPE tokenizer, and the conversion lost the byte-level semantics: a standalone accented letter or symbol (é, ñ, ü, °, ·, …) was encoded to the id of a single-byte token instead of the token the upstream tokenizer uses, and any character without a whole-character vocabulary entry (emoji, most of Latin Extended-A) became the token the conversion had reused as UNK — the end-of-text token for this vocabulary. LLaVA-OneVision-0.5B.litertlm now embeds the upstream tokenizer.json (the same HF tokenizer path most bundles in this collection use).
Tokenizer-only change: every section of the bundle except the tokenizer is byte-identical to the previous file (verified by sha256 per section), so the weights, the graph and the chat template are unchanged and the speed and memory numbers on this card still describe this file per token — only the file's own sha256 differs. Verified on the LiteRT-LM runtime: the default turn, 7 probe strings, the 223 standalone characters U+00A1–U+017F and every special token now tokenize identically to the upstream tokenizer, and the four ASCII-only test questions answer byte-identically to the previous file (same ids in, same tokens out). Prompts containing accented letters, symbols or emoji reach the model differently from before, so individual answers to such prompts can change. Unless a row says otherwise, the accuracy figures on this card were measured on the previous file, and any on-device rows were measured on the previous file too — the on-device gate has not been re-run on this one (the runtime's tokenizer code is the same on macOS and on device; the weights and graph are byte-identical). If you downloaded before 2026-08-30, re-download.
2026-08-31 — chat template fix: history turns with role 'assistant' (metadata-only, weights unchanged)
The chat template in LLaVA-OneVision-0.5B.litertlm matched history turns only on role 'model', so a conversation created through the Conversation API with the standard role 'assistant' (for example create_conversation(messages=[...]) restoring a chat) silently dropped every assistant turn from the rendered prompt — the model saw consecutive user turns with its own replies gone. The template's role conditions now also accept 'assistant'. The engine's own send_message flow was never affected.
Template-only change: every section of the bundle except the metadata is byte-identical to the previous file (verified by per-section sha256), and single-turn renders, token ids, prefill counts and greedy answers are unchanged (verified on the LiteRT-LM runtime), so the numbers on this card still describe this file — only the file's own sha256 differs. Re-download only matters if you inject conversation history with role 'assistant'. Details: google-ai-edge/LiteRT-LM#3417 (https://github.com/google-ai-edge/LiteRT-LM/issues/3417).