CoolFace
Modelpublic

OpenLLM-Ro/RoQwen3-VL-2B-Instruct

sourceHugging Facecc-by-nc-4.0updated 4mo agoView on Hugging Face
0likes27downloads
Model Card

Model Card for RoQwen3-VL-2B-Instruct

RoQwen3-VL-2B-Instruct is a Romanian-adapted vision-language model built on top of Qwen/Qwen3-VL-2B-Instruct. It was produced by continued supervised instruction tuning of the base Qwen3-VL checkpoint on a Romanian multimodal SFT mixture covering general instruction following (LLaVA mix), captioning (Pixmo-Cap, Flickr30k-Cap), visual question answering (Pixmo-AA, Pixmo-Cap-QA, Flickr30k-QA), document and chart understanding (CoSyn, FinePDFs), and visual grounding (Pixmo-Points, Pixmo-Count). The model is intended for research on Romanian VLM capabilities.

Model Details

Model Description

Model Sources

  • —Repository: https://github.com/OpenLLM-Ro/LLaMA-Factory
  • —Paper: https://arxiv.org/abs/2605.31401

Intended Use

Intended Use Cases

RoQwen3-VL-2B-Instruct is intended for research use on Romanian vision-language tasks — captioning, visual question answering, cultural understanding, OCR / document understanding, and visual grounding — and as a starting point for further Romanian VLM adaptation.

Out-of-Scope Use

Use in any manner that violates applicable laws or regulations (including trade-compliance laws), the project's license, or use in languages other than Romanian.

How to Get Started with the Model

python
import torch
from PIL import Image
from transformers import AutoProcessor, Qwen3VLForConditionalGeneration

model = Qwen3VLForConditionalGeneration.from_pretrained(
    "OpenLLM-Ro/RoQwen3-VL-2B-Instruct",
    torch_dtype=torch.bfloat16,
    device_map="auto",
).eval()
processor = AutoProcessor.from_pretrained("OpenLLM-Ro/RoQwen3-VL-2B-Instruct")

image = Image.open("example.jpg").convert("RGB")
question = "Descrie imaginea în detaliu."

messages = [
    {"role": "user", "content": [
        {"type": "image", "image": image},
        {"type": "text", "text": question},
    ]},
]
inputs = processor.apply_chat_template(
    messages,
    add_generation_prompt=True,
    tokenize=True,
    return_dict=True,
    return_tensors="pt",
).to(model.device, dtype=torch.bfloat16)

with torch.inference_mode():
    outputs = model.generate(**inputs, max_new_tokens=256, do_sample=False)
print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True))

Benchmarks

All benchmarks below are evaluated in Romanian. Per-benchmark winners are shown in bold. Micro is the mean over individual benchmarks; Macro is the mean over capability groups.

Aggregate

ModelMicro avg.Macro avg.
Qwen3-VL-2B-Instruct51.5151.31
RoQwen3-VL-2B-Instruct63.3662.65

General Understanding

ModelMMBenchMMStarSeedBench2
Qwen3-VL-2B-Instruct62.6945.9263.38
RoQwen3-VL-2B-Instruct71.9050.7369.29

Knowledge & Reasoning

ModelMMMUMME
Qwen3-VL-2B-Instruct38.3361.59
RoQwen3-VL-2B-Instruct40.2262.19

Cultural

ModelCVQAALM-BenchRoMemesRoCultVLM
Qwen3-VL-2B-Instruct57.9548.7246.6850.31
RoQwen3-VL-2B-Instruct61.9260.9736.7154.00

Generation & Open-ended

ModelRoFlickr30k-CaptionRoFlickr30k-QALLaVA-WildAyaVisionBenchm-WildVision
Qwen3-VL-2B-Instruct70.0930.5929.8943.0444.76
RoQwen3-VL-2B-Instruct83.8085.7050.4055.3360.08

OCR & Documents

ModelRoCosynRoFinepdfsRoMemes OCR
Qwen3-VL-2B-Instruct48.6378.6291.04
RoQwen3-VL-2B-Instruct64.0786.8589.54

Grounding

ModelPixmoCountPixmoPoints
Qwen3-VL-2B-Instruct56.3610.09
RoQwen3-VL-2B-Instruct65.2854.89

Citation

bibtex
@misc{masala2026intelegi,
      title={``\^{I}n\c{t}elegi Rom\^{a}ne\c{s}te?'' A Recipe for Romanian Vision-Language Models},
      author={Mihai Masala and Marius Leordeanu and Mihai Dascalu and Traian Rebedea},
      year={2026},
      eprint={2605.31401},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2605.31401},
}

@inproceedings{masala-etal-2024-vorbesti,
    title = "``Vorbeşti Româneşte?'' A Recipe to Train Powerful {R}omanian {LLM}s with {E}nglish Instructions",
    author = "Masala, Mihai and Ilie-Ablachim, Denis and Dima, Alexandru and Corlatescu, Dragos and Zavelca, Miruna and Olaru, Ovio and Terian, Simina and Terian, Andrei and Leordeanu, Marius and Velicu, Horia and Popescu, Marius and Dascalu, Mihai and Rebedea, Traian",
    booktitle = "Findings of the Association for Computational Linguistics: EMNLP 2024",
    month = nov,
    year = "2024",
    pages = "11632--11647"
}