You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
link available with camera ready submission for the paper,
Citation
When using these labels, kindly reference:
@inproceedings{price2022UnweaveNet,
title={UnweaveNet: Unweaving Activity Stories},
author={Price, Will and Vondrick, Carl and Damen, Dima},
booktitle={IEEE/CVF Computer Vision and Pattern Recognition (CVPR)},
year={2022}
}
Videos
Labels below are for part of the EPIC-KITCHENS-100 videos. Videos were re-encoded to a fixed 30 FPS before frames aare extracted. All frame indices in the labels released here assume this.
Assuming a frame data loader load_frames(video_id, frame_idxs), you can reconstruct the story like so:
row=df.iloc[0] # picking an arbitrary row as an examplethreads= []
forthread_clip_frame_idxsinrow['clip_frame_idxs']:
frames=load_frames(row['video_id'], frame_idxs.flatten())
frames=frames.reshape(frame_idxs.shape+frame_idxs.shape[1:])
threads.append(frames)
story=np.stack([
threads[thread_idx][thread_clip_idx]
forthread_idx, thread_clip_idxinrow['thread_clip_idxs']]
)
Schema
Column
Description
video_id
The unique ID of the full video from EPIC-KITCHENS-100
clip_frame_idxs
A 2D array that describes the frame indices of each clip forming a thread. This can be indexed like so: clip_frame_idxs[thread_idx][clip_idx] -> [video_frame_idx]
thread_clip_idxs
A 2D array that describes how the clips are woven to form the story: thread_clip_idxs[story_clip_idx] -> [thread_idx, thread_clip_idx]
id
A unique identifier for the story
split
One of train/val/test indicating the split the story belongs to
About
Data for the activity stories from EPIC-Kitchens used in "UnweaveNet: Unweaving Activity Stories"