anishapal006@gmail.com commited on
Commit
da1bb4b
2 Parent(s): d05af97 1bc3b00

Merge branch 'main' of https://huggingface.co/datasets/hoffman-lab/SkyScenes into main

Browse files
Files changed (1) hide show
  1. README.md +23 -7
README.md CHANGED
@@ -23,7 +23,7 @@ tags:
23
 
24
  <!-- This repository is the official Pytorch implementation for [SkyScenes](). -->
25
 
26
- [![HuggingFace Dataset](https://img.shields.io/badge/🤗-HuggingFace%20Dataset-cyan.svg)](https://huggingface.co/datasets/hoffman-lab/SkyScenes) [![Project Page](https://img.shields.io/badge/Project-Website-orange)](https://github.gatech.edu/pages/hoffman-group/SkyScenes/) [![arXiv](https://img.shields.io/badge/arXiv-SkyScenes-b31b1b.svg)]()
27
 
28
 
29
  <!-- [![Watch the Demo](./assets/robust_aerial_videos.mp4)](./assets/robust_aerial_videos.mp4) -->
@@ -284,8 +284,9 @@ The dataset is organized in the following structure:
284
  ## Dataset Download
285
 
286
 
287
- The dataset can be downloaded using both [datasets](https://huggingface.co/docs/datasets/index) library by Hugging Face and wget. Since SkyScenes offers variations across different axes
288
- hence we enable different subsets for download that can aid in model sensitivity analysis across these axes.
 
289
 
290
  ### Download instructions: wget
291
 
@@ -294,10 +295,12 @@ hence we enable different subsets for download that can aid in model sensitivity
294
  #!/bin/bash
295
  #Change here to download a specific Height and Pitch Variation, for example - H_15_P_0
296
  #Note- Currently supporting only H_35_P_45 for Instance and Depth Maps
 
297
  HP=('H_15_P_0' 'H_15_P_45' 'H_15_P_60' 'H_15_P_90' 'H_35_P_0' 'H_35_P_45' 'H_35_P_60' 'H_35_P_90' 'H_60_P_0' 'H_60_P_45' 'H_60_P_60' 'H_60_P_90')
298
 
299
  #Change here to download a specific weather subset, for example - ClearNoon
300
  #Note - For Segment, Instance and Depth annotations this field should only have ClearNoon variation
 
301
  weather=('ClearNoon' 'ClearNight' 'ClearSunset' 'CloudyNoon' 'MidRainyNoon')
302
 
303
  #Change here to download a specific Town subset, for example - Town07
@@ -315,12 +318,10 @@ for hp in "${HP[@]}"; do
315
  for t in "${layout[@]}"; do
316
  folder=$(echo "$base_url" | awk -F '/' '{print $(NF)}')
317
  download_url="${base_url}/${hp}/${w}/${t}/${t}.tar.gz"
318
- download_folder="${base_download_folder}/${folder}/${HP}/${w}/${t}"
319
  mkdir -p "$download_folder"
320
  echo "Downloading: $download_url"
321
- echo "SAving: $download_folder"
322
  wget -P "$download_folder" "$download_url"
323
- done
324
  done
325
  done
326
  done
@@ -401,4 +402,19 @@ dataset = load_dataset('hoffman-lab/SkyScenes',name="H_35_P_45 depth")
401
  ### 💡 Notes
402
 
403
  - Depth and Instance segmentation maps are available for only H_35_P_45, other variations will be made available soon.
404
- - To prevent issues when loading datasets using [datasets](https://huggingface.co/docs/datasets/index) library, it is recommended to avoid downloading subsets that contain overlapping directories. If there are any overlapping directories between the existing downloads and new ones, it's essential to clear the .cache directory of any such overlaps before proceeding with the new downloads. This step will ensure a clean and conflict-free environment for handling datasets.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
  <!-- This repository is the official Pytorch implementation for [SkyScenes](). -->
25
 
26
+ [![HuggingFace Dataset](https://img.shields.io/badge/🤗-HuggingFace%20Dataset-cyan.svg)](https://huggingface.co/datasets/hoffman-lab/SkyScenes) [![Project Page](https://img.shields.io/badge/Project-Website-orange)](https://github.gatech.edu/pages/hoffman-group/SkyScenes/) [![arXiv](https://img.shields.io/badge/arXiv-SkyScenes-b31b1b.svg)](https://arxiv.org/abs/2312.06719)
27
 
28
 
29
  <!-- [![Watch the Demo](./assets/robust_aerial_videos.mp4)](./assets/robust_aerial_videos.mp4) -->
 
284
  ## Dataset Download
285
 
286
 
287
+ The dataset can be downloaded using both [datasets](https://huggingface.co/docs/datasets/index) library by Hugging Face and wget.
288
+ Since SkyScenes offers variations across different axes we enable different subsets for download that can aid in model sensitivity analysis across these axes.
289
+
290
 
291
  ### Download instructions: wget
292
 
 
295
  #!/bin/bash
296
  #Change here to download a specific Height and Pitch Variation, for example - H_15_P_0
297
  #Note- Currently supporting only H_35_P_45 for Instance and Depth Maps
298
+ # HP=('H_15_P_45' 'H_15_P_60' 'H_15_P_90')
299
  HP=('H_15_P_0' 'H_15_P_45' 'H_15_P_60' 'H_15_P_90' 'H_35_P_0' 'H_35_P_45' 'H_35_P_60' 'H_35_P_90' 'H_60_P_0' 'H_60_P_45' 'H_60_P_60' 'H_60_P_90')
300
 
301
  #Change here to download a specific weather subset, for example - ClearNoon
302
  #Note - For Segment, Instance and Depth annotations this field should only have ClearNoon variation
303
+ # weather=('ClearNoon' 'ClearNight')
304
  weather=('ClearNoon' 'ClearNight' 'ClearSunset' 'CloudyNoon' 'MidRainyNoon')
305
 
306
  #Change here to download a specific Town subset, for example - Town07
 
318
  for t in "${layout[@]}"; do
319
  folder=$(echo "$base_url" | awk -F '/' '{print $(NF)}')
320
  download_url="${base_url}/${hp}/${w}/${t}/${t}.tar.gz"
321
+ download_folder="${base_download_folder}/${folder}/${hp}/${w}/${t}"
322
  mkdir -p "$download_folder"
323
  echo "Downloading: $download_url"
 
324
  wget -P "$download_folder" "$download_url"
 
325
  done
326
  done
327
  done
 
402
  ### 💡 Notes
403
 
404
  - Depth and Instance segmentation maps are available for only H_35_P_45, other variations will be made available soon.
405
+ - To prevent issues when loading datasets using [datasets](https://huggingface.co/docs/datasets/index) library, it is recommended to avoid downloading subsets that contain overlapping directories. If there are any overlapping directories between the existing downloads and new ones, it's essential to clear the .cache directory of any such overlaps before proceeding with the new downloads. This step will ensure a clean and conflict-free environment for handling datasets.
406
+
407
+ ## BibTex
408
+
409
+ If you find this work useful please like ❤️ our dataset repo and cite 📄 our paper. Thanks for your support!
410
+
411
+ ```
412
+ @misc{khose2023skyscenes,
413
+ title={SkyScenes: A Synthetic Dataset for Aerial Scene Understanding},
414
+ author={Sahil Khose and Anisha Pal and Aayushi Agarwal and Deepanshi and Judy Hoffman and Prithvijit Chattopadhyay},
415
+ year={2023},
416
+ eprint={2312.06719},
417
+ archivePrefix={arXiv},
418
+ primaryClass={cs.CV}
419
+ }
420
+ ```