ToyDataset#
pymovements Toy Dataset
Example toy dataset.
This dataset includes monocular eye tracking data from a single participant in a single session. Eye movements are recorded at a sampling frequency of 1000 Hz using an EyeLink Portable Duo video-based eye tracker and are provided as pixel coordinates.
The participant is instructed to read 4 texts with 5 screens each.
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='ToyDataset', path='path/to/your/data/directory')
# Download the dataset and extract all archives.
dataset.download()
# Load the dataset into memory for processing
dataset.load()