CoolFace
Modelpublic

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

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

VARCO-VISION-2.0-14B

<div align="center"> <img src="./varco-vision.png" width="100%" style="background-color:white; padding:10px;" /> </div>

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-18: Updated the checkpoint of VARCO-VISION-2.0-14B for improved performance.
  • —📰 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-14Bsiglip2-so400m-patch16-384 / Qwen3-14B link
VARCO-VISION-2.0-1.7Bsiglip2-so400m-patch16-384 / Qwen3-1.7Blink
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.166.5
SEEDBench_IMG77.577.777.077.7
LLaVABench84.493.091.088.0
OCRBench877879888860

Korean Benchmark

BenchmarkInternVL3-14BOvis2-16BQwen2.5-VL-7BVARCO-VISION-2.0-14B
K-MMStar64.929.749.363.6
K-SEED78.273.275.777.2
K-LLaVABench80.986.394.196.5
K-DTCBench87.981.782.178.3

Korean Cultural Benchmark

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

Text-only Benchmark

BenchmarkInternVL3-14BOvis2-16BQwen2.5-VL-7BVARCO-VISION-2.0-14B
MMLU78.578.44.677.9
MT-Bench8.938.598.078.98
KMMLU51.449.339.657.5
KoMT-Bench7.017.916.847.83
LogicKor7.007.946.557.40

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

BenchmarkPaddleOCREasyOCRVARCO-VISION-2.0-14B
CORD91.477.893.1
ICDAR201392.085.093.2
ICDAR201573.757.982.4

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 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 = [
    {
        "role": "user",
        "content": [
            {"type": "image", "url": "https://huggingface.co/NCSOFT/VARCO-VISION-2.0-14B/resolve/main/demo.jpg"},
            {"type": "text", "text": "각 박스마다 한 줄씩 색상과 글자를 정확하게 출력해주세요."},
        ],
    },
]

inputs = processor.apply_chat_template(
    conversation,
    add_generation_prompt=True,
    tokenize=True,
    return_dict=True,
    return_tensors="pt"
).to(model.device, torch.float16)

generate_ids = model.generate(**inputs, max_new_tokens=1024)
generate_ids_trimmed = [
    out_ids[len(in_ids) :] for in_ids, out_ids in zip(inputs.input_ids, generate_ids)
]
output = processor.decode(generate_ids_trimmed[0], skip_special_tokens=True)
print(output)

<details> <summary>Multi image inference</summary>

python
conversation = [
    {
        "role": "user",
        "content": [
            {"type": "image", "image": "file:///path/to/image1.jpg"},
            {"type": "image", "image": "file:///path/to/image2.jpg"},
            {"type": "text", "text": "이미지 간의 유사점을 파악하세요."},
        ],
    },
]

inputs = processor.apply_chat_template(
    conversation,
    add_generation_prompt=True,
    tokenize=True,
    return_dict=True,
    return_tensors="pt"
).to(model.device, torch.float16)

generate_ids = model.generate(**inputs, max_new_tokens=1024)
generate_ids_trimmed = [
    out_ids[len(in_ids) :] for in_ids, out_ids in zip(inputs.input_ids, generate_ids)
]
output = processor.decode(generate_ids_trimmed[0], skip_special_tokens=True)
print(output)

</details>

<details> <summary>Batch inference</summary>

All inputs in a batch must have the same modality structure—for example, text-only with text-only, single-image with single-image, and multi-image inputs with the same number of images—to ensure correct batch inference.

python
conversation_1 = [
    {
        "role": "user",
        "content": [
            {"type": "image", "image": "file:///path/to/image1.jpg"},
            {"type": "text", "text": "이미지를 설명해주세요."},
        ],
    },
]

conversation_2 = [
    {
        "role": "user",
        "content": [
            {"type": "image", "image": "file:///path/to/image2.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)
generate_ids_trimmed = [
    out_ids[len(in_ids) :] for in_ids, out_ids in zip(inputs.input_ids, generate_ids)
]
output = processor.batch_decode(generate_ids_trimmed, skip_special_tokens=True)
print(output)

</details>

<details> <summary>OCR inference</summary>

python
from PIL import Image

image = Image.open("file:///path/to/image.jpg")

# Image upscaling for OCR performance boost
w, h = image.size
target_size = 2304
if max(w, h) < target_size:
    scaling_factor = target_size / max(w, h)
    new_w = int(w * scaling_factor)
    new_h = int(h * scaling_factor)
    image = image.resize((new_w, new_h))

conversation = [
    {
        "role": "user",
        "content": [
            {"type": "image", "image": image},
            {"type": "text", "text": "<ocr>"},
        ],
    },
]

inputs = processor.apply_chat_template(
    conversation,
    add_generation_prompt=True,
    tokenize=True,
    return_dict=True,
    return_tensors="pt"
).to(model.device, torch.float16)

generate_ids = model.generate(**inputs, max_new_tokens=1024)
generate_ids_trimmed = [
    out_ids[len(in_ids) :] for in_ids, out_ids in zip(inputs.input_ids, generate_ids)
]
output = processor.decode(generate_ids_trimmed[0], skip_special_tokens=False)
print(output)

</details>