The nvidia/llama-nemotron-colembed-vl-3b-v2 is a late interaction embedding model fine-tuned for query-document retrieval. Users can input queries, which are text, or documents which are page images, to the model. The model outputs ColBERT-style multi-vector numerical representations for input queries and documents.
✨ Key Improvements in v2:
⚗️ Advanced Model Merging: Utilizes post-training model merging to combine the strengths of multiple fine-tuned checkpoints. This delivers the accuracy stability of an ensemble without any additional inference latency.
🌍 Enhanced Synthetic Data: We significantly enriched our training mixture with diverse multilingual synthetic data, improving semantic alignment across languages and complex document types.
This model is for non-commercial/research use only.
Check the Nemotron ColEmbed v2 paper for more details.
This project will download and install additional third-party open source software projects. Review the license terms of these open source projects before use.
Deployment Geography
Global
Use Case
llama-nemotron-colembed-v2 is intended for researchers exploring applications that must understand or retrieve information across both text and image modalities. It is instrumental in multimodal RAG systems, where queries are in text format and documents are images, such as pages, text, charts, tables or infographics. Potential applications include multimedia search engines, cross-modal retrieval systems, and conversational AI with rich input understanding.
The llama-nemotron-colembed-vl-3b-v2 is a transformer-based multimodal embedding model built on top of a VLM based on google/siglip2-giant-opt-patch16-384 and meta-llama/Llama-3.2-3B. It has approximately 4.4B parameters.
Input(s):
Input Type(s): Image, Text
Input Format(s):
Image: List of images- Red, Green, Blue (RGB)
Text: List of Strings
Input Parameters:
Image: Two-Dimensional (2D)
Text: One-Dimensional (1D)
Other Properties Related to Input:
The model's maximum context length we evaluated is 10240 tokens.
Each image tile consumes 256 tokens. We have tested this model extensively with these settings on config.json - max_input_tiles = 8, use_thumbnails = True, so that every image is split into maximum of 8 tiles + 1 thumbnail (whole image at lower resolution). Images must be python PIL format. The model will scale the image into multiple tiles of 512x512.
Outputs
Output Type: Floats
Output Format: List of float arrays
Output Parameters: The list of floats equivalent to [batchsize x seq length x embedding_dim]
Other Properties Related to Output: For each input token, the model outputs a 3072-dimensional embedding vector of floating-point values.
Our AI models are designed and/or optimized to run on NVIDIA GPU-accelerated systems. By leveraging NVIDIA’s hardware (e.g. GPU cores) and software frameworks (e.g., CUDA libraries), the model achieves faster training and inference times compared to CPU-only solutions.
Installation
The model requires transformers>=4.45.0 and flash attention installed.
1import requests
2from PIL import Image
3from io import BytesIO
4import torch
5from transformers import AutoModel
6from transformers.image_utils import load_image
7# Load Model89model = AutoModel.from_pretrained(10'nvidia/llama-nemotron-colembed-vl-3b-v2',11 device_map='cuda',12 trust_remote_code=True,13 torch_dtype=torch.bfloat16,14 attn_implementation="flash_attention_2"15).eval()1617# Queries18queries =[19'How is AI improving the intelligence and capabilities of robots?',20'Canary, a multilingual model that transcribes speech in English, Spanish, German, and French with punctuation and capitalization.',21'Generative AI can generate DNA sequences that can be translated into proteins for bioengineering.'22]2324image_urls =[25"https://developer.download.nvidia.com/images/isaac/nvidia-isaac-lab-1920x1080.jpg",26"https://developer-blogs.nvidia.com/wp-content/uploads/2024/03/asr-nemo-canary-featured.jpg",27"https://blogs.nvidia.com/wp-content/uploads/2023/02/genome-sequencing-helix.jpg"28]2930# Load all images (load_image handles both local paths and URLs)31images =[load_image(img_path)for img_path in image_urls]3233# Encoding34query_embeddings = model.forward_queries(queries, batch_size=8)35image_embeddings = model.forward_images(images, batch_size=8)3637scores = model.get_scores(38 query_embeddings,39 image_embeddings
40)41# Diagonal should have higher scores42print(scores)4344# tensor([[10.9662, 10.6623, 10.0281],45# [17.7323, 18.6031, 17.7613],46# [13.2915, 13.6993, 13.7968]], device='cuda:0')
Software Integration:
Runtime Engine(s): Not Applicable
Supported Hardware Microarchitecture Compatibility:
Data Collection Method by dataset: Hybrid: Automated, Human, Synthetic Labeling Method by dataset: Hybrid: Automated, Human, Synthetic Properties: Training: The text component is comprised of semi-supervised pre-training on 12M samples from public datasets and fine-tuning on 1.5M samples from public datasets. The vision embedding model was fine-tuned on approximately 500k image samples.
To enhance robustness, we augmented the fine-tuning mixture with diverse multilingual synthetic queries. These were generated to target complex document layouts and cross-lingual retrieval scenarios within our existing high-quality image data.
Evaluation Dataset
We evaluate the model on the datasets from ViDoRe V1, V2 and V3 Visual Document Retrieval benchmarks.
ViDoRe is a premier benchmark for Visual Document Retrieval and it is composed of various page-level retrieving tasks spanning multiple domains, languages, and settings. The latest version of the benchmark is Vidore V3, a comprehensive evaluation of retrieval for enterprise use-cases.
We provide a script script using MTEB 2 library to evaluate ColEmbed models on ViDoRe benchmarks.
Data Collection Method by dataset: Hybrid: Automated, Human, Synthetic
Labeling Method by dataset: Hybrid: Automated, Human, Synthetic
1pip install"mteb>=2.6.0, <3.0.0"2# Evaluates with Vidore V1 and V23CUDA_VISIBLE_DEVICES=0; python3 mteb2_eval.py --model_name nvidia/llama-nemotron-colembed-vl-3b-v2 --batch_size 16 --benchmark "VisualDocumentRetrieval"4# Evaluates with Vidore V35CUDA_VISIBLE_DEVICES=0; python3 mteb2_eval.py --model_name nvidia/llama-nemotron-colembed-vl-3b-v2 --batch_size 16 --benchmark "ViDoRe(v3)"6# Evaluates with a specific task/dataset of Vidore V3: Vidore3ComputerScienceRetrieval7CUDA_VISIBLE_DEVICES=0; python3 mteb2_eval.py --model_name nvidia/llama-nemotron-colembed-vl-3b-v2 --batch_size 16 --benchmark "ViDoRe(v3)" --task-list Vidore3ComputerScienceRetrieval
In this section, we compare the performance of llama-nemotron-colembed-vl-3b-v2 with its previous version llama-nemoretriever-colembed-3b-v1.
In the table below, we compare the performance of v2 against the previous v1 version. The v2 model demonstrates higher retrieval accuracy across all ViDoRe benchmarks.
Note: Accuracy for ViDoRe V1 and V2 is reported as NDCG@5, while accuracy for ViDoRe V3 is reported as NDCG@10.
Benchmark
llama-nemoretriever-colembed-3b-v1
llama-nemotron-colembed-vl-3b-v2
ViDoRe V1
0.9100
0.9174
ViDoRe V2
0.6332
0.6338
ViDoRe V3
0.5707
0.5970
Inference:
Acceleration Engine: Not Applicable Test Hardware: A100 40GB, A100 80GB, H100 80GB
Citation
@misc{moreira2026_nemotron_colembed_v2,
title={Nemotron ColEmbed V2: Top-Performing Late Interaction embedding models for Visual Document Retrieval},
author={Gabriel de Souza P. Moreira, Ronay Ak, Mengyao Xu, Oliver Holworthy, Benedikt Schifferer, Zhiding Yu, Yauhen Babakhin, Radek Osmulski, Jiarui Cai, Ryan Chesler, Bo Liu, Even Oldridge},
year={2026},
eprint={2602.03992},
archivePrefix={arXiv},
primaryClass={cs.IR},
url={https://arxiv.org/abs/2602.03992},
}
Ethical Considerations
NVIDIA believes Trustworthy AI is a shared responsibility and we have established policies and practices to enable development for a wide array of AI applications. When downloaded or used in accordance with our terms of service, developers should work with their supporting model team to ensure this model meets requirements for the relevant industry and use case and addresses unforeseen product misuse.
Please make sure you have proper rights and permissions for all input image and video content; if image or video includes people, personal health information, or intellectual property, the image or video generated will not blur or maintain proportions of image subjects included.
Please report model quality, risk, security vulnerabilities or NVIDIA AI Concerns here.