mllmTeam commited on
Commit
bdfeedc
1 Parent(s): 13e8af3

Delete README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +0 -133
README.md DELETED
@@ -1,133 +0,0 @@
1
- ---
2
- language: [en]
3
- license: mit
4
- datasets: [MobileViews]
5
- pretty_name: "MobileViews: A Large-Scale Mobile GUI Dataset"
6
- tags:
7
- - mobile-ui
8
- - user-interfaces
9
- - view-hierarchy
10
- - android-apps
11
- - screenshots
12
- task_categories:
13
- - question-answering
14
- - image-to-text
15
- task_ids:
16
- - task-planning
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
-
27
- The dataset consists of multiple `.tar.gz` files containing screenshot-VH pairs and corresponding CSV index files that map each screenshot to its VH:
28
-
29
- - `MobileViews_0-291197.tar.gz` and `MobileViews_index_0-291197.csv`: The first set of screenshot-VH pairs, containing IDs from 0 to 291197.
30
- - `MobileViews_300000-522301.tar.gz` and `MobileViews_index_300000-522301.csv`: The second set of screenshot-VH pairs, containing IDs from 300000 to 522301.
31
- - `AppMetadata.csv`: App metadata for **15,000 apps** from the Google Play Store, retrieved in **June 2024**.
32
-
33
- ### Index CSV Columns
34
-
35
- Each index CSV file contains the following columns, mapping each screenshot to its corresponding view hierarchy:
36
-
37
- | Column | Description |
38
- |--------------|-------------------------------------------|
39
- | `Image File` | Filename of the screenshot (e.g., 0.jpg) |
40
- | `JSON File` | Filename of the view hierarchy (e.g., 0.json) |
41
-
42
- **Example:**
43
- ```csv
44
- Image File,JSON File
45
- 300000.jpg,300000.json
46
- 300001.jpg,300001.json
47
- 300002.jpg,300002.json
48
- ```
49
-
50
- Each `.tar.gz` file contains both the screenshots (JPG) and view hierarchy files (JSON).
51
-
52
- ### AppMetadata.csv Columns
53
-
54
- The `AppMetadata.csv` file contains detailed information about each app. The columns are as follows:
55
-
56
- | Column | Description |
57
- |---------------------|------------------------------------------------------------------|
58
- | `title` | App title |
59
- | `installs` | Number of installs |
60
- | `minInstalls` | Minimum number of installs |
61
- | `realInstalls` | Real number of installs |
62
- | `score` | App score (rating) |
63
- | `ratings` | Number of ratings |
64
- | `reviews` | Number of reviews |
65
- | `histogram` | Rating distribution |
66
- | `price` | App price |
67
- | `free` | Indicates if the app is free (True/False) |
68
- | `offersIAP` | Offers in-app purchases (True/False) |
69
- | `inAppProductPrice` | In-app product price |
70
- | `developer` | Developer name |
71
- | `developerId` | Developer ID |
72
- | `genre` | App genre |
73
- | `genreId` | Genre ID |
74
- | `categories` | App categories |
75
- | `contentRating` | Content rating (e.g., Everyone, Teen) |
76
- | `adSupported` | Indicates if the app is ad-supported (True/False) |
77
- | `containsAds` | Indicates if the app contains ads (True/False) |
78
- | `released` | App release date |
79
- | `lastUpdatedOn` | Date of the latest update |
80
- | `appId` | Unique app identifier |
81
-
82
-
83
- ## How to Use
84
-
85
- To access and use the MobileViews dataset, follow these steps:
86
-
87
- 1. **Clone the Repository and Download the Dataset Files**:
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. **Verify the Downloaded File Sizes**:
96
-
97
- After running git lfs pull, use the following command to verify that the downloaded file sizes match the expected sizes:
98
-
99
- ```bash
100
- du -sh /path/to/downloaded/file
101
- ```
102
- The correct file sizes are:
103
- - MobileViews_0-291197.tar.gz: 11.9 GB
104
- - MobileViews_300000-522301.tar.gz: 11 GB
105
-
106
- If the sizes do not match, please rerun git lfs pull to ensure the files are fully downloaded.
107
- 3. **Extract the Dataset Files**:
108
-
109
- The `.tar.gz` files contain the screenshot-view hierarchy (VH) pairs. Use the following commands to extract the files:
110
- ```bash
111
- # Extract the first set of data
112
- tar -xzvf MobileViews_0-291197.tar.gz
113
-
114
- # Extract the second set of data
115
- tar -xzvf MobileViews_300000-522301.tar.gz
116
- ```
117
- 4. **Use the CSV Index Files**:
118
- 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.
119
-
120
- ## Citation
121
-
122
-
123
- ```
124
- @misc{gao2024mobileviewslargescalemobilegui,
125
- title={MobileViews: A Large-Scale Mobile GUI Dataset},
126
- author={Longxi Gao and Li Zhang and Shihe Wang and Shangguang Wang and Yuanchun Li and Mengwei Xu},
127
- year={2024},
128
- eprint={2409.14337},
129
- archivePrefix={arXiv},
130
- primaryClass={cs.HC},
131
- url={https://arxiv.org/abs/2409.14337},
132
- }
133
- ```