CoolFace
Datasetpublic

AIcell/war-test-dataset

War Forecast Bench Dataset for the paper "When AI Navigates the Fog of War" (arXiv:2603.16642). Website: 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… See the full description on the dataset page: https://huggingface.co/datasets/AIcell/war-test-dataset.

sourceHugging Facecc-by-4.0updated 6mo agoView on Hugging Face
2likes184downloads
Dataset Card

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).

Website: 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

NodeDateEventThemeTheme Description
T0Feb 27Operation Epic FuryIInitial Outbreak
T1Feb 28Israeli-US StrikesIInitial Outbreak
T2Feb 28Iranian StrikesIInitial Outbreak
T3Mar 1Two Missiles towards British Bases on CyprusIIThreshold Crossings
T4Mar 1Oil Refiner and Oil Tanker Was AttackedIIIEconomic Shockwaves
T5Mar 2Qatar Halts Energy ProductionIIIEconomic Shockwaves
T6Mar 2Natanz Nuclear Facility DamagedIIThreshold Crossings
T7Mar 3U.S. Begins Evacuation of Citizens from the Middle EastIIThreshold Crossings
T8Mar 3Nine Countries Involved and Israeli Ground InvasionIIThreshold Crossings
T9Mar 3Mojtaba Khamenei Becomes Supreme LeaderIVPolitical Signaling
T10Mar 6Iranian Apology to Neighboring CountriesIVPolitical 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},
}