nielsr HF Staff commited on
Commit
d6bbbb7
·
verified ·
1 Parent(s): 6fa52ef

Improve dataset card: Add metadata and task category

Browse files

This PR enhances the dataset card by correctly structuring the metadata. It moves the `license` and `language` fields from the Markdown content to the YAML front matter and adds `task_categories: text-ranking`, along with relevant tags for better discoverability. The paper link in the content has been formatted with its title, and a new section has been added to list other related datasets from the RAVine project available on the Hugging Face Hub, providing a more comprehensive overview for users.

Files changed (1) hide show
  1. README.md +23 -14
README.md CHANGED
@@ -1,23 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # RAVine-qrels
2
 
3
  The qrels in this repo refer to the relevance labels in MS MARCO V2.1 corpus for the queries of the RAVine test set. We collected them from [trec-2024-rag](https://trec.nist.gov/data/rag2024.html) and converted them into jsonline formats.
4
 
5
- <br><br>
6
-
7
-
8
 
9
  Github: https://github.com/SwordFaith/RAVine
10
 
11
- Paper: https://arxiv.org/abs/2507.16725
12
 
13
- Test set: https://huggingface.co/datasets/sapphirex/RAVine-nuggets
14
 
15
-
16
-
17
-
18
- ---
19
- license: apache-2.0
20
-
21
- language:
22
- - en
23
- ---
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - text-ranking
7
+ tags:
8
+ - retrieval-augmented-generation
9
+ - llm
10
+ - benchmark
11
+ - evaluation
12
+ - agentic-ai
13
+ - search
14
+ - qrels
15
+ ---
16
+
17
  # RAVine-qrels
18
 
19
  The qrels in this repo refer to the relevance labels in MS MARCO V2.1 corpus for the queries of the RAVine test set. We collected them from [trec-2024-rag](https://trec.nist.gov/data/rag2024.html) and converted them into jsonline formats.
20
 
21
+ This dataset is associated with the paper [RAVine: Reality-Aligned Evaluation for Agentic Search](https://arxiv.org/abs/2507.16725).
 
 
22
 
23
  Github: https://github.com/SwordFaith/RAVine
24
 
25
+ ### Related Datasets on Hugging Face
26
 
27
+ The RAVine project includes several other datasets available on Hugging Face:
28
 
29
+ * **Queries & Nuggets**: [https://huggingface.co/datasets/sapphirex/RAVine-nuggets](https://huggingface.co/datasets/sapphirex/RAVine-nuggets)
30
+ * **Dense Index**: [https://huggingface.co/datasets/sapphirex/RAVine-dense-index](https://huggingface.co/datasets/sapphirex/RAVine-dense-index)
31
+ * **URL-Docid Mapper**: [https://huggingface.co/datasets/sapphirex/RAVine-mapper](https://huggingface.co/datasets/sapphirex/RAVine-mapper)
32
+ * **Running logs (for reproduction)**: [https://huggingface.co/datasets/sapphirex/RAVine-logs](https://huggingface.co/datasets/sapphirex/RAVine-logs)