nielsr HF Staff commited on
Commit
787f3af
·
verified ·
1 Parent(s): 64a8a2e

Improve dataset card for RAVine-mapper

Browse files

This PR updates the dataset card for `RAVine-mapper` by:
- Moving the `license` from the Markdown content to the YAML metadata section.
- Adding `task_categories: other` and relevant `tags` (`agentic-llm`, `search`, `evaluation`, `benchmark`) to the metadata for better discoverability.
- Expanding the content to provide more context about `RAVine-mapper`'s role within the [RAVine: Reality-Aligned Evaluation for Agentic Search](https://arxiv.org/abs/2507.16725) framework.
- Listing other related Hugging Face datasets that are part of the RAVine benchmark, as detailed in the main GitHub repository.

Files changed (1) hide show
  1. README.md +22 -11
README.md CHANGED
@@ -1,19 +1,30 @@
1
- # RAVine-mapper
2
-
3
-
4
- This repo contains the mapping between URLs and docids needed by the implementation of the fetch tool in the RAVine framework. Please download this when using RAVine.
5
-
 
 
 
 
 
6
 
7
- <br><br>
8
 
 
9
 
 
10
 
 
11
 
12
- Github: https://github.com/SwordFaith/RAVine
13
 
14
- Paper: https://arxiv.org/abs/2507.16725
15
 
 
16
 
17
- ---
18
- license: apache-2.0
19
- ---
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - other
5
+ tags:
6
+ - agentic-llm
7
+ - search
8
+ - evaluation
9
+ - benchmark
10
+ ---
11
 
12
+ # RAVine-mapper
13
 
14
+ This repository contains the URL-to-document ID mapping files (`RAVine-mapper`), which are crucial for the implementation of the `fetch` tool within the [RAVine: Reality-Aligned Evaluation for Agentic Search](https://arxiv.org/abs/2507.16725) framework. This dataset is essential when utilizing RAVine for agentic search evaluations.
15
 
16
+ RAVine (Reality-Aligned eValuation framework for agentic LLMs with search) is a comprehensive evaluation system designed for agentic search. It encompasses a web environment, benchmark datasets, and a novel evaluation method, providing a full-process, reproducible, and goal-aligned evaluation sandbox for agentic LLMs with search capabilities.
17
 
18
+ **Paper:** [RAVine: Reality-Aligned Evaluation for Agentic Search](https://arxiv.org/abs/2507.16725)
19
 
20
+ **GitHub Repository:** [https://github.com/SwordFaith/RAVine](https://github.com/SwordFaith/RAVine)
21
 
22
+ ## Related RAVine Datasets on Hugging Face
23
 
24
+ The RAVine framework comprises several interlinked datasets, all available on Hugging Face:
25
 
26
+ * **Queries & Nuggets:** [sapphirex/RAVine-nuggets](https://huggingface.co/datasets/sapphirex/RAVine-nuggets)
27
+ * **Raw Qrels:** [sapphirex/RAVine-qrels](https://huggingface.co/datasets/sapphirex/RAVine-qrels)
28
+ * **Dense Index:** [sapphirex/RAVine-dense-index](https://huggingface.co/datasets/sapphirex/RAVine-dense-index)
29
+ * **URL-Docid Mapper (this dataset):** [sapphirex/RAVine-mapper](https://huggingface.co/datasets/sapphirex/RAVine-mapper)
30
+ * **Running logs (for reproduction):** [sapphirex/RAVine-logs](https://huggingface.co/datasets/sapphirex/RAVine-logs)