LLaVA Microsoft + UW Released 2023-12 visionmultimodalimage

LLaVA

LLaVA (Large Language and Vision Assistant). Open multimodal that combines a vision encoder with Vicuna/Llama/Mistral.

Best for open multimodal chat
Sizes 7B · 13B · 34B
Context 4K
License Apache 2.0
Min VRAM (default size, Q4) 6 GB
Rec VRAM 12 GB

What is LLaVA?

LLaVA is Microsoft + UW's open-weights language model with vision support. Released in 2023-12, it ships in 3 sizes (7B, 13B, 34B) and is licensed Apache 2.0. The most popular use case is open multimodal chat.

VRAM and hardware

The smallest 7B size needs at least 6 GB VRAM; the largest 34B needs around 6 GB.

Size Min VRAM (Q4_K_M) Recommended VRAM Tokens/sec on 3090
7B 6 GB 9 GB ~24 tok/s
13B 10 GB 15 GB ~21 tok/s
34B 22 GB 33 GB ~17 tok/s

How to run LLaVA locally

Option 1: Ollama (simplest)

ollama pull llava
ollama run llava

Option 2: Mullama (production)

mullama pull llava
mullama run llava

Option 3: llama.cpp (CLI)

# Download a GGUF from Hugging Face (search "llava gguf")
./llama-cli -m llava.Q4_K_M.gguf -p "Hello, AI!"

Option 4: Python with Mullama or llama-cpp-python

from mullama import Model, Context
model = Model.load("llava.Q4_K_M.gguf", n_gpu_layers=99)
ctx = Context(model, n_ctx=4096)
print(ctx.generate("Hello, AI!", 256))

What you can build with LLaVA

  • vision Q&A
  • image chat
  • doc understanding

Hardware it fits on

  • Apple Silicon (8GB): 7B in MLX
  • Apple Silicon (16GB): 13B in MLX
  • Apple Silicon (32GB): 34B in MLX or GGUF
  • Apple Silicon (64GB+): 34B in MLX
  • RTX 3090 (24GB): 34B at Q4_K_M
  • RTX 4090 (24GB): same as 3090, ~30% faster
  • RTX 5090 (32GB): 34B at Q8_0
  • 2× RTX 6000 Ada (96GB total): 34B at Q4_K_M

Related models in the LLaVA family

This is the only LLaVA-family model in the catalog right now.

Other models you might consider

  • Llama 3.1 (Meta) — 8B, general-purpose chat, agentic workflows, code
  • Llama 3.2 (Meta) — 1B, low-end hardware, mobile, edge deployment
  • Llama 3.2 Vision (Meta) — 11B, vision + chat on desktop GPUs
  • Llama 3.3 (Meta) — 70B, best-in-class 70B for desktops
  • Llama 4 (Meta) — Scout 17B (109B MoE), vision + long context (10M tokens)
  • Qwen 2.5 (Alibaba) — 0.5B, strongest 7B-32B on consumer hardware