eugene-yang
commited on
Commit
•
53928aa
1
Parent(s):
ac39d50
push model
Browse files- .gitattributes +1 -0
- README.md +94 -0
- added_tokens.json +4 -0
- artifact.metadata +73 -0
- config.json +28 -0
- pytorch_model.bin +3 -0
- sentencepiece.bpe.model +3 -0
- special_tokens_map.json +15 -0
- tokenizer.json +3 -0
- tokenizer_config.json +19 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -1,3 +1,97 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
license: mit
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
- zh
|
5 |
+
- fa
|
6 |
+
- ru
|
7 |
+
tags:
|
8 |
+
- clir
|
9 |
+
- colbertx
|
10 |
+
- plaidx
|
11 |
+
- xlm-roberta-large
|
12 |
+
datasets:
|
13 |
+
- ms_marco
|
14 |
+
- hltcoe/tdist-msmarco-scores
|
15 |
+
task_categories:
|
16 |
+
- text-retrieval
|
17 |
+
- information-retrieval
|
18 |
+
task_ids:
|
19 |
+
- passage-retrieval
|
20 |
+
- cross-language-retrieval
|
21 |
license: mit
|
22 |
---
|
23 |
+
|
24 |
+
# ColBERT-X for English-Chinese/Persian/Russian MLIR using Multilingual Translate-Distill
|
25 |
+
|
26 |
+
## CLIR Model Setting
|
27 |
+
|
28 |
+
- Query language: English
|
29 |
+
- Query length: 32 token max
|
30 |
+
- Document language: Chinese/Persian/Russian
|
31 |
+
- Document length: 180 token max (please use MaxP to aggregate the passage score if needed)
|
32 |
+
|
33 |
+
## Model Description
|
34 |
+
|
35 |
+
Multilingual Translate-Distill is a training technique that produces state-of-the-art MLIR dense retrieval model through translation and distillation.
|
36 |
+
`plaidx-large-neuclir-mtd-mix-entries-mt5xxl-engeng` is trained with KL-Divergence from the `mt5xxl` MonoT5 reranker
|
37 |
+
[`unicamp-dl/mt5-13b-mmarco-100k`](https://huggingface.co/unicamp-dl/mt5-13b-mmarco-100k)
|
38 |
+
inferenced on English MS MARCO training queries and passages.
|
39 |
+
The teacher scores can be found in
|
40 |
+
[`hltcoe/tdist-msmarco-scores`](https://huggingface.co/datasets/hltcoe/tdist-msmarco-scores/blob/main/t53b-monot5-msmarco-engeng.jsonl.gz).
|
41 |
+
|
42 |
+
### Training Parameters
|
43 |
+
|
44 |
+
- learning rate: 5e-6
|
45 |
+
- update steps: 200,000
|
46 |
+
- nway (number of passages per query): 6 (randomly selected from 50; 2 if using `round-robin-entires`, see below)
|
47 |
+
- per device batch size (number of query-passage set): 8
|
48 |
+
- training GPU: 8 NVIDIA V100 with 32 GB memory
|
49 |
+
|
50 |
+
### Mixing Strategies
|
51 |
+
|
52 |
+
- `mix-passages`: languages are randomly assigned to the 6 sampled passages for a given query during training.
|
53 |
+
- `mix-entries`: all passages in the a given query-passage set are randomly assigned to the same language.
|
54 |
+
- `round-robin-entires`: for each query, the query-passage set is repeated `n` times to iterate through all languages.
|
55 |
+
|
56 |
+
## Usage
|
57 |
+
|
58 |
+
To properly load ColBERT-X models from Huggingface Hub, please use the following version of PLAID-X.
|
59 |
+
```bash
|
60 |
+
pip install PLAID-X>=0.3.1
|
61 |
+
```
|
62 |
+
|
63 |
+
Following code snippet loads the model through Huggingface API.
|
64 |
+
```python
|
65 |
+
from colbert.modeling.checkpoint import Checkpoint
|
66 |
+
from colbert.infra import ColBERTConfig
|
67 |
+
|
68 |
+
Checkpoint('hltcoe/plaidx-large-neuclir-mtd-mix-entries-mt5xxl-engeng', colbert_config=ColBERTConfig())
|
69 |
+
```
|
70 |
+
|
71 |
+
For full tutorial, please refer to the [PLAID-X Jupyter Notebook](https://colab.research.google.com/github/hltcoe/clir-tutorial/blob/main/notebooks/clir_tutorial_plaidx.ipynb),
|
72 |
+
which is part of the [SIGIR 2023 CLIR Tutorial](https://github.com/hltcoe/clir-tutorial).
|
73 |
+
|
74 |
+
## BibTeX entry and Citation Info
|
75 |
+
|
76 |
+
Please cite the following two papers if you use the model.
|
77 |
+
|
78 |
+
|
79 |
+
```bibtex
|
80 |
+
@inproceedings{mtt,
|
81 |
+
title = {Neural Approaches to Multilingual Information Retrieval},
|
82 |
+
author = {Dawn Lawrie and Eugene Yang and Douglas W Oard and James Mayfield},
|
83 |
+
booktitle = {Proceedings of the 45th European Conference on Information Retrieval (ECIR)},
|
84 |
+
year = {2023},
|
85 |
+
doi = {10.1007/978-3-031-28244-7_33},
|
86 |
+
url = {https://arxiv.org/abs/2209.01335}
|
87 |
+
}
|
88 |
+
```
|
89 |
+
|
90 |
+
```bibtex
|
91 |
+
@inproceedings{mtd,
|
92 |
+
author = {Eugene Yang and Dawn Lawrie and James Mayfield},
|
93 |
+
title = {Distillation for Multilingual Information Retrieval},
|
94 |
+
booktitle = {Proceedings of the 47th International ACM SIGIR Conference on Research and Development in Information Retrieval (SIGIR) (Short Paper) (Accepted)},
|
95 |
+
year = {2024}
|
96 |
+
}
|
97 |
+
```
|
added_tokens.json
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"[unused0]": 250002,
|
3 |
+
"[unused1]": 250003
|
4 |
+
}
|
artifact.metadata
ADDED
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"query_token_id": "[unused0]",
|
3 |
+
"doc_token_id": "[unused1]",
|
4 |
+
"query_token": "[Q]",
|
5 |
+
"doc_token": "[D]",
|
6 |
+
"ncells": null,
|
7 |
+
"centroid_score_threshold": null,
|
8 |
+
"ndocs": null,
|
9 |
+
"index_path": null,
|
10 |
+
"nbits": 1,
|
11 |
+
"kmeans_niters": 4,
|
12 |
+
"resume": false,
|
13 |
+
"max_sampled_pid": -1,
|
14 |
+
"max_num_partitions": -1,
|
15 |
+
"use_lagacy_build_ivf": false,
|
16 |
+
"reuse_centroids_from": null,
|
17 |
+
"similarity": "cosine",
|
18 |
+
"bsize": 8,
|
19 |
+
"accumsteps": 1,
|
20 |
+
"lr": 5e-6,
|
21 |
+
"maxsteps": 400000,
|
22 |
+
"save_every": null,
|
23 |
+
"resume_optimizer": false,
|
24 |
+
"fix_broken_optimizer_state": false,
|
25 |
+
"warmup": null,
|
26 |
+
"warmup_bert": null,
|
27 |
+
"relu": false,
|
28 |
+
"nway": 6,
|
29 |
+
"n_query_alternative": 1,
|
30 |
+
"use_ib_negatives": false,
|
31 |
+
"kd_loss": "KLD",
|
32 |
+
"reranker": false,
|
33 |
+
"distillation_alpha": 1.0,
|
34 |
+
"ignore_scores": false,
|
35 |
+
"model_name": "xlm-roberta-large",
|
36 |
+
"force_resize_embeddings": true,
|
37 |
+
"shuffle_passages": true,
|
38 |
+
"sampling_max_beta": 1.0,
|
39 |
+
"over_one_epoch": true,
|
40 |
+
"query_maxlen": 32,
|
41 |
+
"attend_to_mask_tokens": false,
|
42 |
+
"interaction": "colbert",
|
43 |
+
"dim": 128,
|
44 |
+
"doc_maxlen": 220,
|
45 |
+
"mask_punctuation": true,
|
46 |
+
"checkpoint": "xlm-roberta-large",
|
47 |
+
"triples": "\/expscratch\/eyang\/workspace\/plaid-aux\/training_triples\/msmarco-passages\/triples_mt5xxl-monot5-mmarco-engeng.jsonl",
|
48 |
+
"collection": "Combination(entries)[irds:neumarco\/zh\/train:docs+irds:neumarco\/fa\/train:docs+irds:neumarco\/ru\/train:docs]",
|
49 |
+
"queries": "irds:msmarco-passage\/train:queries",
|
50 |
+
"index_name": null,
|
51 |
+
"debug": false,
|
52 |
+
"overwrite": false,
|
53 |
+
"root": "\/expscratch\/eyang\/workspace\/plaid-aux\/experiments",
|
54 |
+
"experiment": "mtt-tdistill",
|
55 |
+
"index_root": null,
|
56 |
+
"name": "multi.entries-KLD-shuf-5e-6\/64bat.6way\/mt5xxl-monot5-mmarco-engeng\/64bat.6way",
|
57 |
+
"rank": 0,
|
58 |
+
"nranks": 8,
|
59 |
+
"amp": true,
|
60 |
+
"ivf_num_processes": 20,
|
61 |
+
"ivf_use_tempdir": false,
|
62 |
+
"ivf_merging_ways": 2,
|
63 |
+
"gpus": 8,
|
64 |
+
"meta": {
|
65 |
+
"hostname": "r10n04",
|
66 |
+
"git_branch": "eugene-training",
|
67 |
+
"git_hash": "220bdf8155f0615e1bb2d997d8efe924ffe806b5",
|
68 |
+
"git_commit_datetime": "2023-09-29 16:36:59-04:00",
|
69 |
+
"current_datetime": "Nov 03, 2023 ; 12:23PM EDT (-0400)",
|
70 |
+
"cmd": "train.py --model_name xlm-roberta-large --training_triples \/expscratch\/eyang\/workspace\/plaid-aux\/training_triples\/msmarco-passages\/triples_mt5xxl-monot5-mmarco-engeng.jsonl --training_queries msmarco-passage\/train --training_collection neumarco\/zh\/train neumarco\/fa\/train neumarco\/ru\/train --training_collection_mixing entries --maxsteps 400000 --learning_rate 5e-6 --kd_loss KLD --per_device_batch_size 8 --nway 6 --run_tag multi.entries-KLD-shuf-5e-6\/64bat.6way\/mt5xxl-monot5-mmarco-engeng --experiment mtt-tdistill",
|
71 |
+
"version": "colbert-v0.4"
|
72 |
+
}
|
73 |
+
}
|
config.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "xlm-roberta-large",
|
3 |
+
"architectures": [
|
4 |
+
"HF_ColBERT"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"bos_token_id": 0,
|
8 |
+
"classifier_dropout": null,
|
9 |
+
"eos_token_id": 2,
|
10 |
+
"hidden_act": "gelu",
|
11 |
+
"hidden_dropout_prob": 0.1,
|
12 |
+
"hidden_size": 1024,
|
13 |
+
"initializer_range": 0.02,
|
14 |
+
"intermediate_size": 4096,
|
15 |
+
"layer_norm_eps": 1e-05,
|
16 |
+
"max_position_embeddings": 514,
|
17 |
+
"model_type": "xlm-roberta",
|
18 |
+
"num_attention_heads": 16,
|
19 |
+
"num_hidden_layers": 24,
|
20 |
+
"output_past": true,
|
21 |
+
"pad_token_id": 1,
|
22 |
+
"position_embedding_type": "absolute",
|
23 |
+
"torch_dtype": "float32",
|
24 |
+
"transformers_version": "4.28.0",
|
25 |
+
"type_vocab_size": 1,
|
26 |
+
"use_cache": true,
|
27 |
+
"vocab_size": 250004
|
28 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0ecca57252344d5684f4ec27c8bc8fe3555dbf2048da5166ced6002ec8c543a9
|
3 |
+
size 2240233969
|
sentencepiece.bpe.model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cfc8146abe2a0488e9e2a0c56de7952f7c11ab059eca145a0a727afce0db2865
|
3 |
+
size 5069051
|
special_tokens_map.json
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": "<s>",
|
3 |
+
"cls_token": "<s>",
|
4 |
+
"eos_token": "</s>",
|
5 |
+
"mask_token": {
|
6 |
+
"content": "<mask>",
|
7 |
+
"lstrip": true,
|
8 |
+
"normalized": false,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false
|
11 |
+
},
|
12 |
+
"pad_token": "<pad>",
|
13 |
+
"sep_token": "</s>",
|
14 |
+
"unk_token": "<unk>"
|
15 |
+
}
|
tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c19ec03247ee31e5f42772ac32bde8dca2727b30c8310c2e585df4980a8db230
|
3 |
+
size 17083032
|
tokenizer_config.json
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": "<s>",
|
3 |
+
"clean_up_tokenization_spaces": true,
|
4 |
+
"cls_token": "<s>",
|
5 |
+
"eos_token": "</s>",
|
6 |
+
"mask_token": {
|
7 |
+
"__type": "AddedToken",
|
8 |
+
"content": "<mask>",
|
9 |
+
"lstrip": true,
|
10 |
+
"normalized": true,
|
11 |
+
"rstrip": false,
|
12 |
+
"single_word": false
|
13 |
+
},
|
14 |
+
"model_max_length": 512,
|
15 |
+
"pad_token": "<pad>",
|
16 |
+
"sep_token": "</s>",
|
17 |
+
"tokenizer_class": "XLMRobertaTokenizer",
|
18 |
+
"unk_token": "<unk>"
|
19 |
+
}
|