--- license: mit task_categories: - question-answering - text-retrieval language: - en tags: - search - benchmark - news - twitter pretty_name: Desearch Benchmark Questions size_categories: - 100K.jsonl` (web) and `x-.jsonl` (X). ## Schema Every row is source-free: ```json { "id": "…", "question": "…", "difficulty": "easy | medium | hard", "start_date": "YYYY-MM-DDTHH:MM:SSZ", "end_date": "YYYY-MM-DDTHH:MM:SSZ" } ``` `start_date`/`end_date` bound the window in which the question is answerable — use them as a date filter when searching. Gold answers are kept private and are never uploaded. ## Loading ```python from datasets import load_dataset web = load_dataset("desearch/dataset", "web", split="train") x = load_dataset("desearch/dataset", "x", split="train") ``` ## Updates Regenerated daily by an open-source generator (news twice daily, X once daily), so the set grows one file per lane per day.