Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
---
|
|
|
2 |
dataset_info:
|
3 |
features:
|
4 |
- name: image
|
@@ -12,16 +13,16 @@ dataset_info:
|
|
12 |
list: string
|
13 |
splits:
|
14 |
- name: train
|
15 |
-
num_bytes:
|
16 |
num_examples: 678
|
17 |
- name: test
|
18 |
-
num_bytes:
|
19 |
num_examples: 158
|
20 |
- name: valid
|
21 |
-
num_bytes:
|
22 |
num_examples: 150
|
23 |
-
download_size:
|
24 |
-
dataset_size:
|
25 |
configs:
|
26 |
- config_name: default
|
27 |
data_files:
|
@@ -31,4 +32,86 @@ configs:
|
|
31 |
path: data/test-*
|
32 |
- split: valid
|
33 |
path: data/valid-*
|
|
|
|
|
|
|
|
|
|
|
34 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
license: apache-2.0
|
3 |
dataset_info:
|
4 |
features:
|
5 |
- name: image
|
|
|
13 |
list: string
|
14 |
splits:
|
15 |
- name: train
|
16 |
+
num_bytes: 121301432
|
17 |
num_examples: 678
|
18 |
- name: test
|
19 |
+
num_bytes: 26238185
|
20 |
num_examples: 158
|
21 |
- name: valid
|
22 |
+
num_bytes: 23829914
|
23 |
num_examples: 150
|
24 |
+
download_size: 119387398
|
25 |
+
dataset_size: 171369531
|
26 |
configs:
|
27 |
- config_name: default
|
28 |
data_files:
|
|
|
32 |
path: data/test-*
|
33 |
- split: valid
|
34 |
path: data/valid-*
|
35 |
+
task_categories:
|
36 |
+
- object-detection
|
37 |
+
pretty_name: Screen2AX-Element
|
38 |
+
size_categories:
|
39 |
+
- n<1K
|
40 |
---
|
41 |
+
# 📦 Screen2AX-Element
|
42 |
+
|
43 |
+
Screen2AX-Element is part of the **Screen2AX** dataset suite, a research-driven collection for advancing accessibility in macOS applications using computer vision and deep learning.
|
44 |
+
|
45 |
+
This dataset focuses on **UI element detection** from macOS application screenshots and is designed for training and evaluating object detection models.
|
46 |
+
|
47 |
+
---
|
48 |
+
|
49 |
+
## 🧠 Dataset Summary
|
50 |
+
|
51 |
+
Each sample in the dataset consists of:
|
52 |
+
- An application **screenshot** (`image`)
|
53 |
+
- A dictionary of **UI elements** (`objects`) with 2 keys:
|
54 |
+
- `bbox` (`List[List[int]]`): List of bounding box coordinates in `[x_min, y_min, x_max, y_max]` format
|
55 |
+
- `category` (`List[str]`): List of labels indicating the UI element type (`AXButton`, `AXDisclosureTriangle`, `AXLink`, `AXTextArea`, `AXImage`)
|
56 |
+
|
57 |
+
The dataset supports training deep learning models for object detection tasks specifically tuned for graphical user interfaces (GUIs) on macOS.
|
58 |
+
|
59 |
+
**Splits:**
|
60 |
+
- `train`
|
61 |
+
- `valid`
|
62 |
+
- `test`
|
63 |
+
|
64 |
+
**Task Category:**
|
65 |
+
- `object-detection`
|
66 |
+
|
67 |
+
---
|
68 |
+
|
69 |
+
## 📚 Usage
|
70 |
+
|
71 |
+
### Load with `datasets` library
|
72 |
+
|
73 |
+
```python
|
74 |
+
from datasets import load_dataset
|
75 |
+
|
76 |
+
dataset = load_dataset("MacPaw/Screen2AX-Element")
|
77 |
+
```
|
78 |
+
|
79 |
+
### Example structure
|
80 |
+
|
81 |
+
```python
|
82 |
+
sample = dataset["train"][0]
|
83 |
+
print(sample.keys())
|
84 |
+
# dict_keys(['image', 'objects'])
|
85 |
+
|
86 |
+
print(sample["objects"])
|
87 |
+
# {'bbox': [[x_min, y_min, x_max, y_max], ...], 'category': ['AXButton', ...]}
|
88 |
+
```
|
89 |
+
|
90 |
+
---
|
91 |
+
|
92 |
+
## 📜 License
|
93 |
+
|
94 |
+
This dataset is licensed under the **Apache 2.0 License**.
|
95 |
+
|
96 |
+
---
|
97 |
+
|
98 |
+
## 🔗 Related Projects
|
99 |
+
|
100 |
+
- [Screen2AX Main Project Page](https://github.com/MacPaw/Screen2AX)
|
101 |
+
- [Screen2AX HuggingFace Collection](https://huggingface.co/collections/MacPaw/screen2ax-687dfe564d50f163020378b8)
|
102 |
+
|
103 |
+
---
|
104 |
+
|
105 |
+
## ✍️ Citation
|
106 |
+
|
107 |
+
If you use this dataset, please cite the Screen2AX paper:
|
108 |
+
|
109 |
+
```bibtex
|
110 |
+
...
|
111 |
+
```
|
112 |
+
|
113 |
+
---
|
114 |
+
|
115 |
+
## 🌐 MacPaw Research
|
116 |
+
|
117 |
+
Learn more at [https://research.macpaw.com](https://research.macpaw.com)
|