Add dataset card for XBCP

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +63 -0
README.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - text-retrieval
4
+ - question-answering
5
+ language:
6
+ - en
7
+ - zh
8
+ - fr
9
+ - de
10
+ - ja
11
+ - ko
12
+ - pt
13
+ - es
14
+ - sw
15
+ - wo
16
+ - yo
17
+ - zu
18
+ ---
19
+
20
+ # XBCP: Cross-lingual BrowseComp-Plus
21
+
22
+ [**Paper**](https://huggingface.co/papers/2606.15345) | [**GitHub**](https://github.com/paddler2022/XBCP)
23
+
24
+ XBCP (Cross-lingual BrowseComp-Plus) is a controlled benchmark designed to evaluate deep research agents and retrievers. While deep research agents are typically evaluated on their ability to reason over retrieved sources in the same language as the query, XBCP tests their performance when evidence appears in different languages.
25
+
26
+ The dataset preserves the English question-and-answer space of [BrowseComp-Plus](https://github.com/texttron/BrowseComp-Plus) but translates supporting evidence documents into 12 languages spanning high-resource and low-resource regimes.
27
+
28
+ ## Dataset Summary
29
+
30
+ XBCP instantiates two complementary evaluation settings:
31
+ - **Cross-lingual**: Each query is paired with evidence in a single assigned non-English language.
32
+ - **Multilingual**: The full evidence corpus is distributed equally and randomly across 12 languages.
33
+
34
+ ### Supported Languages
35
+ The benchmark includes evidence translated into:
36
+ - **High-resource**: Chinese (`zh`), French (`fr`), German (`de`), Japanese (`ja`), Korean (`ko`), Portuguese (`pt`), Spanish (`es`).
37
+ - **Low-resource**: Swahili (`sw`), Wolof (`wo`), Yoruba (`yo`), Zulu (`zu`).
38
+ - **Reference**: English (`en`).
39
+
40
+ ## Sample Usage
41
+
42
+ You can download the translated corpora and pre-built retrieval indexes (supporting various retrievers like BM25, Qwen3-Embedding, and Multilingual-E5) using the Hugging Face CLI:
43
+
44
+ ```bash
45
+ # Download translated corpora
46
+ huggingface-cli download UTokyo-Yokoya-Lab/XBCP data --repo-type dataset --local-dir .
47
+
48
+ # Download pre-built indexes
49
+ huggingface-cli download UTokyo-Yokoya-Lab/XBCP indexes --repo-type dataset --local-dir .
50
+ ```
51
+
52
+ For full reproduction scripts and evaluation pipelines, please refer to the [official GitHub repository](https://github.com/paddler2022/XBCP).
53
+
54
+ ## Citation
55
+
56
+ ```bibtex
57
+ @article{lu2026beyond,
58
+ title={Beyond Monolingual Deep Research: Evaluating Agents and Retrievers with Cross-Lingual BrowseComp-Plus},
59
+ author={Lu, Yuheng and Zeng, Qingcheng and Qi, Heli and Yu, Puxuan and Zhao, Fuheng and Yang, Rui and Yanaka, Hitomi and Yokoya, Naoto and Xuan, Weihao},
60
+ journal={arXiv preprint arXiv:2606.15345},
61
+ year={2026}
62
+ }
63
+ ```