Update README.md
Browse files
README.md
CHANGED
|
@@ -42,4 +42,19 @@ configs:
|
|
| 42 |
|
| 43 |
# Dataset Card for VideoGUI-Action
|
| 44 |
|
| 45 |
-
This is the Action execution part of VideoGUI benchmark.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
|
| 43 |
# Dataset Card for VideoGUI-Action
|
| 44 |
|
| 45 |
+
This is the Action execution part of VideoGUI benchmark.
|
| 46 |
+
|
| 47 |
+
## Data Fields
|
| 48 |
+
- **"app" (str)**: The name of the software being used.
|
| 49 |
+
- **"task_id" (str)**: A unique identifier for each full task.
|
| 50 |
+
- **"screenshot_start" (image)**: The screenshot image representing the state at the beginning of the action.
|
| 51 |
+
- **"action_type" (str)**: The type of action performed e.g., (right) click, drag, type, scroll
|
| 52 |
+
- **"action_narration" (str)**: A textual description of the action, narrating what happens during the action.
|
| 53 |
+
- **"start_position" (list[int])**: The starting position of the action on the screen, represented as a sequence of integers (e.g., coordinates).
|
| 54 |
+
- **"end_position" (list[int])**: The ending position of the action on the screen, represented as a sequence of integers (e.g., coordinates).
|
| 55 |
+
- **"scroll_value" (float)**: The value of the scroll action if applicable, indicating the amount of scrolling performed.
|
| 56 |
+
- **"action_sequence" (str)**: The sequence of actions taken, represented as a string for easier understanding and processing.
|
| 57 |
+
- **"subtask_id" (int)**: A unique identifier for the subtask within the full task.
|
| 58 |
+
- **"subtask_query" (str)**: The query or input related to the subtask, which may guide the actions sequence taken.
|
| 59 |
+
- **"action_id" (int)**: A unique identifier for the specific action performed within the task.
|
| 60 |
+
|