Datasets:
Tasks:
Question Answering
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
10K - 100K
License:
File size: 4,193 Bytes
28f73c7 7a88b2b 28f73c7 7a88b2b | 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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | ---
language:
- en
license: mit
task_categories:
- question-answering
tags:
- fairness
- bias
- llm-evaluation
- temporal-bias
- football
- rag
pretty_name: ChronoBias
size_categories:
- 10K<n<100K
---
# ChronoBias
[](https://aclanthology.org/2025.findings-emnlp.405/)
[](https://github.com/kmkim95/ChronoBias)
[](https://opensource.org/licenses/MIT)
## Dataset Description
**ChronoBias** is a benchmark for evaluating **time-conditional group bias** in the time-sensitive knowledge of Large Language Models (LLMs).
- **Paper:** [ChronoBias: A Benchmark for Evaluating Time-conditional Group Bias in the Time-sensitive Knowledge of Large Language Models](https://aclanthology.org/2025.findings-emnlp.405/)
- **Venue:** Findings of EMNLP 2025
- **Authors:** Kyungmin Kim, Youngbin Choi, Hyounghun Kim, Dongwoo Kim, Sangdon Park
### Overview
The benchmark focuses on two types of bias:
- **Parametric Knowledge Bias**: Bias in group-specific knowledge encoded in model parameters
- **Time-sensitivity Bias**: Bias in the degree of time-sensitivity across groups
The dataset covers football league standings from multiple international leagues, enabling controlled evaluation of LLM performance across groups (leagues) and time periods.

---
## Dataset Statistics
| Field | Value |
|---|---|
| Total examples | 13,502 |
| Group | 6 (EPL, K-League1, Saudi Pro League, Ligue 1 Algeria, Serie A Brazil, Primera Liga Spain) |
| Time-sensitivity | 3 (never_changing, slow_changing, moderate_to_fast_changing) |
---
## Data Fields
| Field | Type | Description |
|---|---|---|
| `id` | string | Unique identifier for the example |
| `question_id` | string | Identifier for the question |
| `league_name` | string | Name of the football league |
| `season_name` | string | Season year |
| `round` | string | Match round number |
| `question` | string | The question asked to the LLM |
| `answer` | list | Ground-truth answer (list of [team, points] pairs) |
| `context` | string | HTML table with league standings as context (for RAG) |
| `current_date` | string | The date at which the question is posed (YYYY-MM-DD) |
| `start_date` | string | Start date of the round (YYYY/MM/DD) |
| `end_date` | string | End date of the round (YYYY/MM/DD) |
| `end_month` | string | End month of the round (YYYY/MM) |
| `qtype` | string | Question subtype (e.g., top_1, bottom_3) |
| `qtype_agg` | string | Aggregated question type (top or bottom) |
| `question_type` | string | Question category |
| `time_type` | string | How fast this type of information changes over time |
---
## Usage
```python
from datasets import load_dataset
dataset = load_dataset("tml-lab/ChronoBias")
data = dataset["train"]
# Filter by league
epl_data = data.filter(lambda x: x["league_name"] == "EPL")
# Filter by question type
top1_data = data.filter(lambda x: x["qtype"] == "top_1")
# Use context field for RAG evaluation
example = data[0]
print(example["question"]) # Question to the LLM
print(example["context"]) # HTML table with league standings
print(example["answer"]) # Ground-truth answer
```
---
## Citation
```bibtex
@inproceedings{kim-etal-2025-chronobias,
title = "{C}hrono{B}ias: A Benchmark for Evaluating Time-conditional Group Bias in the Time-sensitive Knowledge of Large Language Models",
author = "Kim, Kyungmin and
Choi, Youngbin and
Kim, Hyounghun and
Kim, Dongwoo and
Park, Sangdon",
booktitle = "Findings of the Association for Computational Linguistics: EMNLP 2025",
month = nov,
year = "2025",
address = "Suzhou, China",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2025.findings-emnlp.405/",
doi = "10.18653/v1/2025.findings-emnlp.405",
pages = "7658--7693",
}
```
---
## License
This dataset is released under the [MIT License](https://opensource.org/licenses/MIT).
|