Update README.md
Browse files
README.md
CHANGED
|
@@ -10,30 +10,55 @@ tags:
|
|
| 10 |
size_categories:
|
| 11 |
- 10K<n<100K
|
| 12 |
---
|
| 13 |
-
# Dataset Card for Agentic Search Dataset
|
| 14 |
|
| 15 |
-
|
| 16 |
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
| 20 |
|
| 21 |
## Dataset Description
|
| 22 |
|
| 23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
|
| 25 |
项目数据集来自 2 个开放数据集:
|
| 26 |
- Multi-CPR:包含三个应用场景(医疗、电商、视频),数据格式为单轮问答
|
| 27 |
- LexRAG:包含中文法律咨询场景,数据格式为多轮对话
|
| 28 |
|
| 29 |
-
我们从
|
| 30 |
|
| 31 |
-
对于LexRAG数据集,我们选取了其中的对话历史+最新问题场景,即
|
| 32 |
|
| 33 |
数据已经完成清洗和预处理,可直接用作重写和评估脚本的输入。
|
| 34 |
|
| 35 |
-
- query数据存放在`.\data\rawData\xxx_query.txt`
|
|
|
|
|
|
|
| 36 |
|
| 37 |
-
-
|
| 38 |
|
| 39 |
-
- groundtruth标签/索引存放在`.\data\qrelData\xxx_dev.tsv`
|
|
|
|
| 10 |
size_categories:
|
| 11 |
- 10K<n<100K
|
| 12 |
---
|
|
|
|
| 13 |
|
| 14 |
+
# Dataset Card for Agentic Retrieval Benchmark
|
| 15 |
|
| 16 |
+
In recent years, there has been a large body of work in the field of text retrieval. However, existing studies are often scattered across different datasets, and their comparisons are partial and fragmented, lacking a comprehensive benchmark for evaluating retrieval performance.
|
| 17 |
+
|
| 18 |
+
This dataset is provided as part of the Agentic Retrieval Benchmark.
|
| 19 |
+
|
| 20 |
+
The project aims to establish a reproducible benchmark for LLM-augmented text retrieval. Under a unified dataset and pipeline, it compares the performance of traditional BM25 and vector-based retrieval methods, and evaluates the contribution of each component in the “query rewriting + vectorization” process.
|
| 21 |
|
| 22 |
## Dataset Description
|
| 23 |
|
| 24 |
+
The dataset is constructed from two open-source datasets:
|
| 25 |
+
|
| 26 |
+
* **Multi-CPR**: Covers three application scenarios (medical, e-commerce, and video), formatted as single-turn question-answer pairs.
|
| 27 |
+
* **LexRAG**: Focuses on Chinese legal consultation scenarios, formatted as multi-turn dialogues.
|
| 28 |
+
|
| 29 |
+
From the Multi-CPR dataset, we sample 1,000 queries and approximately 10,000 corpus passages for each of the three scenarios, using their corresponding indices as ground truth.
|
| 30 |
+
|
| 31 |
+
For the LexRAG dataset, we adopt a dialogue-history-plus-current-question setup. That is, each query consists of the full conversation history up to the current turn, combined with the latest user question.
|
| 32 |
+
|
| 33 |
+
The data has been cleaned and preprocessed, and can be directly used as input for query rewriting and evaluation scripts.
|
| 34 |
+
|
| 35 |
+
* Query data is stored in `.\data\rawData\xxx_query.txt`
|
| 36 |
+
* Passage data is stored in `.\data\rawData\xxx_subset.tsv`
|
| 37 |
+
* Ground truth labels/indices are stored in `.\data\qrelData\xxx_dev.tsv`
|
| 38 |
+
|
| 39 |
+
# Dataset Card for Agentic Retrieval Benchmark
|
| 40 |
+
|
| 41 |
+
近年来,在文本检索领域已有大量相关工作,但现有工作大多分散在不同的数据集上,且结果对比片面,缺少一个较为全面的文本检索性能指标测试基准。
|
| 42 |
+
|
| 43 |
+
本数据集为 Agentic Retrieval Benchmark 的配套数据。
|
| 44 |
+
|
| 45 |
+
项目旨在为大模型增强的文本检索建立可复现的基准:在统一的数据与流水线下比较传统 BM25 与向量检索的性能指标,并检验“重写 + 向量化”过程中各环节的贡献。
|
| 46 |
+
|
| 47 |
+
## Dataset Description
|
| 48 |
|
| 49 |
项目数据集来自 2 个开放数据集:
|
| 50 |
- Multi-CPR:包含三个应用场景(医疗、电商、视频),数据格式为单轮问答
|
| 51 |
- LexRAG:包含中文法律咨询场景,数据格式为多轮对话
|
| 52 |
|
| 53 |
+
我们从 Multi-CPR 数据集的 3 个场景中分别提取了 1000 条 query 和约 10000 条 corpus,并以对应的索引作为 groundtruth。
|
| 54 |
|
| 55 |
+
对于 LexRAG 数据集,我们选取了其中的对话历史+最新问题场景,即每次用于 query 的文本等于该次会话的前面所有轮次问答历史+当前最新一轮的提问。
|
| 56 |
|
| 57 |
数据已经完成清洗和预处理,可直接用作重写和评估脚本的输入。
|
| 58 |
|
| 59 |
+
- query 数据存放在`.\data\rawData\xxx_query.txt`
|
| 60 |
+
|
| 61 |
+
- passage 数据`.\data\rawData\xxx_subset.tsv`
|
| 62 |
|
| 63 |
+
- groundtruth 标签/索引存放在`.\data\qrelData\xxx_dev.tsv`
|
| 64 |
|
|
|