Datasets:
license: cc-by-4.0
language:
- en
pretty_name: Op-Fed
size_categories:
- 1K<n<10K
tags:
- finance
- monetary-policy
- fomc
- opinion-mining
- stance-detection
- active-learning
task_categories:
- text-classification
configs:
- config_name: aggregated
data_files: opfed_v1.csv
default: true
- config_name: raw
data_files: opfed_raw_v1.csv
Op-Fed
This repository hosts the code and data to support the paper Op-Fed: Opinion, Stance, and Monetary Policy Annotations on FOMC Transcripts Using Active Learning by Alisa Kanganis and Katherine A. Keith.
If you use this data or code, please cite our paper:
@inproceedings{kanganis2026,
author = {Kanganis, Alisa and Keith, Katherine A.},
title = {Op-Fed: Opinion, Stance, and Monetary Policy Annotations on FOMC Transcripts Using Active Learning},
booktitle = {Findings of the Association for Computational Linguistics (ACL Findings)},
year = {2026},
note = {Forthcoming}
}
Code to replicate the paper is in this Github repo.
Corresponding author: Email Katie Keith, kak5@williams.edu
Data
The main dataset is in opfed_v1.csv (config aggregated) and we also provide the raw annotations for all three annotators in opfed_raw_v1.csv (config raw).
Please see Section B: Datasheets for Datasets in our paper for a detailed description of this dataset.
To load each subset:
from datasets import load_dataset
aggregated = load_dataset("kakeith406/op-fed", "aggregated")
raw = load_dataset("kakeith406/op-fed", "raw")
opfed_v1.csv
Columns:
unique_id: Example19811222_189_9. The first two numbers, e.g.,19811222_189, correspond to theidin ConvoKit. In ConvoKit, this is the transcript number, e.g.,19811222, followed by the utterance number, e.g.,189(starting at index 1). In ourunique_id, the third number, e.g.,_9corresponds to the sentence number (after sentence segmentation with spacy); this starts at index 1 for the first sentence.speaker: The name of the speaker, e.g.,MR. TRUMANsentence: The full text of the target sentence.utterance: The full utterance within which the target sentence exists.-5 sentences: The previous five sentences leading up to (but not including) the utterance of the target sentence. When this is across multiple utterances, we return a list of dictionaries. Each dictionary is an utterance with keys for the'speaker'and the'text'for the utterance. Example:[{'speaker': 'MR. LAWARE.', 'text': 'With the momentum that he will gain by our acquiescence to [releasing the transcripts], he will then say: Well, this is what I want you to decide to do.'}, {'speaker': 'MR. ANGELL.', 'text': 'Absolutely.'}, {'speaker': 'MR. LAWARE.', 'text': ""He's going to back us right into a corner.""}, ... ]
-200+ tokens: The previous 200 tokens (rounded up to the nearest sentence) leading up to (but not including) the utterance with the target sentence. If this is across utterances, we use the same list-dictionary format as-5 sentences.1_opinion: Opinion label on the target sentence. Possible labels:yes,no, orambiguous2_mp: Monetary policy label on the target sentence. Possible labels:yes,no, orambiguous3_mp_context: Whether the2_mplabel needed additional context. Possible labels:sentence,utterance,-5 sentences, or-200+ tokens4_stance_nli: StanceNLI labels on the target sentence. Possible labels:neutral,entailment,contradictionorambiguous5_stance_nli_context: Whether the4_stance_nlilabel needed additional context. Possible labels:sentence,utterance,-5 sentences, or-200+ tokens
opfed_raw_v1.csv
This file contains the per-annotator labels combined into list form, prior to aggregation. This file contains the per-annotator labels for all three annotators in list form, prior to aggregation. Each label cell contains a stringified Python list of three values, one per annotator. For example, in the first row, 1_opinion column, the cell value is ['yes', 'yes', 'yes'] which means all three annotators labeled the target sentence as 'yes' for the opinion aspect.
Because this is a hierarchical schema, one could also have missing values for some of the annotators, e.g., ['yes', 'nan', 'yes'] meaning the second annotator ('nan' value) did not reach that annotation stage due to earlier annotation decisions.
Columns:
unique_id: Same format as inopfed_v1.csv.sentence: The full text of the target sentence.1_opinion: Per-annotator opinion labels. List of three values, eachyes,no,ambiguous, ornan.2_mp: Per-annotator monetary policy labels. List of three values, eachyes,no,ambiguous, ornan.3_mp_context: Per-annotator context needed for2_mp. List of three values, eachsentence,utterance,-5 sentences,-200+ tokens, ornan.4_stance_nli: Per-annotator StanceNLI labels. List of three values, eachneutral,entailment,contradiction,ambiguous, ornan.5_stance_nli_context: Per-annotator context needed for4_stance_nli. List of three values, eachsentence,utterance,-5 sentences,-200+ tokens, ornan.