-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3df8fcf
commit c051e5c
Showing
10 changed files
with
2,441 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,37 @@ | ||
# Learning to Tokenize for Generative Retrieval | ||
|
||
Code of the paper [Learning to Tokenize for Generative Retrieval](https://arxiv.org/abs/2304.04171). | ||
# Learning to Tokenize for Generative Retrieval | ||
|
||
Code of the paper [Learning to Tokenize for Generative Retrieval](https://arxiv.org/abs/2304.04171). | ||
|
||
![Model](assets/model.png) | ||
|
||
## Environment | ||
pytorch, transformers, accelerate, faiss, k_means_constrained | ||
|
||
## Dataset | ||
NQ320K: unzip `dataset/nq320k.zip` | ||
|
||
Other datasets coming soon. | ||
|
||
## Training and Evaluation | ||
Code for GenRet on NQ320K: | ||
```bash | ||
python run.py --model_name t5-base --code_num 512 --max_length 3 --train_data dataset/nq320k/train.json --dev_data dataset/nq320k/dev.json --corpus_data dataset/nq320k/corpus_lite.json --save_path out/model | ||
``` | ||
|
||
|
||
Code for generative retrieval baselines: `baseline.py` | ||
|
||
Code for dense retrieval baselines: `dpr.py` | ||
|
||
## Cite | ||
``` | ||
@article{Sun2023LearningTT, | ||
title={Learning to Tokenize for Generative Retrieval}, | ||
author={Weiwei Sun and Lingyong Yan and Zheng Chen and Shuaiqiang Wang and Haichao Zhu and Pengjie Ren and Zhumin Chen and Dawei Yin and M. de Rijke and Zhaochun Ren}, | ||
journal={ArXiv}, | ||
year={2023}, | ||
volume={abs/2304.04171}, | ||
} | ||
``` | ||
|
||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.