{ "cells": [ { "cell_type": "markdown", "id": "2b058e8e", "metadata": {}, "source": [ "# IPC (Feather) Files\n", "\n", "Previously saved gaze data in IPC (Feather) format can be reloaded quickly:\n", "\n", "```python\n", "from pymovements.gaze.io import from_ipc\n", "\n", "gaze = from_ipc(\"gaze_data.feather\")\n", "```\n", "\n", "This is the fastest way to restore already processed datasets. Although, `feather` files are binary data that are not human readable. While it is a great format for saving intermediate preprocessing data, it is not intended to be shared. We recommend saving gaze data in human readable format, for example as `csv`." ] } ], "metadata": {}, "nbformat": 4, "nbformat_minor": 5 }