colbert-xm / README.md
antoinelouis's picture
Update README.md
566931f verified
metadata
pipeline_tag: sentence-similarity
icense: apache-2.0
datasets:
  - ms_marco
  - sentence-transformers/msmarco-hard-negatives
metrics:
  - recall
tags:
  - feature-extraction
  - sentence-similarity
library_name: colbert-ir
inference: false
language:
  - multilingual
  - af
  - am
  - ar
  - az
  - be
  - bg
  - bn
  - ca
  - cs
  - cy
  - da
  - de
  - el
  - en
  - eo
  - es
  - et
  - eu
  - fa
  - fi
  - fr
  - ga
  - gl
  - gu
  - ha
  - he
  - hi
  - hr
  - hu
  - hy
  - id
  - is
  - it
  - ja
  - ka
  - kk
  - km
  - kn
  - ko
  - ku
  - ky
  - la
  - lo
  - lt
  - lv
  - mk
  - ml
  - mn
  - mr
  - ms
  - my
  - ne
  - nl
  - 'no'
  - or
  - pa
  - pl
  - ps
  - pt
  - ro
  - ru
  - sa
  - si
  - sk
  - sl
  - so
  - sq
  - sr
  - sv
  - sw
  - ta
  - te
  - th
  - tl
  - tr
  - uk
  - ur
  - uz
  - vi
  - zh

ColBERT-XM

πŸ› οΈ Usage | πŸ“Š Evaluation | πŸ€– Training | πŸ”— Citation | πŸ”‘ License

πŸ’» Code | πŸ“„ Paper

This is a colbert-ir model: it encodes queries & passages into matrices of token-level embeddings and efficiently finds passages that contextually match the query using scalable vector-similarity (MaxSim) operators. It can be used for tasks like clustering or semantic search. The model uses an XMOD backbone, which allows it to learn from monolingual fine-tuning in a high-resource language, like English, and perform zero-shot retrieval across multiple languages.

Usage

Here are some examples for using ColBERT-XM with colbert-ir or RAGatouille.

Using ColBERT-IR

Start by installing the library and some extra requirements:

pip install git+https://github.com/stanford-futuredata/ColBERT.git@main#egg=colbert-ir torchtorch==2.1.2 faiss-gpu==1.7.2 langdetect==1.0.9

Using the model on a collection of passages typically involves the following steps:

  • Step 1: Indexing. This step encodes all passages into matrices, stores them on disk, and builds data structures for efficient search. (⚠️ indexing requires a GPU!)
from . import CustomIndexer # Use of a custom indexer that automatically detects the language of the passages to index and activate the language-specific adapters accordingly
from colbert.infra import Run, RunConfig

n_gpu: int = 1 # Set your number of available GPUs
experiment: str = "" # Name of the folder where the logs and created indices will be stored
index_name: str = "" # The name of your index, i.e. the name of your vector database

with Run().context(RunConfig(nranks=n_gpu,experiment=experiment)):
    indexer = CustomIndexer(checkpoint="antoinelouis/colbert-xm")
    documents = [
      "Ceci est un premier document.",
      "Voici un second document.",
      ...
    ]
    indexer.index(name=index_name, collection=documents)
  • Step 2: Searching. Given the model and index, you can issue queries over the collection to retrieve the top-k passages for each query.
from . import CustomSearcher # Use of a custom searcher that automatically detects the language of the passages to index and activate the language-specific adapters accordingly
from colbert.infra import Run, RunConfig

n_gpu: int = 0
experiment: str = "" # Name of the folder where the logs and created indices will be stored
index_name: str = "" # Name of your previously created index where the documents you want to search are stored.
k: int = 10 # how many results you want to retrieve

with Run().context(RunConfig(nranks=n_gpu,experiment=experiment)):
    searcher = CustomSearcher(index=index_name) # You don't need to specify checkpoint again, the model name is stored in the index.
    query = "Comment effectuer une recherche avec ColBERT ?"
    results = searcher.search(query, k=k)
    # results: tuple of tuples of length k containing ((passage_id, passage_rank, passage_score), ...)

Using RAGatouille

[To come]


Evaluation

  • MS MARCO: We evaluate our model on the small development sets of mMARCO, which consists of 6,980 queries for a corpus of 8.8M candidate passages in 14 languages. Below, we compared its multilingual performance with other retrieval models on the dataset official metrics, i.e., mean reciprocal rank at cut-off 10 (MRR@10).
