Model reference · open weights

Sa2VA-Qwen3-VL

Available as managed deployment LLMs ByteDance Vision + text 2 variants 1k dl/mo

Sa2VA-Qwen3-VL is an open-weight language model from ByteDance. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.

Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.

What it is

MakerByteDance
TypeLanguage models
TaskVision + text
Parameters (lead)5.1B
Runs withtransformers
Based onOpenGVLab/InternVL3-8B
Released2025-10-21
Popularity1k downloads / month
LicenceOpen weights

About

What Sa2VA-Qwen3-VL is

[📂 GitHub] [📜 Sa2VA paper] [🚀 Quick Start]

Introduction

Sa2VA is an MLLM capable of question answering, visual prompt understanding, and dense object segmentation at both image and video levels. It achieves comparable performance to SOTA MLLMs Qwen2.5-VL and InternVL3 on question-answering benchmarks. Additionally, Sa2VA possesses the visual prompt understanding and dense object segmentation capabilities that SOTA MLLMs Qwen2.5-VL and InternVL3 lack. Sa2VA achieves SOTA performance on both image and video grounding and segmentation benchmarks.

Sa2VA Family

We built the Sa2VA series based on Qwen2.5/3-VL and InternVL2.5/3. In the following table, we provide some Sa2VA models built on Qwen2.5/3-VL and InternVL3.

Model NameBase MLLMLanguage PartHF Link
Sa2VA-InternVL3-2BInternVL3-2BQwen2.5-1.5B🤗 link
Sa2VA-InternVL3-8BInternVL3-8BQwen2.5-7B🤗 link
Sa2VA-InternVL3-14BInternVL3-14BQwen2.5-14B🤗 link
Sa2VA-Qwen2_5-VL-3BQwen2.5-VL-3B-InstructQwen2.5-3B🤗 link
Sa2VA-Qwen2_5-VL-7BQwen2.5-VL-7B-InstructQwen2.5-7B🤗 link
Sa2VA-Qwen3-VL-4BQwen3-VL-4B-InstructQwen3-4B🤗 link

Sa2VA Performance

Model NameMMEMMBenchRefCOCORefCOCO+RefCOCOgMeVIS (val_u)DAVIS
Sa2VA-InternVL3-2B1631/55979.881.475.780.353.974.5
Sa2VA-InternVL3-8B1743/63383.083.378.981.856.476.3
Sa2VA-InternVL3-14B1746/72484.383.679.983.659.276.6
Sa2VA-Qwen2_5-VL-3B1533/57278.479.674.077.151.673.4
Sa2VA-Qwen2_5-VL-7B1552/67684.582.477.581.556.479.4
Sa2VA-Qwen3-VL-4B1660/65586.381.777.480.057.175.9

Quick Start

We provide an example code to run Sa2VA using transformers.

import torch
from transformers import AutoProcessor, AutoModel
from PIL import Image
import numpy as np
import os

# load the model and processor
path = "ByteDance/Sa2VA-Qwen3-VL-4B"
model = AutoModel.from_pretrained(
    path,
    torch_dtype=torch.bfloat16,
    low_cpu_mem_usage=True,
    use_flash_attn=True,
    trust_remote_code=True).eval().cuda()
processor = AutoProcessor.from_pretrained(path, trust_remote_code=True, use_fast=False)

# for image chat
image_path = "/PATH/TO/IMAGE"
text_prompts = "Please describe the image."
image = Image.open(image_path).convert('RGB')
input_dict = {
    'image': image,
    'text': text_prompts,
    'past_text': '',
    'mask_prompts': None,
    'processor': processor,
    }
return_dict = model.predict_forward(**input_dict)
answer = return_dict["prediction"] # the text format answer

# for image chat with segmentation output
image_path = "/PATH/TO/IMAGE"
text_prompts = "Could you please give me a brief description of the image? Please respond with interleaved segmentation masks for the corresponding parts of the answer."
image = Image.open(image_path).convert('RGB')
input_dict = {
    'image': image,
    'text': text_prompts,
    'past_text': '',
    'mask_prompts': None,
    'processor': processor,
    }
return_dict = model.predict_forward(**input_dict)
answer = return_dict["prediction"] # the text format answer
masks = return_dict['prediction_masks']  # segmentation masks, list(np.array(1, h, w), ...)

# for chat with visual prompt (mask format) input
mask_prompts = np.load('/PATH/TO/pred_masks.npy') # np.array(n_prompts, h, w)
image_path = "/PATH/TO/IMAGE"
text_prompts = "Can you provide me with a detailed description of the region in the picture marked by region1."
image = Image.open(image_path).convert('RGB')
input_dict = {
    'image': image,
    'text': text_prompts,
    'past_text': '',
    'mask_prompts': mask_prompts,
    'processor': processor,
    }
return_dict = model.predict_forward(**input_dict)
answer = return_dict["prediction"] # the text format answer

# for video chat
video_folder = "/PATH/TO/VIDEO_FOLDER"
images_paths = os.listdir(video_folder)
images_paths = [os.path.join(video_folder, image_path) for image_name in images_paths]
if len(images_paths) > 5:  # uniformly sample 5 frames
    step = (len(images_paths) - 1) // (5 - 1)
    images_paths = [images_paths[0]] + images_paths[1:-1][::step][1:] + [images_paths[-1]]
text_prompts = "Please describe the video."
input_dict = {
    'video': images_paths,
    'text': text_prompts,
    'past_tex

From the published model card. Full card on the HuggingFace links in the sidebar.

Using it via the API

Call it like any OpenAI endpoint

Once AxForge deploys sa2va-qwen3-vl for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (sa2va-qwen3-vl below is illustrative; you get the exact model name on deployment.)

$ curl -sS https://api.axforge.ai/v1/chat/completions \
  -H "Authorization: Bearer $AXFORGE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"sa2va-qwen3-vl","messages":[{"role":"user","content":"Hello"}]}'

Create an account — your API key is available in the console. 5M tokens/month currently included with every new account at launch.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms