CoolFace
Modelpublic

OpenLLM-Korea/VARCO-VISION-2.0-1.7B

sourceHugging Facecc-by-nc-4.0updated 1y agoView on Hugging Face
0likes
Model Card

VARCO-VISION-2.0-1.7B

Introduction

VARCO-VISION-2.0 is a multimodal AI model capable of understanding both images and text to answer user queries. It supports multi-image inputs, enabling effective processing of complex content such as documents, tables, and charts. The model demonstrates strong comprehension in both Korean and English, with significantly improved text generation capabilities and a deeper understanding of Korean cultural context. Compared to its predecessor, performance has been notably enhanced across various benchmarks, and its usability in real-world scenarios—such as everyday Q&A and information summarization—has also improved.

In addition to the 14B full-scale model, a lightweight 1.7B version is available for on-device use, making it accessible on personal devices such as smartphones and PCs. VARCO-VISION-2.0 is a powerful open-source AI model built for Korean users and is freely available for a wide range of applications.

🚨News🎙️

  • —👀 We are going to release VARCO-VISION-2.0-1.7B-OCR soon!
  • —👀 We are going to release VARCO-VISION-2.0-1.7B soon!
  • —📰 2025-07-16: We released VARCO-VISION-2.0-14B at link
  • —📰 2025-07-16: We released GME-VARCO-VISION-Embedding at link

Key Features

  • —Multi-image Understanding: Newly added support for multi-image inputs enables the model to analyze multiple images simultaneously and make more holistic and context-aware decisions.
  • —Korean Language Specialization: The model is further specialized for Korean, with a deeper understanding of Korean language, context, and culture. Korean text generation has been significantly improved, resulting in more natural, fluent, and accurate responses.
  • —OCR with Text Localization: Unlike typical models that only recognize and generate text from images, VARCO-VISION-2.0 can also identify the position of the text and provide bounding boxes around it. This makes it especially useful for document understanding, signage interpretation, and structured visual data.
  • —Enhanced Safety: Improved robustness and filtering to ensure safer handling of harmful or sexually explicit content.

<div align="center"> <img src="./Gimbap_Example-1-20250709-032708.png" width="100%" /> </div>

VARCO-VISION-2.0 Family

Model NameBase Models (Vision / Language)HF Link
VARCO-VISION-2.0-1.7Bsiglip2-so400m-patch16-384 / Qwen3-1.7Blink
VARCO-VISION-2.0-14Bsiglip2-so400m-patch16-384 / Qwen3-14B link
VARCO-VISION-2.0-1.7B-OCRsiglip2-so400m-patch16-384 / Qwen3-1.7Blink
GME-VARCO-VISION-EmbeddingQwen2-VL-7B-Instructlink

Model Architecture

VARCO-VISION-2.0 follows the architecture of LLaVA-OneVision.

Evaluation

We adopted benchmark scores directly from OpenVLM Leaderboard where available, and conducted our own evaluations for benchmarks not included in OpenVLM Leaderboard, comparing results against various open-source models to provide a fair and comprehensive evaluation. Please note that for certain benchmarks involving LLM-based evaluation (e.g., LLaVABench), results may not be exactly reproducible due to variations in the underlying LLM behavior.

English Benchmark

BenchmarkInternVL3-14BOvis2-16BQwen2.5-VL-7BVARCO-VISION-2.0-14B
MMStar68.967.264.164.8
SEEDBench_IMG77.577.777.078.3
LLaVABench84.493.091.090.0
OCRBench877879888863

Korean Benchmark

BenchmarkInternVL3-14BOvis2-16BQwen2.5-VL-7BVARCO-VISION-2.0-14B
K-MMStar64.929.749.363.3
K-SEED78.273.275.777.4
K-LLaVABench80.986.394.195.1
K-DTCBench87.981.782.179.6

Korean Cultural Benchmark

BenchmarkInternVL3-14BOvis2-16BQwen2.5-VL-7BVARCO-VISION-2.0-14B
K-Viscuit71.777.070.972.9
PangeaBench (ko)77.276.976.675.2

Text-only Benchmark

BenchmarkInternVL3-14BOvis2-16BQwen2.5-VL-7BVARCO-VISION-2.0-14B
MMLU78.578.44.677.7
MT-Bench8.938.598.078.88
KMMLU51.449.339.657.4
KoMT-Bench7.017.916.847.95
LogicKor7.007.946.557.86

