Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,35 @@
|
|
1 |
---
|
2 |
license: cc-by-nc-sa-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: cc-by-nc-sa-4.0
|
3 |
+
language: "en"
|
4 |
+
tags:
|
5 |
+
- splade
|
6 |
+
- query-expansion
|
7 |
+
- document-expansion
|
8 |
+
- bag-of-words
|
9 |
+
- passage-retrieval
|
10 |
+
- knowledge-distillation
|
11 |
+
- document encoder
|
12 |
+
datasets:
|
13 |
+
- ms_marco
|
14 |
---
|
15 |
+
## Efficient SPLADE
|
16 |
+
Efficient SPLADE model for passage retrieval. This architecture uses two distinct models for query and document inference. This is the **query** one, please also download the **doc** one (https://huggingface.co/naver/efficient-splade-VI-BT-large-doc). For additional details, please visit:
|
17 |
+
* paper:
|
18 |
+
* code: https://github.com/naver/splade
|
19 |
+
| | MRR@10 (MS MARCO dev) | R@1000 (MS MARCO dev) | Latency (PISA) ms | Latency (Inference) ms
|
20 |
+
| --- | --- | --- | --- | --- |
|
21 |
+
| `naver/efficient-splade-V-large` | 38.8 | 98.0 | 29.0 | 45.3
|
22 |
+
| `naver/efficient-splade-VI-BT-large` | 38.0 | 97.8 | 31.1 | 0.7
|
23 |
+
## Citation
|
24 |
+
If you use our checkpoint, please cite our work (need to update):
|
25 |
+
```
|
26 |
+
@misc{https://doi.org/10.48550/arxiv.2205.04733,
|
27 |
+
doi = {10.48550/ARXIV.2205.04733},
|
28 |
+
url = {https://arxiv.org/abs/2205.04733},
|
29 |
+
author = {Formal, Thibault and Lassance, Carlos and Piwowarski, Benjamin and Clinchant, Stéphane},
|
30 |
+
keywords = {Information Retrieval (cs.IR), Computation and Language (cs.CL), FOS: Computer and information sciences, FOS: Computer and information sciences},
|
31 |
+
title = {From Distillation to Hard Negative Sampling: Making Sparse Neural IR Models More Effective},
|
32 |
+
publisher = {arXiv},
|
33 |
+
year = {2022},
|
34 |
+
copyright = {Creative Commons Attribution Non Commercial Share Alike 4.0 International}
|
35 |
+
}
|