Mosaic-glasses commited on
Commit
3aad446
·
verified ·
1 Parent(s): e5a9f84

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -0
README.md CHANGED
@@ -22,6 +22,12 @@ tags:
22
  **INF-Query-Aligner** is a specialized component of the **INF-X-Retriever** framework, designed to distill the core retrieval intent from complex, verbose, or reasoning-intensive queries. Built upon the **Qwen2.5-7B-instruct** foundation and fine-tuned via Reinforcement Learning, it transforms raw user queries into concise, search-optimized queries for dense retrieval systems.
23
 
24
  In our experiments, a single canonical query-writing prompt was applied across all datasets to ensure consistency and reproducibility.
 
 
 
 
 
 
25
 
26
  This model is a key enabler for **INF-X-Retriever**'s state-of-the-art performance, currently holding the **No. 1 position** on the [BRIGHT Benchmark](https://brightbenchmark.github.io/) (as of Dec 17, 2025).
27
 
 
22
  **INF-Query-Aligner** is a specialized component of the **INF-X-Retriever** framework, designed to distill the core retrieval intent from complex, verbose, or reasoning-intensive queries. Built upon the **Qwen2.5-7B-instruct** foundation and fine-tuned via Reinforcement Learning, it transforms raw user queries into concise, search-optimized queries for dense retrieval systems.
23
 
24
  In our experiments, a single canonical query-writing prompt was applied across all datasets to ensure consistency and reproducibility.
25
+ ```python
26
+ QUERY_WRITER_PROMPT = (
27
+ "For the input query, formulating a concise search query for dense retrieval by distilling the core intent from a complex user prompt and ignoring LLM instructions."
28
+ "The response should be less than 200 words"
29
+ )
30
+ ```
31
 
32
  This model is a key enabler for **INF-X-Retriever**'s state-of-the-art performance, currently holding the **No. 1 position** on the [BRIGHT Benchmark](https://brightbenchmark.github.io/) (as of Dec 17, 2025).
33