brishen/fomc-meeting-transcripts
FOMC Meeting Transcripts (1976–2020) Full-text transcripts of 373 Federal Open Market Committee (FOMC) meetings, from March 1976 through December 2020, converted from the official PDF transcripts published by the Federal Reserve Board. The FOMC is the body of the U.S. Federal Reserve System that sets monetary policy (the federal funds rate target, balance-sheet policy, etc.). Verbatim meeting transcripts are released to the public with a roughly five-year lag, which is why… See the full description on the dataset page: https://huggingface.co/datasets/brishen/fomc-meeting-transcripts.
FOMC Meeting Transcripts (1976–2020)
Full-text transcripts of 373 Federal Open Market Committee (FOMC) meetings, from March 1976 through December 2020, converted from the official PDF transcripts published by the Federal Reserve Board.
The FOMC is the body of the U.S. Federal Reserve System that sets monetary policy (the federal funds rate target, balance-sheet policy, etc.). Verbatim meeting transcripts are released to the public with a roughly five-year lag, which is why coverage currently ends in 2020. The corpus spans the Burns, Volcker, Greenspan, Bernanke, Yellen, and Powell chairmanships — including the Volcker disinflation, the 1987 crash, the 2008 financial crisis, and the COVID-19 emergency meetings of 2020.
- 373 meetings · ~15.8 million words of deliberation
- One row per meeting, with the complete transcript text in markdown
- Each row links back to the official source PDF on federalreserve.gov
Schema
Example usage
from datasets import load_dataset
ds = load_dataset("brishen/fomc-meeting-transcripts", split="train")
# The Lehman-week meeting, September 16, 2008
lehman = ds.filter(lambda r: r["meeting_id"] == "FOMC20080916")[0]
print(lehman["text"][:2000])How it was built
- Transcript PDFs were downloaded from the Federal Reserve's historical materials pages.
- PDFs were converted to markdown (text extraction, speaker turns preserved as
**NAME.**-prefixed paragraphs). - Converted files were packed into a single parquet file, one row per meeting, sorted by date.
Known limitations
- PDF-extraction artifacts. Text was machine-extracted from PDFs; occasional spurious spaces inside words (e.g. "Meet ing", "PR ESENT") and page-break hyphenation artifacts remain, especially in headers and attendance lists. The deliberation body text is largely clean.
- Conference calls are not included — only regularly scheduled (and some emergency) meetings whose transcript files follow the Fed's
FOMC<date>meeting.pdfnaming. - Five-year release lag. Meetings after 2020 are not yet public.
- Attendance preambles, footnotes, and end-of-meeting votes are embedded in
textrather than parsed into structured fields.
Provenance and license
The underlying transcripts are works of the United States federal government published by the Board of Governors of the Federal Reserve System, and as such are in the public domain in the United States. This dataset is a format conversion of those public documents; no restrictions are added. Please cite the Federal Reserve as the original source and link the relevant source_pdf_url when quoting.
