ColPali is a model based on a novel model architecture and training strategy based on Vision Language Models (VLMs) to efficiently index documents from their visual features.
It is a
PaliGemma-3B extension that generates
ColBERT- style multi-vector representations of text and images.
It was introduced in the paper
ColPali: Efficient Document Retrieval with Vision Language Models and first released in
this repository
The HuggingFace
transformers 🤗 implementation was contributed by Tony Wu (
@tonywu71) and Yoni Gozlan (
@yonigozlan).
Our training dataset of 127,460 query-page pairs is comprised of train sets of openly available academic datasets (63%) and a synthetic dataset made up of pages from web-crawled PDF documents and augmented with VLM-generated (Claude-3 Sonnet) pseudo-questions (37%).
Our training set is fully English by design, enabling us to study zero-shot generalization to non-English languages. We explicitly verify no multi-page PDF document is used both
ViDoRe and in the train set to prevent evaluation contamination.
A validation set is created with 2% of the samples to tune hyperparameters.
All models are trained for 1 epoch on the train set. Unless specified otherwise, we train models in
bfloat16 format, use low-rank adapters (
LoRA)
with
alpha=32 and
r=32 on the transformer layers from the language model,
as well as the final randomly initialized projection layer, and use a
paged_adamw_8bit optimizer.
We train on an 8 GPU setup with data parallelism, a learning rate of 5e-5 with linear decay with 2.5% warmup steps, and a batch size of 32.
ColPali can be used as a multi-vector (ColBERT-style late interaction) retriever with Sentence Transformers via the MultiVectorEncoder:
1from sentence_transformers import MultiVectorEncoder
2
3model = MultiVectorEncoder("vidore/colpali-v1.3-hf")
4
5queries = [
6 "What is the variable represented on the y-axis of the graph?",
7 "Total outlay is maximum in which year?",
8]
9documents = [
10 f"https://huggingface.co/datasets/sentence-transformers/example-documents/resolve/main/doc{i}.jpg" for i in range(1, 5)
11]
12
13query_embeddings = model.encode_query(queries)
14document_embeddings = model.encode_document(documents)
15print(query_embeddings[0].shape, document_embeddings[0].shape)
16# (28, 128) (1030, 128)
17
18similarities = model.similarity(query_embeddings, document_embeddings)
19print(similarities)
20# tensor([[22.3359, 19.8555, 19.6582, 19.0928],
21# [ 5.8828, 13.3398, 6.1621, 6.8135]])
1import torch
2from PIL import Image
3
4from transformers import ColPaliForRetrieval, ColPaliProcessor
5
6model_name = "vidore/colpali-v1.3-hf"
7
8model = ColPaliForRetrieval.from_pretrained(
9 model_name,
10 torch_dtype=torch.bfloat16,
11 device_map="cuda:0", # or "mps" if on Apple Silicon
12).eval()
13
14processor = ColPaliProcessor.from_pretrained(model_name)
15processor.query_prefix = "Query: " # the prefix this checkpoint was trained with, see the note above
16
17# Your inputs
18images = [
19 Image.new("RGB", (32, 32), color="white"),
20 Image.new("RGB", (16, 16), color="black"),
21]
22queries = [
23 "What is the organizational structure for our R&D department?",
24 "Can you provide a breakdown of last year’s financial performance?",
25]
26
27# Process the inputs
28batch_images = processor(images=images).to(model.device)
29batch_queries = processor(text=queries).to(model.device)
30
31# Forward pass
32with torch.no_grad():
33 image_embeddings = model(**batch_images)
34 query_embeddings = model(**batch_queries)
35
36# Score the queries against the images
37scores = processor.score_retrieval(query_embeddings.embeddings, image_embeddings.embeddings)
ColPali's vision language backbone model (PaliGemma) is under
gemma license as specified in its
model card. ColPali inherits from this
gemma license.
If you use any datasets or models from this organization in your research, please cite the original dataset as follows:
1@misc{faysse2024colpaliefficientdocumentretrieval,
2 title={ColPali: Efficient Document Retrieval with Vision Language Models},
3 author={Manuel Faysse and Hugues Sibille and Tony Wu and Bilel Omrani and Gautier Viaud and Céline Hudelot and Pierre Colombo},
4 year={2024},
5 eprint={2407.01449},
6 archivePrefix={arXiv},
7 primaryClass={cs.IR},
8 url={https://arxiv.org/abs/2407.01449},
9}