Dataset Viewer
The dataset viewer is not available for this dataset.
Cannot get the config names for the dataset.
Error code:   ConfigNamesError
Exception:    BadZipFile
Message:      zipfiles that span multiple disks are not supported
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/dataset/config_names.py", line 66, in compute_config_names_response
                  config_names = get_dataset_config_names(
                                 ^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 161, in get_dataset_config_names
                  dataset_module = dataset_module_factory(
                                   ^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/load.py", line 1031, in dataset_module_factory
                  raise e1 from None
                File "/usr/local/lib/python3.12/site-packages/datasets/load.py", line 1004, in dataset_module_factory
                  ).get_module()
                    ^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/load.py", line 638, in get_module
                  module_name, default_builder_kwargs = infer_module_for_data_files(
                                                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/load.py", line 293, in infer_module_for_data_files
                  split: infer_module_for_data_files_list(data_files_list, download_config=download_config)
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/load.py", line 234, in infer_module_for_data_files_list
                  return infer_module_for_data_files_list_in_archives(data_files_list, download_config=download_config)
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/load.py", line 262, in infer_module_for_data_files_list_in_archives
                  for f in xglob(extracted, recursive=True, download_config=download_config)[
                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/utils/file_utils.py", line 999, in xglob
                  fs, *_ = url_to_fs(urlpath, **storage_options)
                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/fsspec/core.py", line 395, in url_to_fs
                  fs = filesystem(protocol, **inkwargs)
                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/fsspec/registry.py", line 293, in filesystem
                  return cls(**storage_options)
                         ^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/fsspec/spec.py", line 80, in __call__
                  obj = super().__call__(*args, **kwargs)
                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/fsspec/implementations/zip.py", line 62, in __init__
                  self.zip = zipfile.ZipFile(
                             ^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/zipfile/__init__.py", line 1354, in __init__
                  self._RealGetContents()
                File "/usr/local/lib/python3.12/zipfile/__init__.py", line 1417, in _RealGetContents
                  endrec = _EndRecData(fp)
                           ^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/zipfile/__init__.py", line 311, in _EndRecData
                  return _EndRecData64(fpin, -sizeEndCentDir, endrec)
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/zipfile/__init__.py", line 257, in _EndRecData64
                  raise BadZipFile("zipfiles that span multiple disks are not supported")
              zipfile.BadZipFile: zipfiles that span multiple disks are not supported

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.

Paper | GitHub

🍳 EPFL-Smart-Kitchen: Action recognition benchmark

πŸ“š Introduction

Given a video or temporal clip, action recognition requires the model to predict a single action label for that clip (or for a specified window within an untrimmed video). Building on the same EPFL-Smart-Kitchen-30 data and modalities as our segmentation benchmark, we provide a recognition-oriented setup to compare inputs from 3D body pose, hand pose, and eye gaze, as well as deep visual features (e.g., VideoMAE).

Action recognition with kinematic inputs is lightweight and fast, while still capturing rich information about the task. We therefore offer recognition-ready annotations and splits that pair these modalities with clip-level labels. This makes it easy to evaluate the effect of different inputs (body vs hand vs gaze vs video) on standard classification metrics.

πŸ“‹ Content

This repository contains materials for performing action recognition on EPFL-Smart-Kitchen-30. You can find the original dataset on Zenodo.

Current contents in this folder:

ESK_action_recognition
β”œβ”€β”€ benchmark_data.z01
β”œβ”€β”€ benchmark_data.z02
β”œβ”€β”€ benchmark_data.z03
β”œβ”€β”€ benchmark_data.z04
β”œβ”€β”€ benchmark_data.z05
β”œβ”€β”€ benchmark_data.z06
β”œβ”€β”€ benchmark_data.zip            # main part (open this to extract)
β”œβ”€β”€ checkpoints.z01
β”œβ”€β”€ checkpoints.z02
β”œβ”€β”€ checkpoints.z03
β”œβ”€β”€ checkpoints.z04
β”œβ”€β”€ checkpoints.z05
β”œβ”€β”€ checkpoints.zip               # main part (open this to extract)
└── README.md

How to unzip (Linux):

  1. Ensure all parts are in the same directory (as above).
  2. Use either unzip or 7-Zip, starting from the .zip file (not the .z01).
  • With unzip (preinstalled on many systems):
unzip benchmark_data.zip
unzip checkpoints.zip
  • With 7-Zip (if you prefer):
# install if needed (Debian/Ubuntu)
sudo apt-get update && sudo apt-get install -y p7zip-full

7z x benchmark_data.zip
7z x checkpoints.zip

Notes:

  • Don’t try to extract the .z01 files directlyβ€”always open the corresponding .zip file.
  • If extraction fails, verify that all parts are fully downloaded and present.

After extracting the files, you will get the following folders:

ESK_action_recognition
β”œβ”€β”€ Benchmark_data
|   β”œβ”€β”€ [PARTICIPANT_ID]/[SESSION_ID]
β”œβ”€β”€ Annotations
|   β”œβ”€β”€ [SPLIT].csv
β”œβ”€β”€ Hand_videos
|   β”œβ”€β”€ [SPLIT]
β”œβ”€β”€ pose_data
|   β”œβ”€β”€ [PARTICIPANT_ID]/[SESSION_ID]
β”œβ”€β”€ checkpoints
|   β”œβ”€β”€ [INPUT_TYPE]_experiment
|   β”œβ”€β”€ [INPUT_TYPE]_nopretrain_experiment
└── README.md

πŸ“Š Data format

Clip-level labels are provided in CSV form for straightforward use with classification training code. A minimal activity_labels.csv contains the following columns:

  • clip_id: Unique identifier for the clip
  • participant_id: e.g., YH20XX
  • session_id: e.g., YYYY_MM_DD_hh_mm_ss
  • start_frame, end_frame: temporal window within the session (omit if clips are pre-trimmed files)
  • label_id: integer-coded action class
  • label_name: human-readable action name

Splits are text/CSV files listing clip_id or clip paths for train/val/test.

🌈 Usage

Training and evaluation code are available on the GitHub repository. Please see the Action Recognition section for:

  • dataset splits and loading utilities for clip-level labels
  • using 3D kinematic features (body/hand/eyes) and/or VideoMAE features
  • training scripts for classification models (e.g., MLP/Transformer over features)

🌟 Citations

Please cite our work!

@misc{bonnetto2025epflsmartkitchen,
      title={EPFL-Smart-Kitchen-30: Densely annotated cooking dataset with 3D kinematics to challenge video and language models}, 
      author={Andy Bonnetto and Haozhe Qi and Franklin Leong and Matea Tashkovska and Mahdi Rad and Solaiman Shokur and Friedhelm Hummel and Silvestro Micera and Marc Pollefeys and Alexander Mathis},
      year={2025},
      eprint={2506.01608},
      archivePrefix={arXiv},
      primaryClass={cs.CV},
      url={https://arxiv.org/abs/2506.01608}, 
}

❀️ Acknowledgments Our work was funded by EPFL, Swiss SNF grant (320030-227871), Microsoft Swiss Joint Research Center and a Boehringer Ingelheim Fonds PhD stipend (H.Q.). We are grateful to the Brain Mind Institute for providing funds for hardware and to the Neuro-X Institute for providing funds for services.

Downloads last month
48

Collection including amathislab/ESK_action_recognition