created model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
base_model:
|
| 5 |
+
- google-t5/t5-large
|
| 6 |
+
pipeline_tag: text-classification
|
| 7 |
+
tags:
|
| 8 |
+
- gen-ir
|
| 9 |
+
- information-retrieval
|
| 10 |
+
- ir
|
| 11 |
+
---
|
| 12 |
+
This repository contains one of the models analyzed in our paper [Reverse-Engineering the Retrieval Process in GenIR Models](https://dl.acm.org/doi/abs/10.1145/3726302.3730076).
|
| 13 |
+
|
| 14 |
+
### Training
|
| 15 |
+
The model is based on T5-large and was trained on the TriviaQA dataset (with only generated questions as input) as a atomic GenIR model using the setup of [DSI](https://arxiv.org/abs/2202.06991).
|
| 16 |
+
|
| 17 |
+
### Model Overview
|
| 18 |
+
| Model | Huggingface URL |
|
| 19 |
+
| ------------ | ----------------------------------------------------------------------- |
|
| 20 |
+
| NQ10k | [DSI-large-NQ10k](https://huggingface.co/AnReu/DSI-large-NQ10k) |
|
| 21 |
+
| NQ100k | [DSI-large-NQ100k](https://huggingface.co/AnReu/DSI-large-NQ100k) |
|
| 22 |
+
| NQ320k | [DSI-large-NQ320k](https://huggingface.co/AnReu/DSI-large-NQ320k) |
|
| 23 |
+
| Trivia-QA | [DSI-large-TriviaQA](https://huggingface.co/AnReu/DSI-large-TriviaQA) |
|
| 24 |
+
| Trivia-QA QG | [DSI-large-TriviaQA QG](https://huggingface.co/AnReu/DSI-large-TriviaQA-QG) |
|
| 25 |
+
### Citation
|
| 26 |
+
```
|
| 27 |
+
@inproceedings{Reusch2025Reverse,
|
| 28 |
+
author = {Reusch, Anja and Belinkov, Yonatan},
|
| 29 |
+
title = {Reverse-Engineering the Retrieval Process in GenIR Models},
|
| 30 |
+
year = {2025},
|
| 31 |
+
isbn = {9798400715921},
|
| 32 |
+
publisher = {Association for Computing Machinery},
|
| 33 |
+
address = {New York, NY, USA},
|
| 34 |
+
url = {https://doi.org/10.1145/3726302.3730076},
|
| 35 |
+
doi = {10.1145/3726302.3730076},
|
| 36 |
+
booktitle = {Proceedings of the 48th International ACM SIGIR Conference on Research and Development in Information Retrieval},
|
| 37 |
+
pages = {668–677},
|
| 38 |
+
numpages = {10},
|
| 39 |
+
location = {Padua, Italy},
|
| 40 |
+
series = {SIGIR '25}
|
| 41 |
+
}
|
| 42 |
+
```
|