readme
Browse files
README.md
CHANGED
@@ -17,8 +17,10 @@ task_ids:
|
|
17 |
- visual-question-answering
|
18 |
---
|
19 |
# MobileViews: A Large-Scale Mobile GUI Dataset
|
|
|
|
|
|
|
20 |
|
21 |
-
**MobileViews** is a large-scale dataset designed to support research in mobile user interface (UI) analysis and mobile agents. It contains over **600,000** mobile UI screenshot-view hierarchy (VH) pairs collected from approximately **20,000 apps** on the Google Play Store.
|
22 |
|
23 |
## Dataset Overview
|
24 |
|
@@ -80,17 +82,28 @@ The `AppMetadata.csv` file contains detailed information about each app. The col
|
|
80 |
|
81 |
## How to Use
|
82 |
|
83 |
-
|
84 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
```bash
|
86 |
# Extract the first set of data
|
87 |
tar -xzvf MobileViews_0-291197.tar.gz
|
88 |
-
|
89 |
# Extract the second set of data
|
90 |
tar -xzvf MobileViews_300000-522301.tar.gz
|
91 |
```
|
92 |
-
3. Use the
|
93 |
-
|
94 |
|
95 |
## Citation
|
96 |
|
|
|
17 |
- visual-question-answering
|
18 |
---
|
19 |
# MobileViews: A Large-Scale Mobile GUI Dataset
|
20 |
+
[**Read the paper**](https://arxiv.org/abs/2409.14337)
|
21 |
+
|
22 |
+
**MobileViews** is a large-scale dataset designed to support research in mobile user interface (UI) analysis and mobile agents. Our first version — **MobileViews-600K** — contains over **600,000** mobile UI screenshot-view hierarchy (VH) pairs, collected from approximately **20,000 apps** on the Google Play Store.
|
23 |
|
|
|
24 |
|
25 |
## Dataset Overview
|
26 |
|
|
|
82 |
|
83 |
## How to Use
|
84 |
|
85 |
+
To access and use the MobileViews dataset, follow these steps:
|
86 |
+
|
87 |
+
1. **Clone the Repository**:
|
88 |
+
|
89 |
+
Use Git and Git LFS to clone the repository and ensure that large files (such as `.tar.gz`) are correctly pulled from Git LFS:
|
90 |
+
```bash
|
91 |
+
git clone https://huggingface.co/datasets/mllmTeam/MobileViews
|
92 |
+
cd /path/to/MobileViews
|
93 |
+
git lfs pull
|
94 |
+
```
|
95 |
+
2. **Download and Extract the Dataset Files**:
|
96 |
+
|
97 |
+
The `.tar.gz` files contain the screenshot-view hierarchy (VH) pairs. Use the following commands to extract the files:
|
98 |
```bash
|
99 |
# Extract the first set of data
|
100 |
tar -xzvf MobileViews_0-291197.tar.gz
|
101 |
+
|
102 |
# Extract the second set of data
|
103 |
tar -xzvf MobileViews_300000-522301.tar.gz
|
104 |
```
|
105 |
+
3. **Use the CSV Index Files**:
|
106 |
+
Each `.tar.gz` file has an associated CSV index file that maps the screenshots to their corresponding view hierarchy files (JSON). You can use the index CSV file to match each pair based on their IDs.
|
107 |
|
108 |
## Citation
|
109 |
|