File size: 3,446 Bytes
9c7c9b5 5b9fcf4 9c7c9b5 a9b28df 9c7c9b5 86d34f0 9c7c9b5 c0ed227 9c7c9b5 a9ea45e 9c7c9b5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | ---
license: cc-by-4.0
task_categories:
- question-answering
- text-generation
language:
- en
- zh
tags:
- geopolitics
- forecasting
- llm-evaluation
- temporal-reasoning
pretty_name: "War Forecast Bench"
size_categories:
- 1K<n<10K
configs:
- config_name: questions
data_files:
- split: train
path: questions.parquet
- config_name: articles
data_files:
- split: train
path: articles.parquet
default_config_name: questions
---
# War Forecast Bench
<p align="center">
<img src="main.jpg" width="100%" alt="Timeline of critical temporal nodes and AI predictions">
</p>
Dataset for the paper **"When AI Navigates the Fog of War"** ([arXiv:2603.16642](https://arxiv.org/abs/2603.16642)).
**Website**: [war-forecast-arena.com](https://war-forecast-arena.com)
## Overview
A temporally grounded benchmark for evaluating LLM reasoning during an ongoing geopolitical conflict. The dataset covers the early stages of the 2026 Middle East conflict, which unfolded after the training cutoff of current frontier models, substantially mitigating training-data leakage concerns.
## Temporal Nodes
| Node | Date | Event | Theme | Theme Description |
|:----:|------|-------|:-----:|-------------------|
| T0 | Feb 27 | Operation Epic Fury | I | Initial Outbreak |
| T1 | Feb 28 | Israeli-US Strikes | I | Initial Outbreak |
| T2 | Feb 28 | Iranian Strikes | I | Initial Outbreak |
| T3 | Mar 1 | Two Missiles towards British Bases on Cyprus | II | Threshold Crossings |
| T4 | Mar 1 | Oil Refiner and Oil Tanker Was Attacked | III | Economic Shockwaves |
| T5 | Mar 2 | Qatar Halts Energy Production | III | Economic Shockwaves |
| T6 | Mar 2 | Natanz Nuclear Facility Damaged | II | Threshold Crossings |
| T7 | Mar 3 | U.S. Begins Evacuation of Citizens from the Middle East | II | Threshold Crossings |
| T8 | Mar 3 | Nine Countries Involved and Israeli Ground Invasion | II | Threshold Crossings |
| T9 | Mar 3 | Mojtaba Khamenei Becomes Supreme Leader | IV | Political Signaling |
| T10 | Mar 6 | Iranian Apology to Neighboring Countries | IV | Political Signaling |
## Files
### `test_dataset.json`
The benchmark questions and ground truth. Contains:
- **11 critical temporal nodes** (T0--T10, Feb 27 -- Mar 6, 2026)
- **42 node-specific verifiable Yes/No questions**
- **5 general exploratory questions**
- Event timestamps, bilingual questions (EN/CN), and ground truth answers
### `articles_clean.json`
The news article corpus used as context for LLM predictions. Contains:
- **~1,685 news articles** from 12+ sources
- Coverage: Feb 1 -- Mar 5, 2026
- Sources include Reuters, AP News, Al Jazeera, BBC, Bloomberg, The Guardian, and more
- Each article has: title, body text, publication timestamp, source name
## Usage
```python
from datasets import load_dataset
dataset = load_dataset("AIcell/war-test-dataset")
```
Or use with the evaluation pipeline:
```bash
git clone https://github.com/xirui-li/war-test.git
cd war-test
pip install -r requirements.txt
python run_predictions.py
```
The pipeline automatically downloads the data from this HuggingFace repo.
## Citation
```bibtex
@misc{li2026ainavigatesfogwar,
title={When AI Navigates the Fog of War},
author={Ming Li and Xirui Li and Tianyi Zhou},
year={2026},
eprint={2603.16642},
archivePrefix={arXiv},
primaryClass={cs.AI},
url={https://arxiv.org/abs/2603.16642},
}
```
|