model Type #Samples #Params en es fr it pt id de ru zh ja nl vi hi ar Avg.
1 BM25 (Pyserini) lexical - - 18.4 15.8 15.5 15.3 15.2 14.9 13.6 12.4 11.6 14.1 14.0 13.6 13.4 11.1 14.2
2 mono-mT5 (Bonfacio et al., 2021) cross-encoder 12.8M 390M 36.6 31.4 30.2 30.3 30.2 29.8 28.9 26.3 24.9 26.7 29.2 25.6 26.6 23.5 28.6
3 mono-mMiniLM (Bonfacio et al., 2021) cross-encoder 80.0M 107M 36.6 30.9 29.6 29.1 28.9 29.3 27.8 25.1 24.9 26.3 27.6 24.7 26.2 21.9 27.8
4 DPR-X (Yang et al., 2022) single-vector 25.6M 550M 24.5 19.6 18.9 18.3 19.0 16.9 18.2 17.7 14.8 15.4 18.5 15.1 15.4 12.9 17.5
5 mE5-base (Wang et al., 2024) single-vector 5.1B 278M 35.0 28.9 30.3 28.0 27.5 26.1 27.1 24.5 22.9 25.0 27.3 23.9 24.2 20.5 26.5
6 mColBERT (Bonfacio et al., 2021) multi-vector 25.6M 180M 35.2 30.1 28.9 29.2 29.2 27.5 28.1 25.0 24.6 23.6 27.3 18.0 23.2 20.9 26.5
7 DPR-XM (ours) single-vector 25.6M 277M 32.7 23.6 23.5 22.3 22.7 22.0 22.1 19.9 18.1 18.7 22.9 18.0 16.0 15.1 21.3
8 ColBERT-XM (ours) multi-vector 6.4M 277M 37.2 28.5 26.9 26.5 27.6 26.3 27.0 25.1 24.6 24.1 27.5 22.6 23.8 19.5 26.2
  • Mr. TyDi: We also evaluate our model on the test set of Mr. TyDi, another multilingual open retrieval dataset including low-resource languages not present in mMARCO. Below, we compared its performance with other retrieval models on the official dataset metrics, i.e., mean reciprocal rank at cut-off 100 (MRR@100) and recall at cut-off 100 (R@100).
model Type #Samples #Params ar bn en fi id ja ko ru sw te Avg.
MRR@100
1 BM25 (Pyserini) lexical - - 36.8 41.8 14.0 28.4 37.6 21.1 28.5 31.3 38.9 34.3 31.3
2 mono-mT5 (Bonfacio et al., 2021) cross-encoder 12.8M 390M 62.2 65.1 35.7 49.5 61.1 48.1 47.4 52.6 62.9 66.6 55.1
3 mColBERT (Bonfacio et al., 2021) multi-vector 25.6M 180M 55.3 48.8 32.9 41.3 55.5 36.6 36.7 48.2 44.8 61.6 46.1
4 ColBERT-XM (ours) multi-vector 6.4M 277M 55.2 56.6 36.0 41.8 57.1 42.1 41.3 52.2 56.8 50.6 49.0
R@100
5 BM25 (Pyserini) lexical - - 79.3 86.9 53.7 71.9 84.3 64.5 61.9 64.8 76.4 75.8 72.0
6 mono-mT5 (Bonfacio et al., 2021) cross-encoder 12.8M 390M 88.4 92.3 72.4 85.1 92.8 83.2 76.5 76.3 83.8 85.0 83.5
7 mColBERT (Bonfacio et al., 2021) multi-vector 25.6M 180M 85.9 91.8 78.6 82.6 91.1 70.9 72.9 86.1 80.8 96.9 83.7
8 ColBERT-XM (ours) multi-vector 6.4M 277M 89.6 91.4 83.7 84.4 93.8 84.9 77.6 89.1 87.1 93.3 87.5

Training

Data

We use the English training samples from the MS MARCO passage ranking dataset, which contains 8.8M passages and 539K training queries. We do not employ the BM25 netaives provided by the official dataset but instead sample harder negatives mined from 12 distinct dense retrievers, using the msmarco-hard-negatives distillation dataset. Our final training set consists of 6.4M (q, p+, p-) triples.

Implementation

The model is initialized from the xmod-base checkpoint and optimized via a combination of the pairwise softmax cross-entropy loss computed over predicted scores for the positive and hard negative passages (as in ColBERTv1) and the in-batch sampled softmax cross-entropy loss (as in ColBERTv2). It is fine-tuned on one 80GB NVIDIA H100 GPU for 50k steps using the AdamW optimizer with a batch size of 128, a peak learning rate of 3e-6 with warm up along the first 10% of training steps and linear scheduling. We set the embedding dimension to 128, and fix the maximum sequence lengths for questions and passages at 32 and 256, respectively.


Citation

@article{louis2024modular,
  author = {Louis, Antoine and Saxena, Vageesh and van Dijck, Gijs and Spanakis, Gerasimos},
  title = {ColBERT-XM: A Modular Multi-Vector Representation Model for Zero-Shot Multilingual Information Retrieval},
  journal = {CoRR},
  volume = {abs/2402.xxxxx},
  year = {2024},
  url = {https://doi.org/},
  doi = {},
  eprinttype = {arXiv},
  eprint = {2402.xxxxx},
}

License

DPR-XM is licensed under the Apache 2.0 license.