nubdot commited on
Commit
2ffd949
·
verified ·
1 Parent(s): 3721c69

Upload 3 files

Browse files
Files changed (2) hide show
  1. index.jsonl +0 -0
  2. readme.md +102 -0
index.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
readme.md ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - tabular-classification
5
+ - tabular-to-text
6
+ language:
7
+ - en
8
+ tags:
9
+ - ice
10
+ - immigration
11
+ - press-releases
12
+ - journalism
13
+ - nlp
14
+ - news
15
+ pretty_name: ice
16
+ size_categories:
17
+ - n<1K
18
+ configs:
19
+ - config_name: default
20
+ data_files:
21
+ - split: train
22
+ path: index.jsonl
23
+ - config_name: html
24
+ data_files:
25
+ - split: train
26
+ path: train.jsonl
27
+ ---
28
+
29
+ # Dataset Card for ICE Press Releases
30
+
31
+ A structured dataset of 965 press releases published by U.S. Immigration and Customs Enforcement (ICE), scraped from [ice.gov](https://www.ice.gov/news/releases).
32
+ Created by [Big Local News](https://biglocalnews.org/) at Stanford University.
33
+ This dataset gives journalists a machine-readable record of ICE's own public statements about enforcement actions.
34
+
35
+ ## Dataset Details
36
+
37
+ ### Dataset Description
38
+
39
+ ICE administrative data logs arrests, removals, and transfers but includes very little detail about individuals.
40
+ Press releases are different: ICE routinely names people, lists ages, nationalities, and charges, and describes the specifics of each action in narrative form.
41
+ This dataset captures that text in structured fields alongside extracted metadata, making it useful for named entity recognition, information extraction, and accountability journalism.
42
+ The corpus is skewed toward 2025 and 2026 (956 of 965 records), reflecting the surge in ICE enforcement activity and press release volume during that period.
43
+
44
+ ### Dataset Sources
45
+
46
+ - **Source:** [ICE Newsroom, Press Releases](https://www.ice.gov/news/releases)
47
+
48
+ ## Dataset Structure
49
+
50
+ Each row represents one ICE press release.
51
+
52
+ | Field | Type | Coverage | Description |
53
+ |---|---|---|---|
54
+ | `url` | string | 100% | Source URL on ice.gov |
55
+ | `title` | string | 100% | Press release headline |
56
+ | `subtitle` | string | 18% | Subtitle or secondary headline (sparse) |
57
+ | `topics` | string | 99.9% | ICE topic category (see Topics section below) |
58
+ | `date_raw` | string | 99.9% | Original date string as published |
59
+ | `date_normalized` | string | 99.9% | Date normalized to `MM/DD/YYYY` |
60
+ | `date_last_updated` | string | 100% | Date the page was last updated on ice.gov |
61
+ | `location_full_text` | string | 98% | Full location string from the press release dateline |
62
+ | `city` | string | 99.9% | City extracted from location |
63
+ | `state` | string | 99.9% | State abbreviation extracted from location |
64
+ | `full_text` | string | 99.9% | Full body text of the press release |
65
+ | `image_urls` | string | 54% | URLs of images embedded in the press release |
66
+ | `scraped_at` | string | 100% | ISO 8601 timestamp of when the page was scraped |
67
+ | `blurb_list` | string | 0% | Not populated; reserved for future use |
68
+ | `updated_date` | string | 0% | Not populated; reserved for future use |
69
+
70
+ `html.jsonl` holds the raw source HTML for each press release and joins to the structured records above on `url`.
71
+
72
+ ## Information
73
+
74
+ ### Project Background
75
+
76
+ This dataset is Project 1 of two pitches submitted by Big Local News for the Datathon for Social Good 2026.
77
+
78
+ **Deliverable:**
79
+ - A structured dataset identifying the date, time, and location of each enforcement action described in a press release, along with as much identifying information as possible about individuals targeted e.g., name, age, sex, country of origin, etc.
80
+ - A data processing pipeline that can extract this type of data from press releases published in the future
81
+
82
+ ### File Guide
83
+
84
+ | File | Description |
85
+ |---|---|
86
+ | `index.jsonl` | Primary structured dataset, 965 records, 15 fields (used by the `default` config) |
87
+ | `index.csv` | Same structured dataset as a CSV, for manual download / spreadsheet use (not loaded by `datasets`) |
88
+ | `train.jsonl` | 965 raw HTML source pages scraped from ice.gov, one JSON object per line: `{"url": ..., "html": ...}` |
89
+
90
+ ## Loading the Dataset
91
+
92
+ ```python
93
+ from datasets import load_dataset
94
+
95
+ ds = load_dataset("stanforddams/biglocal/")
96
+ html = load_dataset("stanforddams/biglocal/", "html")
97
+ ```
98
+
99
+ ## Dataset Card Contact
100
+
101
+ Ryan Pitts, Managing Director, Big Local News
102
+ ryanpitts@stanford.edu