Transformers
Safetensors
English
German
qwen2_vl
multimodal_embedding
text-generation-inference
Inference Endpoints
tattrongvu commited on
Commit
490e01e
·
verified ·
1 Parent(s): 0c8113b

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +102 -0
README.md ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ datasets:
4
+ - tattrongvu/vqa_de_en_batch1
5
+ - vidore/colpali_train_set
6
+ language:
7
+ - en
8
+ - de
9
+ base_model:
10
+ - vidore/colqwen2-base
11
+ tags:
12
+ - multimodal_embedding
13
+ library_name: peft
14
+ ---
15
+ # ColQwen2-2B: Visual Retriever based on Qwen2-VL-2B-Instruct with ColBERT strategy
16
+
17
+ ### This is the base version trained with batch_size 8x128 for 5 epoch and with the updated pad token
18
+
19
+ ColQwen 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.
20
+ It is a [Qwen2-VL-2B](https://huggingface.co/Qwen/Qwen2-VL-2B-Instruct) extension that generates [ColBERT](https://arxiv.org/abs/2004.12832)- style multi-vector representations of text and images.
21
+ It was introduced in the paper [ColPali: Efficient Document Retrieval with Vision Language Models](https://arxiv.org/abs/2407.01449) and first released in [this repository](https://github.com/ManuelFay/colpali)
22
+
23
+ This version is the untrained base version to guarantee deterministic projection layer initialization.
24
+ <p align="center"><img width=800 src="https://github.com/illuin-tech/colpali/blob/main/assets/colpali_architecture.webp?raw=true"/></p>
25
+
26
+ ## Version specificity
27
+
28
+
29
+ This model takes dynamic image resolutions in input and does not resize them, changing their aspect ratio as in ColPali.
30
+ Maximal resolution is set so that 1024 image patches are created at most. Experiments show clear improvements with larger amounts of image patches, at the cost of memory requirements.
31
+
32
+ This version is trained with `colpali-engine==0.3.4`.
33
+
34
+ Data is the same as the ColPali data described in the paper.
35
+
36
+
37
+ ## Model Training
38
+
39
+ ### Dataset
40
+ The dataset was extended from the original colpali train set with the gemini 1.5 flash generated QA on 35k images scraped from internet.
41
+
42
+ *Note: Multilingual data is present in the pretraining corpus of the language model and most probably in the multimodal training.*
43
+
44
+ ### Parameters
45
+ We train models use low-rank adapters ([LoRA](https://arxiv.org/abs/2106.09685))
46
+ with `alpha=128` and `r=128` on the transformer layers from the language model,
47
+ as well as the final randomly initialized projection layer, and use a `paged_adamw_8bit` optimizer.
48
+ We train on an 8xH100 GPU setup with distributed data parallelism (via accelerate), a learning rate of 2e-4 with linear decay with 1% warmup steps, batch size per device is 128, in `bfloat16` format
49
+
50
+ ## Usage
51
+
52
+ Make sure `colpali-engine` is installed from source or with a version superior to 0.3.4.
53
+ `transformers` version must be > 4.46.1.
54
+
55
+ ```bash
56
+ pip install git+https://github.com/illuin-tech/colpali
57
+ ```
58
+
59
+ ```python
60
+ import torch
61
+ from PIL import Image
62
+
63
+ from colpali_engine.models import ColQwen2, ColQwen2Processor
64
+
65
+ model = ColQwen2.from_pretrained(
66
+ "tsystems/colqwen2-2b-v1.0",
67
+ torch_dtype=torch.bfloat16,
68
+ device_map="cuda:0", # or "mps" if on Apple Silicon
69
+ ).eval()
70
+ processor = ColQwen2Processor.from_pretrained("tsystems/colqwen2-2b-v1.0")
71
+
72
+ # Your inputs
73
+ images = [
74
+ Image.new("RGB", (32, 32), color="white"),
75
+ Image.new("RGB", (16, 16), color="black"),
76
+ ]
77
+ queries = [
78
+ "Is attention really all you need?",
79
+ "What is the amount of bananas farmed in Salvador?",
80
+ ]
81
+
82
+ # Process the inputs
83
+ batch_images = processor.process_images(images).to(model.device)
84
+ batch_queries = processor.process_queries(queries).to(model.device)
85
+
86
+ # Forward pass
87
+ with torch.no_grad():
88
+ image_embeddings = model(**batch_images)
89
+ query_embeddings = model(**batch_queries)
90
+
91
+ scores = processor.score_multi_vector(query_embeddings, image_embeddings)
92
+ ```
93
+
94
+
95
+ ## Limitations
96
+
97
+ - **Focus**: The model primarily focuses on PDF-type documents and high-ressources languages, potentially limiting its generalization to other document types or less represented languages.
98
+ - **Support**: The model relies on multi-vector retreiving derived from the ColBERT late interaction mechanism, which may require engineering efforts to adapt to widely used vector retrieval frameworks that lack native multi-vector support.
99
+
100
+ ## License
101
+
102
+ ColQwen2's vision language backbone model (Qwen2-VL) is under `apache2.0` license. The adapters attached to the model are under MIT license.