Add metadata, paper link, and GitHub repository to dataset card

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +20 -6
README.md CHANGED
@@ -1,22 +1,36 @@
1
  ---
2
- license: mit
3
  language:
4
  - en
 
 
 
5
  ---
6
 
7
- This repo contains the fixed wiki corpus, which is based on the wiki-18 corpus and supplemented by the HotpotQA, 2WikiMultiHopQA, Musique datasets. Comparing with the original Wiki-18 corpus, this version contains 295,311 new documents which are critical for answering the question for the above three datasets.
8
 
9
- We have already embedded the corpus with the Qwen3-8B-Embedding. As the Qwen3-8B-Embedding is trained with the MRL, we just provide the 4096-dimension version. If you are limited by the computing resource, please just run
10
 
11
- ```
 
 
 
 
 
 
 
 
 
 
12
  python convert_faiss_dim.py --input {your_faiss_manifest_path} --output {your_target_file_name_without_postfix} --target_dim {any_dim_between_32_and_4096} --normalize
13
  ```
14
 
15
- Then you can launch the search service with the converted index along with the original corpus. To enable the Qwen3-8B-Embedding's MRL capability, you should launch the vllm server with the config ----hf-overrides {"is_matryoshka": true}, and send request with the dimension argument.
 
 
16
 
17
  If you find this repo helpful, please cite:
18
 
19
- ```
20
  @misc{zhao2026retrievalrewardtrainingprotocols,
21
  title={Retrieval, Reward, and Training Protocols: What Matters in Training Search Agents?},
22
  author={Yibo Zhao and Zichen Ding and Jiayi Wu and Zun Wang and Xiang Li},
 
1
  ---
 
2
  language:
3
  - en
4
+ license: mit
5
+ task_categories:
6
+ - text-retrieval
7
  ---
8
 
9
+ This repository contains the **Wiki-Fixed** corpus, presented in the paper [Retrieval, Reward, and Training Protocols: What Matters in Training Search Agents?](https://huggingface.co/papers/2605.27881).
10
 
11
+ **Code:** [https://github.com/YiboZhao624/SearchAgentReview](https://github.com/YiboZhao624/SearchAgentReview)
12
 
13
+ ### Description
14
+
15
+ The Wiki-Fixed corpus is based on the Wikipedia 2018 (Wiki-18) corpus and supplemented by the HotpotQA, 2WikiMultiHopQA, and Musique datasets. Compared to the original Wiki-18 corpus, this version contains 295,311 new documents which are critical for answering questions in these multi-hop reasoning datasets.
16
+
17
+ The corpus has been embedded using **Qwen3-8B-Embedding**. As the Qwen3-8B-Embedding is trained with Matryoshka Representation Learning (MRL), we provide the 4096-dimension version.
18
+
19
+ ### Sample Usage
20
+
21
+ If you are limited by computing resources, you can use the provided dimensionality reduction script to target a lower dimension (any dimension between 32 and 4096):
22
+
23
+ ```bash
24
  python convert_faiss_dim.py --input {your_faiss_manifest_path} --output {your_target_file_name_without_postfix} --target_dim {any_dim_between_32_and_4096} --normalize
25
  ```
26
 
27
+ After conversion, you can launch the search service with the converted index along with the original corpus. To enable the Qwen3-8B-Embedding's MRL capability, launch the vLLM server with the config `--hf-overrides {"is_matryoshka": true}`, and send requests with the dimension argument.
28
+
29
+ ### Citation
30
 
31
  If you find this repo helpful, please cite:
32
 
33
+ ```bibtex
34
  @misc{zhao2026retrievalrewardtrainingprotocols,
35
  title={Retrieval, Reward, and Training Protocols: What Matters in Training Search Agents?},
36
  author={Yibo Zhao and Zichen Ding and Jiayi Wu and Zun Wang and Xiang Li},