Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: HuggingFaceTB/SmolVLM-Instruct
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
library_name: colpali
|
6 |
+
license: apache-2.0
|
7 |
+
---
|
8 |
+
# ColSmolVLM: Visual Retriever based on PaliGemma-3B with ColBERT strategy
|
9 |
+
|
10 |
+
ColSmolVLM 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.
|
11 |
+
It is a SmolVLM extension that generates [ColBERT](https://arxiv.org/abs/2004.12832)- style multi-vector representations of text and images.
|
12 |
+
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)
|
13 |
+
|
14 |
+
This version is the untrained base version to guarantee deterministic projection layer initialization.
|
15 |
+
|
16 |
+
|
17 |
+
## Usage
|
18 |
+
|
19 |
+
> [!WARNING]
|
20 |
+
> This version should not be used: it is solely the base version useful for deterministic LoRA initialization.
|
21 |
+
|
22 |
+
|
23 |
+
## Contact
|
24 |
+
|
25 |
+
- Manuel Faysse: manuel.faysse@illuin.tech
|
26 |
+
- Hugues Sibille: hugues.sibille@illuin.tech
|
27 |
+
- Tony Wu: tony.wu@illuin.tech
|
28 |
+
|
29 |
+
## Citation
|
30 |
+
|
31 |
+
If you use any datasets or models from this organization in your research, please cite the original dataset as follows:
|
32 |
+
|
33 |
+
```bibtex
|
34 |
+
@misc{faysse2024colpaliefficientdocumentretrieval,
|
35 |
+
title={ColPali: Efficient Document Retrieval with Vision Language Models},
|
36 |
+
author={Manuel Faysse and Hugues Sibille and Tony Wu and Bilel Omrani and Gautier Viaud and Céline Hudelot and Pierre Colombo},
|
37 |
+
year={2024},
|
38 |
+
eprint={2407.01449},
|
39 |
+
archivePrefix={arXiv},
|
40 |
+
primaryClass={cs.IR},
|
41 |
+
url={https://arxiv.org/abs/2407.01449},
|
42 |
+
}
|
43 |
+
```
|