Update README.md
Browse files
README.md
CHANGED
@@ -5,4 +5,43 @@ language:
|
|
5 |
base_model:
|
6 |
- meta-llama/Meta-Llama-3-8B-Instruct
|
7 |
library_name: transformers
|
8 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
base_model:
|
6 |
- meta-llama/Meta-Llama-3-8B-Instruct
|
7 |
library_name: transformers
|
8 |
+
---
|
9 |
+
|
10 |
+
# π§ LLM-QE: Improving Query Expansion by Aligning Large Language Models with Ranking Preferences
|
11 |
+
|
12 |
+
This is the official model for **[LLM-QE: Improving Query Expansion by Aligning Large Language Models with Ranking Preferences](https://arxiv.org/abs/2502.17057)**.
|
13 |
+
|
14 |
+
## Model Description
|
15 |
+
The LLM-QE model is designed to enhance **query expansion** in **information retrieval** tasks by leveraging **Large Language Models (LLMs)**, improving the **alignment between LLMs and ranking preferences** during query expansion.
|
16 |
+
|
17 |
+
---
|
18 |
+
|
19 |
+
## π **Paper**
|
20 |
+
For a detailed explanation of the methodology and experiments, please refer to our paper:
|
21 |
+
[**LLM-QE: Improving Query Expansion by Aligning Large Language Models with Ranking Preferences**](https://arxiv.org/abs/2502.17057)
|
22 |
+
|
23 |
+
---
|
24 |
+
|
25 |
+
## π Reproduce the Results
|
26 |
+
To reproduce the experiments and benchmarks from the paper, follow the instructions provided in the official GitHub repository:
|
27 |
+
|
28 |
+
[π GitHub: NEUIR/LLM-QE](https://github.com/NEUIR/LLM-QE).
|
29 |
+
|
30 |
+
## π Model Details
|
31 |
+
- Model Name: LLM-QE-DPO
|
32 |
+
- Architecture: LLaMA3-8B-Instruct with query expansion alignment using ranking preferences
|
33 |
+
|
34 |
+
## π Citation
|
35 |
+
If you use LLM-QE in your work, please consider citing our paper:
|
36 |
+
```
|
37 |
+
@misc{yao2025llmqeimprovingqueryexpansion,
|
38 |
+
title={LLM-QE: Improving Query Expansion by Aligning Large Language Models with Ranking Preferences},
|
39 |
+
author={Sijia Yao and Pengcheng Huang and Zhenghao Liu and Yu Gu and Yukun Yan and Shi Yu and Ge Yu},
|
40 |
+
year={2025},
|
41 |
+
eprint={2502.17057},
|
42 |
+
archivePrefix={arXiv},
|
43 |
+
primaryClass={cs.IR},
|
44 |
+
url={https://arxiv.org/abs/2502.17057},
|
45 |
+
}
|
46 |
+
|
47 |
+
```
|