harpreetsahota commited on
Commit
6104310
·
verified ·
1 Parent(s): 50ea952

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -9
README.md CHANGED
@@ -131,15 +131,24 @@ WaveUI-25k is a curated dataset of approximately 25,000 labeled user interface (
131
 
132
  Each entry in WaveUI-25k represents UI elements and includes the following fields:
133
 
134
- - `name`: Descriptive name of the UI element.
135
- - `description`: Detailed description of the element.
136
- - `type`: Type/category of the UI element (e.g., button, link, tab).
137
- - `OCR`: Text content extracted via OCR; null if not available.
138
- - `language`: Language of the OCR text; null if not available.
139
- - `purpose`: General intended purpose of the element.
140
- - `expectation`: Expected outcome when interacting with the element.
141
- - Additional fields: Bounding box coordinates, image resolution, source dataset, and platform (web, mobile, desktop).
142
-
 
 
 
 
 
 
 
 
 
143
  The dataset is stored in FiftyOne format, with a total size of approximately 10.6 GB and 24,978 samples.
144
 
145
  ## Dataset Creation
 
131
 
132
  Each entry in WaveUI-25k represents UI elements and includes the following fields:
133
 
134
+ # WaveUI-25k Dataset Structure
135
+
136
+ **Core Fields:**
137
+ - **`metadata`**: EmbeddedDocumentField - Image properties (size, dimensions)
138
+ - **`instruction`**: StringField - UI element type description
139
+ - **`source`**: StringField - Data origin (webui, roboflow)
140
+ - **`platform`**: StringField - Web, mobile, or desktop
141
+ - **`name`**: StringField - Element name
142
+ - **`language`**: StringField - Text language
143
+ - **`purpose`**: StringField - Element's intended function
144
+ - **`expectation`**: StringField - Expected interaction outcome
145
+ - **`detections`**: EmbeddedDocumentField containing:
146
+ - **`label`**: Element type (button, link)
147
+ - **`bounding_box`**: a list of relative bounding box coordinates in [0, 1] in the following format: `[<top-left-x>, <top-left-y>, <width>, <height>]`
148
+ - **`text`**: OCR content
149
+ - **`description`**: Detailed element description
150
+
151
+ The dataset provides comprehensive annotations of UI elements for machine learning applications.
152
  The dataset is stored in FiftyOne format, with a total size of approximately 10.6 GB and 24,978 samples.
153
 
154
  ## Dataset Creation