file size
Browse files
README.md
CHANGED
@@ -84,7 +84,7 @@ The `AppMetadata.csv` file contains detailed information about each app. The col
|
|
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
|
@@ -92,7 +92,19 @@ To access and use the MobileViews dataset, follow these steps:
|
|
92 |
cd /path/to/MobileViews
|
93 |
git lfs pull
|
94 |
```
|
95 |
-
2. **
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
|
97 |
The `.tar.gz` files contain the screenshot-view hierarchy (VH) pairs. Use the following commands to extract the files:
|
98 |
```bash
|
@@ -102,7 +114,7 @@ To access and use the MobileViews dataset, follow these steps:
|
|
102 |
# Extract the second set of data
|
103 |
tar -xzvf MobileViews_300000-522301.tar.gz
|
104 |
```
|
105 |
-
|
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
|
|
|
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
|
|
|
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
|
|
|
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
|