BAJUKA commited on
Commit
7c30519
Β·
verified Β·
1 Parent(s): 6b0cf5f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +80 -68
README.md CHANGED
@@ -1,69 +1,81 @@
1
- # UI-Vision-Ground Dataset
2
-
3
- ## Overview
4
-
5
- UI-Vision-Ground is a comprehensive dataset containing annotated UI screenshots and corresponding ground truth data for building computer use agents. The dataset covers 87 different software platforms/applications, providing rich annotations for UI element detection, classification, and understanding.
6
-
7
- ## Dataset Structure
8
-
9
- ```
10
- UI-Vision-Ground/
11
- β”œβ”€β”€ data/ # Annotation files (JSON format)
12
- β”œβ”€β”€ images/ # Screenshot images (PNG format)
13
- β”œβ”€β”€ README.md
14
- ```
15
-
16
- ### Directory Organization
17
-
18
- - **`data/`**: Contains 87 platform-specific directories, each with JSON annotation files
19
- - **`images/`**: Contains 87 platform-specific directories, each with corresponding PNG screenshot images
20
-
21
- ## File Naming Convention
22
-
23
- Files are named using SHA-256 hashes, ensuring unique identifiers while maintaining correspondence between annotation and image files:
24
- - `data/Platform/[hash].json`
25
- - `images/Platform/[hash].png`
26
-
27
- Where `[hash]` is the same SHA-256 hash for corresponding annotation and image pairs.
28
-
29
- ## Annotation Format
30
-
31
- Each JSON file contains an array of UI element annotations with the following structure:
32
-
33
- ```json
34
- [
35
- {
36
- "image_path": "Platform/screenshot_hash.png",
37
- "bbox": [x1, y1, x2, y2],
38
- "text": "UI element text",
39
- "category": "Element category",
40
- "id": "unique-identifier"
41
- },
42
- ...
43
- ]
44
- ```
45
-
46
- ### Annotation Fields
47
-
48
- - **`image_path`**: Relative path to the corresponding screenshot image
49
- - **`bbox`**: Bounding box coordinates [x1, y1, x2, y2] defining the element's location
50
- - **`text`**: Text content or description of the UI element
51
- - **`category`**: Classification of the UI element type. This is a crude classification and is present for few elements
52
- - **`id`**: Unique identifier for the annotation
53
-
54
- ### UI Element Categories
55
-
56
- The dataset includes several categories of UI elements (these are not avaialble for the entire dataset and maybe ambiguious sometimes):
57
-
58
- - **`Button`**: Interactive buttons and clickable elements
59
- - **`Menu`**: Interactive buttons and clickable elements
60
- - **`Input Elements`**: Text fields, dropdowns, checkboxes, and other input controls
61
- - **`Navigation`**: Menu items, navigation bars, and navigational elements
62
- - **`Sidebar`**: Sidebars like scrollbars
63
- - **`Visual Elements`**: Labels, headers, icons, and visual display components
64
- - **`Information Display`**: Status bars, information panels, and data display elements
65
- - **`Others`**: Miscellaneous UI elements that don't fit other categories
66
-
67
- ## License
68
-
 
 
 
 
 
 
 
 
 
 
 
 
69
  This dataset is released under the MIT License. See the license header for details.
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - computer_use
6
+ - agents
7
+ - grounding
8
+ - multimodal
9
+ - ui-vision
10
+ size_categories:
11
+ - 10K<n<100K
12
+ ---
13
+ # UI-Vision-Ground Dataset
14
+
15
+ ## Overview
16
+
17
+ UI-Vision-Ground is a comprehensive dataset containing annotated UI screenshots and corresponding ground truth data for building computer use agents. The dataset covers 87 different software platforms/applications, providing rich annotations for UI element detection, classification, and understanding.
18
+
19
+ ## Dataset Structure
20
+
21
+ ```
22
+ UI-Vision-Ground/
23
+ β”œβ”€β”€ data/ # Annotation files (JSON format)
24
+ β”œβ”€β”€ images/ # Screenshot images (PNG format)
25
+ β”œβ”€β”€ README.md
26
+ ```
27
+
28
+ ### Directory Organization
29
+
30
+ - **`data/`**: Contains 87 platform-specific directories, each with JSON annotation files
31
+ - **`images/`**: Contains 87 platform-specific directories, each with corresponding PNG screenshot images
32
+
33
+ ## File Naming Convention
34
+
35
+ Files are named using SHA-256 hashes, ensuring unique identifiers while maintaining correspondence between annotation and image files:
36
+ - `data/Platform/[hash].json`
37
+ - `images/Platform/[hash].png`
38
+
39
+ Where `[hash]` is the same SHA-256 hash for corresponding annotation and image pairs.
40
+
41
+ ## Annotation Format
42
+
43
+ Each JSON file contains an array of UI element annotations with the following structure:
44
+
45
+ ```json
46
+ [
47
+ {
48
+ "image_path": "Platform/screenshot_hash.png",
49
+ "bbox": [x1, y1, x2, y2],
50
+ "text": "UI element text",
51
+ "category": "Element category",
52
+ "id": "unique-identifier"
53
+ },
54
+ ...
55
+ ]
56
+ ```
57
+
58
+ ### Annotation Fields
59
+
60
+ - **`image_path`**: Relative path to the corresponding screenshot image
61
+ - **`bbox`**: Bounding box coordinates [x1, y1, x2, y2] defining the element's location
62
+ - **`text`**: Text content or description of the UI element
63
+ - **`category`**: Classification of the UI element type. This is a crude classification and is present for few elements
64
+ - **`id`**: Unique identifier for the annotation
65
+
66
+ ### UI Element Categories
67
+
68
+ The dataset includes several categories of UI elements (these are not avaialble for the entire dataset and maybe ambiguious sometimes):
69
+
70
+ - **`Button`**: Interactive buttons and clickable elements
71
+ - **`Menu`**: Interactive buttons and clickable elements
72
+ - **`Input Elements`**: Text fields, dropdowns, checkboxes, and other input controls
73
+ - **`Navigation`**: Menu items, navigation bars, and navigational elements
74
+ - **`Sidebar`**: Sidebars like scrollbars
75
+ - **`Visual Elements`**: Labels, headers, icons, and visual display components
76
+ - **`Information Display`**: Status bars, information panels, and data display elements
77
+ - **`Others`**: Miscellaneous UI elements that don't fit other categories
78
+
79
+ ## License
80
+
81
  This dataset is released under the MIT License. See the license header for details.