--- license: unknown language: - en tags: - gui - ui - mobile-ui - visual-search - object-detection - computer-vision - dataset-mirror pretty_name: VINS Dataset Mirror size_categories: - 1K **Important: this repository is an unofficial Hugging Face mirror of the VINS dataset.** > > The official project is: > 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. ## Dataset description 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”. According to the official repository, the dataset contains UI screens from two design stages: - abstract wireframes - high-fidelity fully designed interfaces 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. ## Files in this mirror - `VINS.zip` — original Google Drive dataset archive downloaded from the official VINS GitHub link. - `SHA256SUMS` — checksum generated for the mirrored archive. Current mirrored archive checksum: ```text b572ce21b742dedb907ee46c6afa5ee124637405b7ad99db5f04647a13dbca9f VINS.zip ``` ## Archive structure The archive contains an `All Dataset/` directory with subsets such as: - `Wireframes/` - `Android/` - `Rico/` - `iphone/` - `uplabs/` Each subset includes: - `Annotations/` — XML annotation files - `JPEGImages/` — UI screen images 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. ## Download Using `huggingface_hub`: ```python from huggingface_hub import hf_hub_download path = hf_hub_download( repo_id="leosltl/VINS", repo_type="dataset", filename="VINS.zip", ) print(path) ``` Using the HF CLI: ```bash hf download leosltl/VINS VINS.zip --repo-type dataset ``` ## Original source - Official GitHub: - Official Google Drive file ID: `1ucti2ujNJgKV-Ts_mXALA7BZ97iPv8h6` ## Citation 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. ```bibtex @inproceedings{bunian2021vins, title = {VINS: Visual Search for Mobile User Interface Design}, year = {2021}, note = {Please verify the complete BibTeX metadata from the official paper or proceedings before publication.} } ``` ## Disclaimer 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.