abigailhaddad/legislative-issue-tracker
Legislative Issue Tracker Bills, legislative actions, floor speeches, hearings, and committee reports that touch a specific federal statute — currently the Paperwork Reduction Act (44 U.S.C. ch. 35, subch. I) — with every mention classified as amends, exempts, references, or related. The distinction is the point: Congress amends the PRA rarely (254 bills) but exempts individual programs from it constantly (845 bills). Built by abigail-64/legislative-issue-tracker. Everything… See the full description on the dataset page: https://huggingface.co/datasets/abigailhaddad/legislative-issue-tracker.
Legislative Issue Tracker
Bills, legislative actions, floor speeches, hearings, and committee reports that touch a specific federal statute — currently the Paperwork Reduction Act (44 U.S.C. ch. 35, subch. I) — with every mention classified as amends, exempts, references, or related.
The distinction is the point: Congress amends the PRA rarely (254 bills) but exempts individual programs from it constantly (845 bills).
Built by abigail-64/legislative-issue-tracker. Everything here is derived from public government APIs (Congress.gov, GovInfo, EveryCRSReport.com). Only short passages around each statutory citation are stored — never full document text.
Files
data/*.parquet — pipeline state:
summary_checks is the only table here that is not derived mechanically from a government source. It holds proposals — a model's opinion about whether a curated sentence is supported by the Congressional Research Service's own summary — recorded with the model that produced it. It exists to decide what a person reads first. Nothing in this dataset is marked verified on its say-so, and it should not be treated as ground truth about any Act of Congress.
site/*.json — the same data shaped for the web UI.
Quick start
import duckdb
duckdb.sql("""
SELECT match_type, count(*) AS bills
FROM read_parquet('hf://datasets/abigailhaddad/legislative-issue-tracker/data/bill_issues.parquet')
GROUP BY 1 ORDER BY 2 DESC
""").show()Caveats
- Classification is rule-based — regex over the clause containing each citation — not human-reviewed.
confirmed = truemarks the small number of hand-tagged rows. - Coverage is 1993–present via GovInfo full-text search, plus bulk-data scans of the 113th Congress onward. Earlier bills are hand-tagged only.
- 44 U.S.C. ch. 35 also contains FISMA (subchapter II) and CIPSEA (subchapter III). Those are classified
related, not PRA. - In the Congressional Record, most mentions are bill or amendment text reprinted into the Record rather than a member speaking;
speeches.mention_kinddistinguishes them.
