junguin commited on
Commit
214624b
·
verified ·
1 Parent(s): f32c31d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +52 -23
README.md CHANGED
@@ -24,32 +24,63 @@ size_categories:
24
 
25
  Repository for the tabular portion of the [Global Streetscapes dataset](https://ual.sg/project/global-streetscapes/) by the [Urban Analytics Lab (UAL)](https://ual.sg/) at the National University of Singapore (NUS).
26
 
27
- Content breakdown:
28
- * `data/` (37 GB)
29
- * 21 `csv` files with 346 unique features in total and 10 million rows each to characterise the 10 million street-level images in our dataset
30
- * `manual_labels/` (23 GB)
31
- * `train/`
32
- * 8 `csv` files of manual labels for training computer vision models to classify 8 different [contextual characteristics](https://github.com/ualsg/global-streetscapes?tab=readme-ov-file#manually-labelled-subset-for-benchmarking) of a street view image, along with other metadata such as the image's location, city, file path etc.
33
- * `test/`
34
- * 8 `csv` files of manual labels for model testing, along with other metadata such as the image's location, city, file path etc.
35
- * `img/`
36
- * 7 `tar.gz` files containing all images used for training and testing
37
- * `models/` (2.8 GB)
38
- * 8 `ckpt` files storing the trained models
39
- * `cities688.csv` contains basic information for the 688 cities included in the dataset, such as population, continent, image count etc.
40
- * `info.csv` overviews the content of each `csv` file in `/data` and explains the 346 features
41
-
42
- This repository has a total size of about 62 GB.
43
-
44
- Please follow this [guide](https://huggingface.co/docs/huggingface_hub/guides/download) from huggingface for download instructions. Please avoid using 'git clone' to download the repo as Git stores the files twice and will double the disk space usage to 124+ GB.
45
-
46
- We have also provided a script `download_folder.py` to download one folder from this dataset, instead of just a single file or the entire dataset.
 
 
 
 
47
 
48
  To download the imagery portion (10 million images, ~6TB), please follow the code and documentation in our [GitHub repo](https://github.com/ualsg/global-streetscapes).
49
  Our [Wiki](https://github.com/ualsg/global-streetscapes/wiki/2-Download-images) contains instructions and a demo on how to filter the dataset for a subset of data of your interest and download the image files for them.
50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  Read more about this project on [its website](https://ual.sg/project/global-streetscapes/), which includes an overview of this effort together with the background, [paper](https://doi.org/10.1016/j.isprsjprs.2024.06.023), examples, and FAQ.
52
 
 
 
 
 
53
  To cite this work, please refer to the [paper](https://doi.org/10.1016/j.isprsjprs.2024.06.023):
54
 
55
  Hou Y, Quintana M, Khomiakov M, Yap W, Ouyang J, Ito K, Wang Z, Zhao T, Biljecki F (2024): Global Streetscapes — A comprehensive dataset of 10 million street-level images across 688 cities for urban science and analytics. ISPRS Journal of Photogrammetry and Remote Sensing 215: 216-238. doi:[10.1016/j.isprsjprs.2024.06.023](https://doi.org/10.1016/j.isprsjprs.2024.06.023)
@@ -65,6 +96,4 @@ BibTeX:
65
  volume = {215},
66
  year = {2024}
67
  }
68
- ```
69
-
70
- A free version (postprint / author-accepted manuscript) can be downloaded [here](https://ual.sg/publication/2024-global-streetscapes/).
 
24
 
25
  Repository for the tabular portion of the [Global Streetscapes dataset](https://ual.sg/project/global-streetscapes/) by the [Urban Analytics Lab (UAL)](https://ual.sg/) at the National University of Singapore (NUS).
26
 
27
+ ## Content Breakdown
28
+ ```
29
+ Global Streetscapes (62+ GB)
30
+ ├── data/ (37 GB)
31
+ │ ├── 21 CSV files with 346 unique features in total and 10M rows each
32
+ ├── manual_labels/ (23 GB)
33
+ │ ├── train/
34
+ │ │ ├── 8 CSV files with manual labels for contextual attributes (training)
35
+ │ ├── test/
36
+ │ │ ├── 8 CSV files with manual labels for contextual attributes (testing)
37
+ │ ├── img/
38
+ │ ├── 7 tar.gz files containing images for training and testing
39
+ ├── models/ (2.8 GB)
40
+ │ ├── Trained models in checkpoint format
41
+ ├── cities688.csv
42
+ │ ├── Basic information for the 688 cities including population, continent, and image count
43
+ ├── info.csv
44
+ ├── Overview of CSV files in `/data/` with description of each feature
45
+ ```
46
+
47
+ ## Download Instructions
48
+ Please follow this [guide](https://huggingface.co/docs/huggingface_hub/guides/download) from Hugging Face for download instructions. Please avoid using 'git clone' to download the repo as Git stores the files twice and will double the disk space usage to 124+ GB.
49
+
50
+ We have also provided a script `download_folder.py` to download a specifc folder from this dataset, instead of just a single file or the entire dataset.
51
 
52
  To download the imagery portion (10 million images, ~6TB), please follow the code and documentation in our [GitHub repo](https://github.com/ualsg/global-streetscapes).
53
  Our [Wiki](https://github.com/ualsg/global-streetscapes/wiki/2-Download-images) contains instructions and a demo on how to filter the dataset for a subset of data of your interest and download the image files for them.
54
 
55
+ ## Contribution Guide
56
+ We welcome contributions to this dataset! Please follow these steps:
57
+
58
+ 1. **Propose changes**:
59
+ - Open a [discussion](https://huggingface.co/datasets/NUS-UAL/global-streetscapes/discussions) in the repository to describe your proposed changes or additions.
60
+ - We will revert with specifics on how we would like your contributions to be incorporated (e.g. which folder to add your files), to maintain a neat organisation.
61
+
62
+ 2. **File naming**:
63
+ - Use meaningful and descriptive file names.
64
+
65
+ 3. **Submit changes**:
66
+ - Fork the repository, implement your changes, and submit a pull request (PR). In your PR, include an informative description of your changes (e.g. explaining their structure, features, and purpose) and how you would like to be credited.
67
+
68
+ Upon merging your PR, we will update the `Changelog` and `Content Breakdown` on this Dataset Card accordingly to reflect the changes and contributors.
69
+
70
+ For any questions, please contact us via [Discussions](https://huggingface.co/datasets/NUS-UAL/global-streetscapes/discussions).
71
+
72
+ ## Changelog
73
+
74
+ **YYYY-MM-DD**
75
+
76
+ ## Read More
77
+
78
  Read more about this project on [its website](https://ual.sg/project/global-streetscapes/), which includes an overview of this effort together with the background, [paper](https://doi.org/10.1016/j.isprsjprs.2024.06.023), examples, and FAQ.
79
 
80
+ A free version (postprint / author-accepted manuscript) can be downloaded [here](https://ual.sg/publication/2024-global-streetscapes/).
81
+
82
+ ## Citation
83
+
84
  To cite this work, please refer to the [paper](https://doi.org/10.1016/j.isprsjprs.2024.06.023):
85
 
86
  Hou Y, Quintana M, Khomiakov M, Yap W, Ouyang J, Ito K, Wang Z, Zhao T, Biljecki F (2024): Global Streetscapes — A comprehensive dataset of 10 million street-level images across 688 cities for urban science and analytics. ISPRS Journal of Photogrammetry and Remote Sensing 215: 216-238. doi:[10.1016/j.isprsjprs.2024.06.023](https://doi.org/10.1016/j.isprsjprs.2024.06.023)
 
96
  volume = {215},
97
  year = {2024}
98
  }
99
+ ```