fschlatt commited on
Commit
9908944
·
verified ·
1 Parent(s): 86f4284

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -1
README.md CHANGED
@@ -1,3 +1,48 @@
1
  ---
2
  license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ pipeline_tag: text-ranking
4
+ library_name: lightning-ir
5
+ base_model:
6
+ - webis/tite-2-late-upscale
7
+ tags:
8
+ - bi-encoder
9
+ ---
10
+
11
+ # TITE: Token-Independent Text Encoder
12
+
13
+ This model is presented in the paper [TITE: Token-Independent Text Encoder for Information Retrieval](https://dl.acm.org/doi/10.1145/3726302.3730094). It's an efficient bi-encoder model for creating embeddings for queries and documents.
14
+
15
+
16
+ We provide the following pre-trained models encoder models:
17
+
18
+ - [webis/tite-2-late](https://huggingface.co/webis/tite-2-late)
19
+ - [webis/tite-2-late-upscale](https://huggingface.co/webis/tite-2-late-upscale)
20
+
21
+ We provide the following fine-tuned bi-encoder models for text ranking:
22
+
23
+ | Model | TREC DL 19 | TREC DL 20 | BEIR (geometric mean) |
24
+ |-------|------------|------------|-----------------------|
25
+ | [`webis/tite-2-late-msmarco`](https://huggingface.co/webis/tite-2-late-msmarco) | 0.69 | 0.71 | 0.40 |
26
+ | [`webis/tite-2-late-upscale-msmarco`](https://huggingface.co/webis/tite-2-late-upscale-msmarco) | 0.68 | 0.71 | 0.41 |
27
+
28
+ ## Usage
29
+
30
+ See the [repository](https://github.com/webis-de/tite>) for more information on how to use the or reproduce the model.
31
+
32
+ ## Citation
33
+
34
+ If you use this code or the models in your research, please cite our paper:
35
+
36
+ ```bibtex
37
+ @InProceedings{schlatt:2025,
38
+ author = {Ferdinand Schlatt and Tim Hagen and Martin Potthast and Matthias Hagen},
39
+ booktitle = {48th International ACM SIGIR Conference on Research and Development in Information Retrieval (SIGIR 2025)},
40
+ doi = {10.1145/3726302.3730094},
41
+ month = jul,
42
+ pages = {2493--2503},
43
+ publisher = {ACM},
44
+ site = {Padua, Italy},
45
+ title = {{TITE: Token-Independent Text Encoder for Information Retrieval}},
46
+ year = 2025
47
+ }
48
+ ```