rajatagarwal457 commited on
Commit
d070c61
·
verified ·
1 Parent(s): 103588c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +92 -0
README.md ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ pretty_name: GDELT-Forecast Binary
6
+ size_categories:
7
+ - 1K<n<10K
8
+ task_categories:
9
+ - text-generation
10
+ - question-answering
11
+ tags:
12
+ - forecasting
13
+ - temporal-reasoning
14
+ - gdelt
15
+ - news
16
+ - evaluation
17
+ ---
18
+
19
+ # GDELT-Forecast Binary
20
+
21
+ 1,215 yes/no forecasting questions generated from clusters of news articles in the GDELT 2.0 corpus (Aug 2025 – Apr 2026). Each question is paired with the original seed-event articles, top-5 retrieved evidence articles dated strictly before the question creation date, and a verified ground-truth answer.
22
+
23
+ ## Intended use
24
+
25
+ Training and evaluating LLM-based forecasting models in a *strict forecasting posture* — the model sees only news that was publicly available before the question's creation date, then predicts the resolution. Companion to [`gdelt-forecast-freeform`](https://huggingface.co/datasets/rajatagarwal457/gdelt-forecast-freeform), which contains 924 non-binary questions (name, number, date, free-form) built from the same corpus.
26
+
27
+ ## How it was built
28
+
29
+ Five-stage pipeline over the GDELT 2.0 corpus (~31.7 M articles):
30
+
31
+ 1. **Politics/geopolitics filter** — GPT-4o-mini classifies articles by topic; ~2 % retained.
32
+ 2. **Event clustering** — articles describing the same event clustered with a similarity-graph approach. 2,721 clusters of size 3-5 retained.
33
+ 3. **Question generation** — GPT-4o reads each cluster and writes a forecasting question that resolves *after* the most recent article in the cluster. Answer type pre-assigned (here: yes/no). Sources must agree on the answer.
34
+ 4. **Evidence retrieval** — for each question, top-5 articles retrieved from the corpus via TF-IDF ∪ OpenAI-embed FAISS → OpenAI rerank, filtered to publication date strictly < question creation date.
35
+ 5. **Aggregation** — questions with ≥ 5 evidence articles kept. No similarity-based dedup at this stage (we leave that to downstream consumers).
36
+
37
+ ## Schema
38
+
39
+ | Column | Type | Description |
40
+ |---|---|---|
41
+ | `qid` | int | Synthetic question ID. Stable within this release. |
42
+ | `cluster_id` | int | ID of the source event cluster. |
43
+ | `cluster_size` | int | Number of articles in the source cluster (3-5). |
44
+ | `question_title` | string | The forecasting question itself. |
45
+ | `background` | string | One- or two-sentence summary of the event context. |
46
+ | `resolution_criteria` | string | How the answer is defined and what counts as a match. |
47
+ | `answer_type` | string | Always `yes_no` in this dataset. |
48
+ | `ground_truth_answer` | string | Either `yes` or `no`. |
49
+ | `question_start_date` | string (YYYY-MM-DD) | The cutoff. **No information from this date or later is allowed when forecasting.** |
50
+ | `resolution_date` | string (YYYY-MM-DD) | When the question's outcome is known. |
51
+ | `seed_urls` | list[string] | URLs of the original cluster articles (the ones GPT-4o read to generate the question). |
52
+ | `seed_dates` | list[string] | Publication dates of the seed articles. |
53
+ | `evidence_articles` | list[struct] | Top-5 retrieved evidence articles. Each: `{url, date, source, text}`. All dated strictly before `question_start_date`. |
54
+ | `sources_agree` | bool | Whether the seed articles' implied answers agreed during generation. 5 rows have `False`; treat with caution. |
55
+ | `quality_flags` | list[string] | Empty in this release. |
56
+ | `required_type` | string | The answer type that was requested at generation time (always `yes_no` here). |
57
+
58
+ ## Statistics
59
+
60
+ - **Total questions**: 1,215
61
+ - **Cluster size**: 3 → 538, 4 → 251, 5 → 426
62
+ - **Sources agree**: 1,212 / 1,215
63
+ - **Date range** (`question_start_date`): late Aug 2025 → mid Mar 2026
64
+ - **Median forecast horizon** (cutoff → resolution): ~14 days
65
+ - **Ground-truth balance**: roughly 60 / 40 yes / no
66
+
67
+ ## Strict forecasting posture
68
+
69
+ `question_start_date` is the cutoff. The retrieval pipeline filters all evidence to dates `< question_start_date`. If you build your own retrieval, **respect this cutoff** — articles dated on or after `question_start_date` may contain explicit answers, leading to leakage.
70
+
71
+ ## Known limitations
72
+
73
+ - **GDELT date metadata** is trusted; we have not audited mis-dating systematically.
74
+ - Some questions may be **answerable from priors alone** if the model has memorised related real-world events. We recommend pairing with a no-context baseline run.
75
+ - Some questions are **near-duplicates** of others (no dedup at this stage). If you need a dedup'd subset, embed `question_title` and drop pairs with cosine sim ≥ 0.85.
76
+
77
+ ## Citation
78
+
79
+ If you use this dataset, please cite:
80
+
81
+ ```bibtex
82
+ @misc{anthral2026gdeltforecast,
83
+ title = {GDELT-Forecast: Strict-cutoff forecasting benchmarks from GDELT news clusters},
84
+ author = {Rajat Agarwal and Anthral Labs},
85
+ year = {2026},
86
+ url = {https://huggingface.co/datasets/rajatagarwal457/gdelt-forecast-binary},
87
+ }
88
+ ```
89
+
90
+ ## License
91
+
92
+ CC-BY-4.0, matching the upstream GDELT 2.0 license. Attribution: cite this dataset and acknowledge GDELT as the source corpus.