cadurosar commited on
Commit
0c58ff0
·
1 Parent(s): fa7dd6d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md CHANGED
@@ -1,3 +1,42 @@
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
+
16
+ ## Efficient SPLADE
17
+
18
+ Efficient SPLADE model for passage retrieval. For additional details, please visit:
19
+ * paper:
20
+ * code: https://github.com/naver/splade
21
+
22
+ | | MRR@10 (MS MARCO dev) | R@1000 (MS MARCO dev) | Latency (PISA) ms | Latency (Inference) ms
23
+ | --- | --- | --- | --- | --- |
24
+ | `naver/efficient-splade-V-large` | 38.8 | 97.8 | 29.0 | 45.3
25
+ | `naver/efficient-splade-VI-BT-large` | 38.0 | 98.0 | 31.1 | 0.7
26
+
27
+ ## Citation
28
+
29
+ If you use our checkpoint, please cite our work (need to update):
30
+
31
+ ```
32
+ @misc{https://doi.org/10.48550/arxiv.2205.04733,
33
+ doi = {10.48550/ARXIV.2205.04733},
34
+ url = {https://arxiv.org/abs/2205.04733},
35
+ author = {Formal, Thibault and Lassance, Carlos and Piwowarski, Benjamin and Clinchant, Stéphane},
36
+ keywords = {Information Retrieval (cs.IR), Computation and Language (cs.CL), FOS: Computer and information sciences, FOS: Computer and information sciences},
37
+ title = {From Distillation to Hard Negative Sampling: Making Sparse Neural IR Models More Effective},
38
+ publisher = {arXiv},
39
+ year = {2022},
40
+ copyright = {Creative Commons Attribution Non Commercial Share Alike 4.0 International}
41
+ }
42
+ ```