Dataset Viewer
The dataset viewer is not available for this subset.
Cannot get the split names for the config 'default' of the dataset.
Exception:    SplitsNotFoundError
Message:      The split names could not be parsed from the dataset config.
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 290, in _generate_tables
                  pa_table = paj.read_json(
                      io.BytesIO(batch), read_options=paj.ReadOptions(block_size=block_size)
                  )
                File "pyarrow/_json.pyx", line 342, in pyarrow._json.read_json
                File "pyarrow/error.pxi", line 155, in pyarrow.lib.pyarrow_internal_check_status
                File "pyarrow/error.pxi", line 92, in pyarrow.lib.check_status
                  raise convert_status(status)
              pyarrow.lib.ArrowInvalid: JSON parse error: Column() changed from object to string in row 0
              
              During handling of the above exception, another exception occurred:
              
              Traceback (most recent call last):
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
                  for split_generator in builder._split_generators(
                                         ~~~~~~~~~~~~~~~~~~~~~~~~~^
                      StreamingDownloadManager(base_path=builder.base_path, download_config=download_config)
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 101, in _split_generators
                  pa_table = next(iter(self._generate_tables(**splits[0].gen_kwargs, allow_full_read=False)))[1]
                             ~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 304, in _generate_tables
                  batch = json_encode_fields_in_json_lines(original_batch, json_field_paths)
                File "/usr/local/lib/python3.14/site-packages/datasets/utils/json.py", line 111, in json_encode_fields_in_json_lines
                  examples = [ujson_loads(line) for line in original_batch.splitlines()]
                              ~~~~~~~~~~~^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/utils/json.py", line 20, in ujson_loads
                  return pd.io.json.ujson_loads(*args, **kwargs)
                         ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
              ValueError: Expected object or value
              
              The above exception was the direct cause of the following exception:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 66, in compute_split_names_from_streaming_response
                  for split in get_dataset_split_names(
                               ~~~~~~~~~~~~~~~~~~~~~~~^
                      path=dataset,
                      ^^^^^^^^^^^^^
                      config_name=config,
                      ^^^^^^^^^^^^^^^^^^^
                      token=hf_token,
                      ^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
                  info = get_dataset_config_info(
                      path,
                  ...<6 lines>...
                      **config_kwargs,
                  )
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
                  raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
              datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.

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.

EgoSAT ROI Cache

Dataset Description

This dataset contains ROI cache files for EgoSAT. The cache is intended for ROI-aware streaming vision-language models such as ROI-TimeChat and related hand/object/gaze-aware experiments.

This dataset does not contain raw Ego4D videos. Users must obtain Ego4D access and license approval separately before running any workflow that reads the underlying videos.

Related resources:

DOI, proceedings volume, and page numbers will be added after proceedings publication.

Dataset Structure

.
  README.md
  roi_cache/
  metadata/
    roi_cache_index.jsonl
    layout_version.json
    checksums.json
    checksums_all.json
    release_manifest.json
  • roi_cache/: per-sample cache files in JSONL format.
  • metadata/roi_cache_index.jsonl: index mapping cache filenames to video and clip metadata.
  • metadata/layout_version.json: filename pattern, coordinate convention, and cache layout version.
  • metadata/checksums.json and metadata/checksums_all.json: file checksums.
  • metadata/release_manifest.json: release-candidate inclusion and exclusion manifest.

Alignment

Cache filenames follow:

<video_uid>__<clip_id>__<clip_uid>.roi_cache_merged_fps1.jsonl

Use the filename components or metadata/roi_cache_index.jsonl to align a cache file with the corresponding EgoSAT sample. ROI cache alignment is based on video_uid, clip_id, clip_uid, and filename/index metadata.

ROI Record Schema

metadata/layout_version.json records:

  • layout_version: roi_cache_merged_fps1.
  • record_format: jsonl.
  • coord: norm.
  • filename_pattern: <video_uid>__<clip_id>__<clip_uid>.roi_cache_merged_fps1.jsonl.

When coord is norm, box and gaze coordinates are normalized to the frame coordinate system.

metadata/roi_cache_index.jsonl is a JSONL index. Sampled rows contain:

  • video_uid: Ego4D video UID.
  • clip_id: EgoSAT clip or interval id.
  • clip_uid: Ego4D clip UID.
  • filename: cache filename.
  • cache_path_relative: path to the cache file relative to this dataset root.
  • size_bytes: cache file size.
  • num_records: number of frame records in the cache file.
  • format: file format.
  • layout_version: cache layout version.
  • sha256: cache file checksum.

Each file under roi_cache/ is organized frame by frame as JSONL. Sampled records contain:

  • video_uid, clip_id, clip_uid: video and clip identifiers.
  • frame_idx: frame index for the cache record.
  • ts_sec: timestamp relative to the cache clip.
  • t_abs_sec: absolute timestamp in the source video timeline.
  • clip_start_sec_abs, clip_end_sec_abs: absolute clip boundaries.
  • coord: coordinate convention, typically norm.
  • hand_boxes: detected hand boxes.
  • hand_scores: confidence scores for hand_boxes.
  • hand_labels: hand labels corresponding to hand_boxes.
  • left_box, left_score, right_box, right_score: side-specific hand boxes and scores when available.
  • orig_frame_idx_hand, t_hand_abs, clip_t_hand, src_hand: source metadata for hand detections.
  • gaze: gaze record when available, including fields such as x, y, r, and conf.
  • orig_frame_idx_gaze, ts_sec_gaze_rel, t_abs_gaze_sec, src_gaze: source metadata for gaze predictions.
  • src: merged source label, for example hand plus gaze provenance.

Detections may be empty or unavailable for some frames. Loaders should handle null, empty arrays, or missing optional fields.

Ego4D Videos

Raw Ego4D videos are not redistributed in this ROI cache dataset. The cache does not grant Ego4D video access or redistribution rights. Users must separately obtain Ego4D access and comply with the Ego4D license and terms of use before using this cache with video frames.

License and Usage Terms

Dataset license: other.

The EgoSAT ROI cache is released for research use. Raw Ego4D videos are not redistributed in this dataset. Users must separately obtain Ego4D access and comply with the Ego4D license and terms of use. This dataset does not grant any rights to the original Ego4D videos.

The code repository is released separately under the MIT License. Users are responsible for ensuring that their use complies with the licenses and terms of Ego4D and EgoSAT.

Citation

If you use EgoSAT or this ROI cache, cite the benchmark paper:

@inproceedings{lei2026egosat,
  title={EgoSAT: A Comprehensive Benchmark of Egocentric Streaming Interaction Understanding},
  author={Lei, Yijia and Li, Jinzhao and Zhang, Yichi and Hua, Jiacheng and Li, Yin and Liu, Miao},
  booktitle={European Conference on Computer Vision},
  year={2026}
}

The arXiv preprint can be cited as:

@article{lei2026egosat_arxiv,
  title={EgoSAT: A Comprehensive Benchmark of Egocentric Streaming Interaction Understanding},
  author={Lei, Yijia and Li, Jinzhao and Zhang, Yichi and Hua, Jiacheng and Li, Yin and Liu, Miao},
  journal={arXiv preprint arXiv:2606.24422},
  year={2026}
}

Responsible Use

Use this cache only for research and evaluation with properly licensed Ego4D video access and compatible EgoSAT annotations. Do not redistribute raw Ego4D videos. Do not attempt to reconstruct identities or infer private attributes from source videos. Do not treat benchmark outputs as safety-critical decisions.

Downloads last month
1,413

Paper for YijiaLeithu/EgoSAT-ROI-Cache