bilalzafar/BIS-Speeches-NER-dataset
BIS Speeches NER dataset BIS Speeches NER dataset is a large-scale annotated dataset of central bank speeches (1996–2024) curated for Named Entity Recognition (NER). It was developed to support the fine-tuning of Central Bank BERT and related models for extracting structured metadata from central bank communication. Models Trained on This Dataset Central Bank NER – fine-tuned NER model for AUTHOR, POSITION, AFFILIATION. Dataset Schema Each row… See the full description on the dataset page: https://huggingface.co/datasets/bilalzafar/BIS-Speeches-NER-dataset.
BIS Speeches NER dataset
BIS Speeches NER dataset is a large-scale annotated dataset of central bank speeches (1996–2024) curated for Named Entity Recognition (NER). It was developed to support the fine-tuning of [`Central Bank BERT`](https://huggingface.co/bilalzafar/CentralBank-BERT) and related models for extracting structured metadata from central bank communication.
Models Trained on This Dataset
- Central Bank NER – fine-tuned NER model for AUTHOR, POSITION, AFFILIATION.
Dataset Schema
Each row corresponds to a single central bank speech record with the following fields:
Source
- Original data: BIS database of central bank speeches (1996–2024).
- Corpus size: 17,648 speeches annotated for training, with 1,961 held out for validation.
- Language: English.
Annotation Process
- A small subset of speech descriptions was manually annotated for entity spans (
AUTHOR,POSITION,AFFILIATION). - This seed set was used to train an initial NER model.
- The model was applied to the full BIS corpus (1996–2024) to generate preliminary labels.
- All annotations were manually reviewed and corrected, ensuring full coverage and consistency.
This hybrid manual + machine-assisted annotation approach enabled efficient, large-scale dataset creation while maintaining high quality.
Example
{
"tokens": ["speech", "by", "mr", "yi", "gang", ",", "governor", "of", "the", "people", "'s", "bank", "of", "china"],
"ner_tags": ["O", "O", "B-AUTHOR", "I-AUTHOR", "I-AUTHOR", "O",
"B-POSITION", "O", "O", "B-AFFILIATION", "I-AFFILIATION",
"I-AFFILIATION", "I-AFFILIATION", "I-AFFILIATION"]
}Intended Uses
- Training NER models for central banking and financial policy analysis.
- Benchmarking domain-specific NER tasks.
- Research on monetary policy communication and speaker metadata extraction.
Citation
If you use this dataset, please cite:
@dataset{zafar2025centralbankner,
author = {Zafar, M.B.},
title = {BIS Speeches NER dataset},
year = {2025},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/bilalzafar/BIS-Speeches-NER-dataset}
}