Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- question-answering
|
| 5 |
+
- text-generation
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
- zh
|
| 9 |
+
tags:
|
| 10 |
+
- geopolitics
|
| 11 |
+
- forecasting
|
| 12 |
+
- llm-evaluation
|
| 13 |
+
- temporal-reasoning
|
| 14 |
+
pretty_name: "War Forecast Bench"
|
| 15 |
+
size_categories:
|
| 16 |
+
- 1K<n<10K
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# War Forecast Bench
|
| 20 |
+
|
| 21 |
+
Dataset for the paper **"When AI Navigates the Fog of War"** ([arXiv:2603.16642](https://arxiv.org/abs/2603.16642)).
|
| 22 |
+
|
| 23 |
+
**Website**: [war-forecast-arena.com](https://war-forecast-arena.com)
|
| 24 |
+
|
| 25 |
+
## Overview
|
| 26 |
+
|
| 27 |
+
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.
|
| 28 |
+
|
| 29 |
+
## Files
|
| 30 |
+
|
| 31 |
+
### `test_dataset.json`
|
| 32 |
+
|
| 33 |
+
The benchmark questions and ground truth. Contains:
|
| 34 |
+
|
| 35 |
+
- **11 critical temporal nodes** (T0--T10, Feb 27 -- Mar 6, 2026)
|
| 36 |
+
- **42 node-specific verifiable Yes/No questions**
|
| 37 |
+
- **5 general exploratory questions**
|
| 38 |
+
- Event timestamps, bilingual questions (EN/CN), and ground truth answers
|
| 39 |
+
|
| 40 |
+
### `articles_clean.json`
|
| 41 |
+
|
| 42 |
+
The news article corpus used as context for LLM predictions. Contains:
|
| 43 |
+
|
| 44 |
+
- **~1,685 news articles** from 12+ sources
|
| 45 |
+
- Coverage: Feb 1 -- Mar 5, 2026
|
| 46 |
+
- Sources include Reuters, AP News, Al Jazeera, BBC, Bloomberg, The Guardian, and more
|
| 47 |
+
- Each article has: title, body text, publication timestamp, source name
|
| 48 |
+
|
| 49 |
+
## Usage
|
| 50 |
+
|
| 51 |
+
```python
|
| 52 |
+
from datasets import load_dataset
|
| 53 |
+
|
| 54 |
+
dataset = load_dataset("war-forecast-arena/war-forecast-bench")
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
Or use with the evaluation pipeline:
|
| 58 |
+
|
| 59 |
+
```bash
|
| 60 |
+
git clone https://github.com/XXX/war-test.git
|
| 61 |
+
cd war-test
|
| 62 |
+
pip install -r requirements.txt
|
| 63 |
+
python run_predictions.py
|
| 64 |
+
```
|
| 65 |
+
|
| 66 |
+
The pipeline automatically downloads the data from this HuggingFace repo.
|
| 67 |
+
|
| 68 |
+
## Citation
|
| 69 |
+
|
| 70 |
+
```bibtex
|
| 71 |
+
@misc{li2026ainavigatesfogwar,
|
| 72 |
+
title={When AI Navigates the Fog of War},
|
| 73 |
+
author={Ming Li and Xirui Li and Tianyi Zhou},
|
| 74 |
+
year={2026},
|
| 75 |
+
eprint={2603.16642},
|
| 76 |
+
archivePrefix={arXiv},
|
| 77 |
+
primaryClass={cs.AI},
|
| 78 |
+
url={https://arxiv.org/abs/2603.16642},
|
| 79 |
+
}
|
| 80 |
+
```
|