Note: Some models show unusually low performance on the MMLU benchmark. This is primarily due to their failure to correctly follow the expected output format when only few-shot exemplars are provided in the prompts. Please take this into consideration when interpreting the results.

OCR Benchmark

BenchmarkPaddleOCRVARCO-VISION-2.0-14B
CORD91.493.3
ICDAR201392.093.2
ICDAR201573.782.7

Usage

To use this model, we recommend installing transformers version 4.53.1 or higher. While it may work with earlier versions, using 4.53.1 or above is strongly recommended, especially to ensure optimal performance for the multi-image feature.

The basic usage is identical to LLaVA-OneVision:

python
import requests
from PIL import Image
import torch
from transformers import AutoProcessor, LlavaOnevisionForConditionalGeneration

model_name = "NCSOFT/VARCO-VISION-2.0-14B"
model = LlavaOnevisionForConditionalGeneration.from_pretrained(
    model_name,
    torch_dtype=torch.float16,
    attn_implementation="sdpa",
    device_map="auto",
)
processor = AutoProcessor.from_pretrained(model_name)

conversation_1 = [
    {
        "role": "user",
        "content": [
            {"type": "image", "url": "https://www.ilankelman.org/stopsigns/australia.jpg"},
            {"type": "text", "text": "What is shown in this image?"},
            ],
    },
    {
        "role": "assistant",
        "content": [
            {"type": "text", "text": "There is a red stop sign in the image."},
            ],
    },
    {
        "role": "user",
        "content": [
            {"type": "image", "url": "http://images.cocodataset.org/val2017/000000039769.jpg"},
            {"type": "text", "text": "What about this image? How many cats do you see?"},
            ],
    },
]
conversation_2 = [
    {
        "role": "user",
        "content": [
            {"type": "image", "url": "https://huggingface.co/microsoft/kosmos-2-patch14-224/resolve/main/snowman.jpg"},
            {"type": "text", "text": "이 이미지에는 무엇이 보이나요?"},
            ],
    },
]

inputs = processor.apply_chat_template(
    [conversation_1, conversation_2],
    add_generation_prompt=True,
    tokenize=True,
    return_dict=True,
    padding=True,
    return_tensors="pt"
).to(model.device, torch.float16)

generate_ids = model.generate(**inputs, max_new_tokens=1024, do_sample=False)
outputs = processor.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)
print(outputs)

The following shows the input required for using OCR with text localization, along with the corresponding output:

python
# INPUT
image_file = "./assets/ocr.jpg"
raw_image = Image.open(image_file)
conversation = [
    {
        "role": "user",
        "content": [
            {"type": "text", "text": ""},
            {"type": "image"},
        ],
    },
]

# OUTPUT
"""
<char>백범로</char><bbox>0.172, 0.266, 0.328, 0.341</bbox>
<char>124번길</char><bbox>0.347, 0.266, 0.512, 0.341</bbox>
<char>Baekbeom-ro</char><bbox>0.171, 0.337, 0.433, 0.392</bbox>
<char>124</char><bbox>0.444, 0.341, 0.508, 0.392</bbox>
<char>만수주공아파트</char><bbox>0.109, 0.531, 0.335, 0.601</bbox>
<char>시흥</char><bbox>0.443, 0.518, 0.522, 0.581</bbox>
<char>시청</char><bbox>0.711, 0.521, 0.811, 0.594</bbox>
<char>Mansu</char><bbox>0.102, 0.601, 0.181, 0.648</bbox>
<char>Jugong</char><bbox>0.186, 0.601, 0.273, 0.658</bbox>
<char>Apt</char><bbox>0.28, 0.601, 0.327, 0.651</bbox>
<char>42</char><bbox>0.377, 0.601, 0.416, 0.648</bbox>
<char>Shieung</char><bbox>0.445, 0.578, 0.53, 0.625</bbox>
<char>인천대공원</char><bbox>0.43, 0.621, 0.609, 0.684</bbox>
<char>모래내시장역</char><bbox>0.651, 0.59, 0.873, 0.665</bbox>
<char>IncheonGrand</char><bbox>0.432, 0.681, 0.561, 0.723</bbox>
<char>Park</char><bbox>0.564, 0.681, 0.611, 0.723</bbox>
"""

<div align="center"> <img src="./ocr.jpg" width="100%" /> </div>