Update dataset card
Browse files
README.md
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- question-answering
|
| 5 |
+
- text-retrieval
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
tags:
|
| 9 |
+
- search
|
| 10 |
+
- benchmark
|
| 11 |
+
- news
|
| 12 |
+
- twitter
|
| 13 |
+
pretty_name: Desearch Benchmark Questions
|
| 14 |
+
size_categories:
|
| 15 |
+
- 100K<n<1M
|
| 16 |
+
configs:
|
| 17 |
+
- config_name: web
|
| 18 |
+
data_files:
|
| 19 |
+
- split: train
|
| 20 |
+
path: questions/*.jsonl
|
| 21 |
+
- config_name: x
|
| 22 |
+
data_files:
|
| 23 |
+
- split: train
|
| 24 |
+
path: x/*.jsonl
|
| 25 |
+
---
|
| 26 |
+
|
| 27 |
+
# Desearch Benchmark Questions
|
| 28 |
+
|
| 29 |
+
Fresh, self-contained benchmark questions for evaluating web and X (Twitter) search.
|
| 30 |
+
Regenerated daily from recent news and tweets. Each question is answerable from public
|
| 31 |
+
sources within a dated window — there are no answer keys or source URLs in the public data,
|
| 32 |
+
so systems have to actually search rather than recall.
|
| 33 |
+
|
| 34 |
+
## Subsets
|
| 35 |
+
|
| 36 |
+
| Path | Lane | Built from |
|
| 37 |
+
| --- | --- | --- |
|
| 38 |
+
| `questions/` | Web / news | Recent news articles (RSS + news sitemaps) |
|
| 39 |
+
| `x/` | X / Twitter | High-signal tweets from the past 24h |
|
| 40 |
+
|
| 41 |
+
Files are one per day: `<YYYY-MM-DD>.jsonl` (web) and `x-<YYYY-MM-DD>.jsonl` (X).
|
| 42 |
+
|
| 43 |
+
## Schema
|
| 44 |
+
|
| 45 |
+
Every row is source-free:
|
| 46 |
+
|
| 47 |
+
```json
|
| 48 |
+
{
|
| 49 |
+
"id": "…",
|
| 50 |
+
"question": "…",
|
| 51 |
+
"difficulty": "easy | medium | hard",
|
| 52 |
+
"start_date": "YYYY-MM-DDTHH:MM:SSZ",
|
| 53 |
+
"end_date": "YYYY-MM-DDTHH:MM:SSZ"
|
| 54 |
+
}
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
`start_date`/`end_date` bound the window in which the question is answerable — use them as a
|
| 58 |
+
date filter when searching. Gold answers are kept private and are never uploaded.
|
| 59 |
+
|
| 60 |
+
## Loading
|
| 61 |
+
|
| 62 |
+
```python
|
| 63 |
+
from datasets import load_dataset
|
| 64 |
+
|
| 65 |
+
web = load_dataset("desearch/dataset", "web", split="train")
|
| 66 |
+
x = load_dataset("desearch/dataset", "x", split="train")
|
| 67 |
+
```
|
| 68 |
+
|
| 69 |
+
## Updates
|
| 70 |
+
|
| 71 |
+
Regenerated daily by an open-source generator (news twice daily, X once daily), so the set
|
| 72 |
+
grows one file per lane per day.
|