The dataset viewer is not available for this subset.
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/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/webdataset/webdataset.py", line 78, in _split_generators
first_examples = list(islice(pipeline, self.NUM_EXAMPLES_FOR_FEATURES_INFERENCE))
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 54, in _get_pipeline_from_tar
current_example[field_name] = cls.DECODERS[data_extension](current_example[field_name])
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 316, in npy_loads
return numpy.lib.format.read_array(stream, allow_pickle=False)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/numpy/lib/_format_impl.py", line 833, in read_array
raise ValueError("Object arrays cannot be loaded when "
"allow_pickle=False")
ValueError: Object arrays cannot be loaded when allow_pickle=False
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 68, 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.
egotouch-annotations-v1
Annotations only — no images, no video.
VITRA-style hand episodes for EgoTouch, with per-hand instructions and paraphrases.
| episodes | 111,159 |
training samples (index_frame_pair rows) |
3,687,389 |
| annotation | MANO pose + world/camera joints + per-frame extrinsics |
| text | one instruction per episode + 1.93 paraphrases on average |
| images / video | not included — see Getting the frames below |
What we did
Episodes are ours. The source release ships either raw video or differently-segmented clips, so we re-cut it with VITRA's method — speed minima of the 3D wrist in world space:
gaussian smooth (sigma=1.0) -> local speed minima in a fixed window (win=15, i.e. 0.5 s
at 30 Hz) -> merge runs shorter than min_seg=16 -> pad 2 frames on each end
sigma and win are quantities in time, converted per source frame rate. Left and right hands are cut independently, with the other hand's motion ignored.
Instructions are ours. Two rounds, both with Qwen3.5-122B-A10B-FP8:
round 1 captions 8 frames per episode with the palm's future trajectory drawn on them;
round 2 checks the sentence belongs to that hand, strips same-hand references
("Rinse the right hand." -> "Rinse the hand.", because training already prepends
Left hand: ... Right hand: ...), and writes 1-3 paraphrases.
Episodes with no instruction are not included. Round 1 returns N/A when an episode
shows no object interaction. Those episodes are excluded from both the archive and the
index, so every episode here has a usable instruction.
Tactile
This is the only domain here that carries tactile data. Each episode has an extra
top-level tactile dict (not part of VITRA's original format):
d["tactile"]["left"] ndarray (T, 21, 21) float32 # NaN outside the sensor area
d["tactile"]["right"] ndarray (T, 21, 21) float32
Row t of tactile[hand] is the pressure map for the same frame as row t of
joints_worldspace and of video_decode_frame — i.e. tactile and pose are aligned
frame-for-frame, no resampling.
We verified that mapping end to end rather than assuming it:
- the source release ships one pressure row per video frame (
frame_indexruns0..n-1, strictly increasing, at exactly 30.00 fps) — checked on sampled scenes; - pressure length equals video frame count for all 1,566 scenes x 2 hands, with zero exceptions, so nothing was silently truncated;
- our stored values reproduce the official
pressure_grids.npzat every frame; the per-frame pressure totals cross-correlate at lag 0 with r = 1.0000, and a spatial transpose does not match, ruling out both a time shift and an axis swap; - within an episode, the tactile slice is the same
[a:b]window as the pose slice (byte-identical on every sampled episode).
Values are the official ones passed through float16 at one intermediate stage, so they
differ from the source by at most one float16 half-ULP (max observed 2.41e-4 on a
0-1 normalised map). Positions of NaN are preserved exactly.
Files
egotouch.tar -> Annotation/egotouch/episodic_annotations/*.npy
episode_frame_index.npz index_frame_pair (N,2) uint32 + index_to_episode_id (E,)
index_frame_pair row number is the sample id: row r = (episode ordinal, frame within
that episode). len(index_frame_pair) is the size of the training set.
import numpy as np
# tar -xf egotouch.tar
z = np.load("episode_frame_index.npz", allow_pickle=True)
ep_slot, frame_id = z["index_frame_pair"][sample_id]
eid = str(z["index_to_episode_id"][ep_slot])
d = np.load(f"Annotation/egotouch/episodic_annotations/{eid}.npy", allow_pickle=True).item()
rgb_frame_id = int(d["video_decode_frame"][frame_id])
Each .npy is a dict with video_name, video_decode_frame, intrinsics,
per-frame extrinsics (world->camera), anno_type (which hand this episode is for),
text, text_rephrase, and a left/right dict holding beta, hand_pose,
global_orient_worldspace, transl_worldspace, joints_worldspace, kept_frames.
text[hand] = [(sentence, (0, T))] and text_rephrase[hand] = [([paraphrases...], (0, T))].
Getting the frames
video_decode_frame indexes the source video, which we do not redistribute.
Get it from EgoTouch — https://huggingface.co/datasets/zhouzhoujy/EgoTouch, then decode by index (we use decord; a self-maintained
sequential counter drifts silently if the decoder ever skips a frame).
Known limitations
- Paraphrase count averages 1.93, not a fixed number. Past 3 the model starts inventing; a sentence with no prepositional phrase honestly supports only one or two.
- Verified: the index lists exactly the episodes that have an instruction, every episode's stored frame count matches its index rows, and no index entry points at a missing episode.
The collection
Every dataset we have taken through this pipeline, with what is published today.
All repos live under MIT-Media-Lab and are
annotations only — no images, no video.
| dataset | episodes | training samples | our contribution | size | HF |
|---|---|---|---|---|---|
| EPIC-KITCHENS-100 | 149,570 | 4,019,534 | episodes + text | 8.70 GB | epic30-annotations-v1 |
| EgoTouch | 111,159 | 3,687,389 | episodes + text + tactile | 20.12 GB | egotouch-annotations-v1 |
| GigaHands | 70,486 | 2,266,087 | episodes + text | 2.89 GB | gigahands-annotations-v1 |
| Ego-Exo4D | 67,051 | 1,757,474 | text only | 4.09 GB | egoexo4d-annotations-v1 |
| Something-Something V2 | 52,706 | 1,124,722 | text only | 4.63 GB | ssv2-annotations-v1 |
| OakInk2 | 28,264 | 1,371,721 | episodes + text | 1.92 GB | oakink2-annotations-v1 |
| TACO | 23,757 | 736,136 | episodes + text | 1.34 GB | taco-annotations-v1 |
| H2O | 5,696 | 196,941 | episodes + text | 0.40 GB | h2o-annotations-v1 |
| total | 508,689 | 15,160,004 | 44.1 GB |
episodes = entries in episode_frame_index.npz, i.e. what a training run actually sees.
training samples = rows of index_frame_pair; the row number is the sample id.
episodes + text means we re-cut the source ourselves at wrist-speed minima and then wrote the instructions. text only means the episodes are VITRA-1M's official segmentation, used unchanged, and only the instructions are ours.
Episodes whose round-1 caption came back N/A (no object interaction) are not published —
they are excluded from both the archive and the index, so every episode here has a usable
instruction. That is why the published counts are below the totals we cut:
| episodes on disk | published | dropped as N/A |
|
|---|---|---|---|
| EPIC-KITCHENS-100 | 151,502 | 149,570 | 1,932 (1.3%) |
| EgoTouch | 147,386 | 111,159 | 36,227 (24.6%) |
| GigaHands | 92,365 | 70,486 | 21,879 (23.7%) |
| Ego-Exo4D | 67,051 | 67,051 | 0 |
| Something-Something V2 | 52,706 | 52,706 | 0 |
| OakInk2 | 37,692 | 28,264 | 9,427 (25.0%) |
| TACO | 26,454 | 23,757 | 2,697 (10.2%) |
| H2O | 7,792 | 5,696 | 2,096 (26.9%) |
ssv2 and egoexo4d are 0 because VITRA-1M already dropped N/A upstream — their episodes
are the official segmentation, so there was nothing left for us to drop. Their on-disk counts are
slightly below VITRA-1M's published index (52,718 and 67,053) because round 2 marked a handful of
sentences unusable and we deleted those episodes: 12 from ssv2, 2 from egoexo4d.
DexYCB was removed
DexYCB was removed from this collection on 2026-08-30. It is captured by 8 fixed RealSense
cameras around a table; its own camera.role field reads allocentric on all 15,878 episodes.
Unlike OakInk2, which ships an egocentric view alongside three allocentric ones, DexYCB has no
head-mounted camera at all, so there was nothing to filter down to.
Not published yet
| dataset | episodes cut | where it stands |
|---|---|---|
| ARCTIC | 14,826 | cut only — no rendering, captions or index yet |
| HOI4D | — | source converted by a colleague; not re-cut |
| HOT3D | — | source converted by a colleague; not re-cut |
- Downloads last month
- 52