Add dataset card and metadata
#1
by nielsr HF Staff - opened
README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-retrieval
|
| 5 |
+
tags:
|
| 6 |
+
- agentic-search
|
| 7 |
+
- bm25
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Pi-Serini
|
| 11 |
+
|
| 12 |
+
This repository contains data and artifacts associated with the paper [Rethinking Agentic Search with Pi-Serini: Is Lexical Retrieval Sufficient?](https://huggingface.co/papers/2605.10848).
|
| 13 |
+
|
| 14 |
+
Pi-Serini is a reusable, benchmark-driven search-agent workspace designed for index-driven BM25 retrieval, agentic search, and benchmark-aware evaluation. It revisits whether a lexical retriever (BM25) suffices when paired with capable frontier Large Language Models (LLMs) in an agentic loop.
|
| 15 |
+
|
| 16 |
+
- **Project Page:** [https://ricky42613.github.io/piserini](https://ricky42613.github.io/piserini)
|
| 17 |
+
- **GitHub Repository:** [https://github.com/justram/pi-serini](https://github.com/justram/pi-serini)
|
| 18 |
+
|
| 19 |
+
## Supported Benchmarks
|
| 20 |
+
|
| 21 |
+
The Pi-Serini framework supports several benchmarks for evaluation:
|
| 22 |
+
- `browsecomp-plus`: Default packaged benchmark used to evaluate deep research capabilities.
|
| 23 |
+
- `msmarco-v1-passage`: Index-driven MS MARCO v1 passage benchmark.
|
| 24 |
+
- `benchmark-template`: A tiny local end-to-end demo benchmark for validation.
|
| 25 |
+
|
| 26 |
+
## Citation
|
| 27 |
+
|
| 28 |
+
```bibtex
|
| 29 |
+
@misc{hsu2026rethinkingagenticsearchpiserini,
|
| 30 |
+
title = {Rethinking Agentic Search with Pi-Serini: Is Lexical Retrieval Sufficient?},
|
| 31 |
+
author = {Tz-Huan Hsu and Jheng-Hong Yang and Jimmy Lin},
|
| 32 |
+
year = {2026},
|
| 33 |
+
eprint = {2605.10848},
|
| 34 |
+
archivePrefix = {arXiv},
|
| 35 |
+
primaryClass = {cs.IR},
|
| 36 |
+
url = {https://arxiv.org/abs/2605.10848}
|
| 37 |
+
}
|
| 38 |
+
```
|