OneStop#

OneStop: A 360-Participant English Eye Tracking Dataset with Different Reading Regimes

OneStop dataset [Berzak et al., 2025].

OneStop Eye Movements (in short OneStop) is an English corpus of eye movements in reading with 360 L1 participants, 2.6 million word tokens and 152 hours of eye tracking data recorded with an EyeLink 1000 Plus eye tracker. OneStop comprises four sub-corpora with eye movement recordings from paragraph reading.

To filter the data by reading regime or trial type, use the following column values:

For ordinary reading trials, set question_preview to False. For information seeking trials, set question_preview to True. To exclude repeated reading trials, set repeated_reading_trial to False. To include only repeated reading trials, set repeated_reading_trial to True. To exclude practice trials, set practice_trial to False.

For more information please consult [Berzak et al., 2025].

How to Download#

import pymovements as pm

# Initialize the dataset object with its name
# Specify your local directory for saving and loading data
dataset = pm.Dataset(name='OneStop', path='path/to/your/data/directory')

# Download the dataset and extract all archives.
dataset.download()

# Load the dataset into memory for processing
dataset.load()