Datasets:
The dataset viewer is not available for this split.
Error code: FeaturesError Exception: ParserError Message: Error tokenizing data. C error: Expected 2 fields in line 6, saw 3 Traceback: Traceback (most recent call last): File "/src/services/worker/src/worker/job_runners/split/first_rows.py", line 228, in compute_first_rows_from_streaming_response iterable_dataset = iterable_dataset._resolve_features() File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 3422, in _resolve_features features = _infer_features_from_batch(self.with_format(None)._head()) File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 2187, in _head return next(iter(self.iter(batch_size=n))) File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 2391, in iter for key, example in iterator: File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 1882, in __iter__ for key, pa_table in self._iter_arrow(): File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 1904, in _iter_arrow yield from self.ex_iterable._iter_arrow() File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 499, in _iter_arrow for key, pa_table in iterator: File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 346, in _iter_arrow for key, pa_table in self.generate_tables_fn(**gen_kwags): File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/packaged_modules/csv/csv.py", line 190, in _generate_tables for batch_idx, df in enumerate(csv_file_reader): File "/src/services/worker/.venv/lib/python3.9/site-packages/pandas/io/parsers/readers.py", line 1843, in __next__ return self.get_chunk() File "/src/services/worker/.venv/lib/python3.9/site-packages/pandas/io/parsers/readers.py", line 1985, in get_chunk return self.read(nrows=size) File "/src/services/worker/.venv/lib/python3.9/site-packages/pandas/io/parsers/readers.py", line 1923, in read ) = self._engine.read( # type: ignore[attr-defined] File "/src/services/worker/.venv/lib/python3.9/site-packages/pandas/io/parsers/c_parser_wrapper.py", line 234, in read chunks = self._reader.read_low_memory(nrows) File "parsers.pyx", line 850, in pandas._libs.parsers.TextReader.read_low_memory File "parsers.pyx", line 905, in pandas._libs.parsers.TextReader._read_rows File "parsers.pyx", line 874, in pandas._libs.parsers.TextReader._tokenize_rows File "parsers.pyx", line 891, in pandas._libs.parsers.TextReader._check_tokenize_status File "parsers.pyx", line 2061, in pandas._libs.parsers.raise_parser_error pandas.errors.ParserError: Error tokenizing data. C error: Expected 2 fields in line 6, saw 3
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Dataset Card
Dataset Summary
We curate and release an additional, much larger collection of 713 non-annotated speeches by Donald Trump, ranging over a decade from June 2015 to April 2025, dubbed TRUMP-CHRONOS, for a total of 656,136 sentences. This additional corpus is used to derive insights on the historical trends (2015-2025) of populist discourse in Donald Trump's campaign speeches. After consulting online sources to produce a complete list of Donald Trump rallies in this period, we sourced the transcripts of a subset of the speeches from UC Santa Barbara's American Presidency Project collection and used the publicly available version of OpenAI's Whisper to auto-transcribe the remainder by extracting audio from the videos of the speeches that we found on YouTube, C-SPAN and other online platforms. All transcripts were curated manually similarly to the TRUMP-2016 dataset and they reflect the actual speech addressed to the audience, rather than the prepared remarks that campaign managers routinely hand over to the press prior to or after a campaign event.
Our dataset excludes town hall events where Donald Trump exclusively responds to open-ended questions from the host or audience members. However, we include town halls that begin with an uninterrupted speech by Trump, omitting the subsequent Q&A portion from the transcript. We also exclude formal events (inauguration speeches, joint addresses to Congress, State of the Union addresses) and speeches where Trump is not addressing the public at large, (e.g., invitation-only events at think tanks, lobby groups, trade unions, galas, fund-raisers, or other civil society associations) since these are expected to focus on specific policy issues. However, we include speeches at GOP conventions (regional and national), and annual/semi-annual CPAC events because of their rally-like nature. The excluded speeches comprise a very small fraction of the overall roster of public events that Trump headlined.
Labeling / Annotation
The speeches in this set were split into separate sentences, which were automatically labeled based on the 3-class labeling using a fine-tuned RoBERTa classifier.
Related Task
The goal of this task is to develop a method to identify fine-grained forms of populist discourse. Under our working definition, populism has two main components: people-centrism and anti-elitism that need to operate in tandem before we can label a discursive body (e.g. a political speech or a social media post) as a populist one. To enable a fine-grained analysis of political content and take advantage of higher-frequency data for examining variations in populist discourse, we move beyond full speeches or paragraphs as units of analysis and instead focus on a lower-level discursive structure: the sentence. We frame the task as a three-way multi-label classification, where each sentence can be labeled as neutral, anti-elitist, or people-centric. The co-occurrence of the latter two labels indicates a fully populist sentence.
Statistics
NA
Data Fields
speech_id
: astring
with the speech identifier.sentence
: astring
with a sentence from a speech.pop_code
: aninteger
[0,1,2,3] identifying the category of the sentence.speaker
: astring
with the full name of the speaker.location
: astring
with the name of the location of the event.date
: astring
with the full date (YYYY-MM-DD) of the speech.
Data Instance / Example
{
'speech_id': '2016_03_01_trump.txt',
'sentence': 'Most importantly, we are going to take power back from the political class in Washington and return that power to you, the American people.',
'pop_code': 3,
'speaker': 'Donald Trump'
'location': 'Louisville, KY', 2016-03-01
'date': '2016-03-01',
}
How to use
from datasets import load_dataset
train_dataset = load_dataset('coastalcph/populism-trump-chronos', split='train')
Intended Usage
The dataset is intended for academic research for training and/or evaluating language models.
Discussion of Biases
The dataset includes speeches of Donald Trump from presidential campaign rallies. It may contain derogatory language against protected groups based on race, gender, or other characteristics. The authors do not endorse the use of such language.
Citation Information
@misc{chalkidis-et-al-2025-populism,
title = "Identifying Fine-grained Forms of Populism in Political Discourse: A Case Study on Donald Trump’s Presidential Campaigns",
author = "Chalkidis, Ilias and Brandl, Stephanie and Aslanidis, Paris",
year = "2025",
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2507.19303}
}
- Downloads last month
- 35