Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -36,8 +36,8 @@ editing-work/
|
|
| 36 |
|
| 37 |
| | |
|
| 38 |
|---|---|
|
| 39 |
-
| Clips |
|
| 40 |
-
| Recordings |
|
| 41 |
| Total raw actions | 10,914 |
|
| 42 |
| Resolution | 1728 x 1080 |
|
| 43 |
| Clip duration | 5 seconds |
|
|
@@ -76,3 +76,25 @@ Each clip JSON contains:
|
|
| 76 |
- KeyPress params: `[keycode, key_name]`
|
| 77 |
- MousePress params: `[button, x, y]` (coordinates not captured in this version)
|
| 78 |
- MouseScroll params: `[dx, dy, x, y]`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
|
| 37 |
| | |
|
| 38 |
|---|---|
|
| 39 |
+
| Clips | 51 |
|
| 40 |
+
| Recordings | 11 |
|
| 41 |
| Total raw actions | 10,914 |
|
| 42 |
| Resolution | 1728 x 1080 |
|
| 43 |
| Clip duration | 5 seconds |
|
|
|
|
| 76 |
- KeyPress params: `[keycode, key_name]`
|
| 77 |
- MousePress params: `[button, x, y]` (coordinates not captured in this version)
|
| 78 |
- MouseScroll params: `[dx, dy, x, y]`
|
| 79 |
+
|
| 80 |
+
## Annotations
|
| 81 |
+
|
| 82 |
+
`annotations.json` contains manual visibility labels for each primary action (KeyPress, MousePress, MouseScroll) in each clip. Keys are clip paths, values map action indices to one of three labels:
|
| 83 |
+
|
| 84 |
+
| Label | Count | Meaning |
|
| 85 |
+
|---|---|---|
|
| 86 |
+
| `visible` | 510 | Effect is directly visible in the frames |
|
| 87 |
+
| `inferable` | 266 | Effect can be inferred but isn't directly visible |
|
| 88 |
+
| `not_predictable` | 34 | Cannot be predicted from video alone |
|
| 89 |
+
|
| 90 |
+
```json
|
| 91 |
+
{
|
| 92 |
+
"clips_recording_.../clip_003_keystroke-heavy": {
|
| 93 |
+
"0": "visible",
|
| 94 |
+
"1": "inferable",
|
| 95 |
+
"2": "not_predictable"
|
| 96 |
+
}
|
| 97 |
+
}
|
| 98 |
+
```
|
| 99 |
+
|
| 100 |
+
Use these to filter ground truth when scoring — e.g. exclude `not_predictable` actions from recall calculations.
|