Add dataset mirror README
Browse files
README.md
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: unknown
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- gui
|
| 7 |
+
- ui
|
| 8 |
+
- mobile-ui
|
| 9 |
+
- visual-search
|
| 10 |
+
- object-detection
|
| 11 |
+
- computer-vision
|
| 12 |
+
- dataset-mirror
|
| 13 |
+
pretty_name: VINS Dataset Mirror
|
| 14 |
+
size_categories:
|
| 15 |
+
- 1K<n<10K
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# VINS Dataset Mirror
|
| 19 |
+
|
| 20 |
+
> **Important: this repository is an unofficial Hugging Face mirror of the VINS dataset.**
|
| 21 |
+
>
|
| 22 |
+
> The official project is: <https://github.com/sbunian/VINS>
|
| 23 |
+
> The original dataset download is hosted on Google Drive by the VINS authors. This mirror is provided to make the dataset easier for the community to download from Hugging Face.
|
| 24 |
+
|
| 25 |
+
## Dataset description
|
| 26 |
+
|
| 27 |
+
VINS (**Visual Search for Mobile User Interface Design**) is an annotated dataset for mobile user interface design research, released with the CHI 2021 paper/repository “VINS: Visual Search for Mobile User Interface Design”.
|
| 28 |
+
|
| 29 |
+
According to the official repository, the dataset contains UI screens from two design stages:
|
| 30 |
+
|
| 31 |
+
- abstract wireframes
|
| 32 |
+
- high-fidelity fully designed interfaces
|
| 33 |
+
|
| 34 |
+
The UI screens are annotated with bounding boxes for UI component classes, including background images, sliding menus, pop-up windows, input fields, icons, images, text, switches, checked views, text buttons, and page indicators.
|
| 35 |
+
|
| 36 |
+
## Files in this mirror
|
| 37 |
+
|
| 38 |
+
- `VINS.zip` — original Google Drive dataset archive downloaded from the official VINS GitHub link.
|
| 39 |
+
- `SHA256SUMS` — checksum generated for the mirrored archive.
|
| 40 |
+
|
| 41 |
+
Current mirrored archive checksum:
|
| 42 |
+
|
| 43 |
+
```text
|
| 44 |
+
b572ce21b742dedb907ee46c6afa5ee124637405b7ad99db5f04647a13dbca9f VINS.zip
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
## Archive structure
|
| 48 |
+
|
| 49 |
+
The archive contains an `All Dataset/` directory with subsets such as:
|
| 50 |
+
|
| 51 |
+
- `Wireframes/`
|
| 52 |
+
- `Android/`
|
| 53 |
+
- `Rico/`
|
| 54 |
+
- `iphone/`
|
| 55 |
+
- `uplabs/`
|
| 56 |
+
|
| 57 |
+
Each subset includes:
|
| 58 |
+
|
| 59 |
+
- `Annotations/` — XML annotation files
|
| 60 |
+
- `JPEGImages/` — UI screen images
|
| 61 |
+
|
| 62 |
+
A local integrity check of the mirrored zip completed successfully (`zipfile.testzip() -> None`). The archive listing showed 19,160 zip entries, including macOS metadata files (`__MACOSX/`, `.DS_Store`) from the original package.
|
| 63 |
+
|
| 64 |
+
## Download
|
| 65 |
+
|
| 66 |
+
Using `huggingface_hub`:
|
| 67 |
+
|
| 68 |
+
```python
|
| 69 |
+
from huggingface_hub import hf_hub_download
|
| 70 |
+
|
| 71 |
+
path = hf_hub_download(
|
| 72 |
+
repo_id="leosltl/VINS",
|
| 73 |
+
repo_type="dataset",
|
| 74 |
+
filename="VINS.zip",
|
| 75 |
+
)
|
| 76 |
+
print(path)
|
| 77 |
+
```
|
| 78 |
+
|
| 79 |
+
Using the HF CLI:
|
| 80 |
+
|
| 81 |
+
```bash
|
| 82 |
+
hf download leosltl/VINS VINS.zip --repo-type dataset
|
| 83 |
+
```
|
| 84 |
+
|
| 85 |
+
## Original source
|
| 86 |
+
|
| 87 |
+
- Official GitHub: <https://github.com/sbunian/VINS>
|
| 88 |
+
- Official Google Drive file ID: `1ucti2ujNJgKV-Ts_mXALA7BZ97iPv8h6`
|
| 89 |
+
|
| 90 |
+
## Citation
|
| 91 |
+
|
| 92 |
+
If you use this dataset, please cite the original VINS work and follow the terms/requirements from the official project and paper. This repository is only a mirror and does not claim ownership of the dataset.
|
| 93 |
+
|
| 94 |
+
```bibtex
|
| 95 |
+
@inproceedings{bunian2021vins,
|
| 96 |
+
title = {VINS: Visual Search for Mobile User Interface Design},
|
| 97 |
+
year = {2021},
|
| 98 |
+
note = {Please verify the complete BibTeX metadata from the official paper or proceedings before publication.}
|
| 99 |
+
}
|
| 100 |
+
```
|
| 101 |
+
|
| 102 |
+
## Disclaimer
|
| 103 |
+
|
| 104 |
+
This is an unofficial mirror. Dataset copyright, license, and usage permissions remain with the original authors and/or upstream data sources. If you are an author or rights holder and want this mirror changed or removed, please open an issue or contact the repository owner on Hugging Face.
|