--- license: cc-by-nc-nd-4.0 pretty_name: "HAT: Hallucination Annotation for Translation" size_categories: - 100K **Split naming:** the parquet files live under `data/train`, `data/dev`, and `data/test`. > On the Hugging Face Hub the `dev` files are exposed as the standard `validation` split, so > `load_dataset(...)` returns `train` / `validation` / `test`. **Schema:** | Field | Type | Description | |--------|------|-------------| | `source_locale` | `string` | Locale of the source text | | `source_text` | `string` | Source sentence | | `target_locale` | `string` | Locale of the target text | | `target_text` | `string` | Machine-translated output | | `split` | `string` | Dataset split (`train` / `dev` / `test`) | | `label` | `int64` | Binary hallucination label (`0`: no hallucination, `1`: contains hallucination) | | `score` | `float64` | Proportion (0–1) of hallucinated characters | | `annotation` | `string` | Raw span-level hallucination annotation | ## πŸ“„ Paper Abstract Hallucinations in machine translation (MT)β€”outputs that may be fluent yet unfaithful to the source contentβ€”remain a critical obstacle. They hinder the reliable deployment of MT systems in real-world applications. Despite growing attention to this phenomenon, progress has been constrained by the lack of large-scale, high-quality benchmarks dedicated to hallucination detection. We introduce HAT (Hallucination Annotation for Translation), a novel dataset designed to advance research on this problem. HAT comprises 350,959 span-level annotated samples across 38 language pairs, with approximately 8,000–10,000 samples per pair partitioned into training, development, and test sets. Annotations were produced by professional translators under rigorous quality control protocols to ensure reliability. We provide a detailed analysis of hallucination distributions and establish benchmark performance using a diverse set of baselines, including automatic MT evaluation metrics as well as large language models. By providing the first large-scale, systematically annotated resource for hallucination detection in MT, HAT enables the development of more faithful translation models and lays the groundwork for future research on building trustworthy machine translation systems. ## πŸ“š Citation If you use this dataset, please cite: ```bibtex @inproceedings{chatterjee-etal-2026-hat, title = "{HAT}: Hallucination Annotation for Translation", author = "Chatterjee, Rajen and Li, Xintong and Charoenpornsawat, Paisarn and Lee, Allen", editor = "Liakata, Maria and Moreira, Viviane P. and Zhang, Jiajun and Jurgens, David", booktitle = "Proceedings of the 64th Annual Meeting of the {A}ssociation for {C}omputational {L}inguistics (Volume 1: Long Papers)", month = jul, year = "2026", address = "San Diego, California, United States", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/2026.acl-long.721/", pages = "15865--15888", ISBN = "979-8-89176-390-6", } ``` ## πŸ“„ License The HAT dataset is licensed under CC BY-NC-ND 4.0 (https://creativecommons.org/licenses/by-nc-nd/4.0/).