eugene-yang
commited on
Commit
•
205e3ca
1
Parent(s):
6786b1a
update
Browse files- .gitattributes +1 -0
- README.md +24 -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,27 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
- zh
|
6 |
+
task_categories:
|
7 |
+
- text-retrieval
|
8 |
+
- zero-shot-retrieval
|
9 |
+
- information-retrieval
|
10 |
+
- zero-shot-information-retrieval
|
11 |
+
task_ids:
|
12 |
+
- passage-retrieval
|
13 |
+
- cross-language-retrieval
|
14 |
---
|
15 |
+
|
16 |
+
Model trained by [Suraj Nair](https://srnair.netlify.app/).
|
17 |
+
|
18 |
+
If you use the model, please cite our paper.
|
19 |
+
```bibtex
|
20 |
+
@inproceedings{colbert-x,
|
21 |
+
author = {Suraj Nair and Eugene Yang and Dawn Lawrie and Kevin Duh and Paul McNamee and Kenton Murray and James Mayfield and Douglas W. Oard},
|
22 |
+
title = {Transfer Learning Approaches for Building Cross-Language Dense Retrieval Models},
|
23 |
+
booktitle = {Proceedings of the 44th European Conference on Information Retrieval (ECIR)},
|
24 |
+
year = {2022},
|
25 |
+
url = {https://arxiv.org/abs/2201.08471}
|
26 |
+
}
|
27 |
+
```
|