Datasets:
Search is not available for this dataset
The dataset viewer is not available for this split.
Parquet error: Scan size limit exceeded: attempted to read 910925029 bytes, limit is 300000000 bytes
Make sure that
1. the Parquet files contain a page index to enable random access without loading entire row groups2. otherwise use smaller row-group sizes when serializing the Parquet files
Error code: TooBigContentError
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.
IDM Eval Set
A validation set for evaluating Inverse Dynamics Models on macOS screen recordings. Each sample is a 5-second clip of real desktop usage (browser, IDE, terminal) paired with a ground-truth action log captured at the OS level.
The task: given a short screen recording, predict the sequence of user input actions (keypresses, mouse clicks, scrolls) that produced the observed screen changes.
Dataset Structure
clips_recording_{uuid}_seg{N}/
clip_000_{tag}.mp4 # 5s screen recording (1728x1080)
clip_000_{tag}.json # ground truth action log
editing-work/
input_{uuid}_seg{N}.msgpack # raw input event streams
recording_{uuid}_seg{N}.mp4 # full source recordings
Stats
| Clips | 46 |
| Recordings | 9 |
| Total raw actions | 10,914 |
| Resolution | 1728 x 1080 |
| Clip duration | 5 seconds |
Tag distribution:
| Tag | Count |
|---|---|
| scroll/drag | 18 |
| keystroke-heavy | 17 |
| mixed | 4 |
| click-heavy | 4 |
| hotkeys | 2 |
| hard-case | 1 |
Action Log Format
Each clip JSON contains:
{
"start_s": 206.913,
"end_s": 211.913,
"tag": "keystroke-heavy",
"actions": [
[206933331, ["KeyPress", [32, "Space"]]],
[207233331, ["KeyRelease", [32, "Space"]]],
[208633331, ["MousePress", ["Left", 0, 0]]],
[209533331, ["MouseScroll", [0, -1, 0, 0]]]
]
}
- Timestamps are absolute microseconds (subtract
start_s * 1e6for clip-relative) - Action types:
KeyPress,KeyRelease,MousePress,MouseRelease,MouseMove,MouseScroll,ContextChanged - KeyPress params:
[keycode, key_name] - MousePress params:
[button, x, y](coordinates not captured in this version) - MouseScroll params:
[dx, dy, x, y]
- Downloads last month
- 193
