apal commited on
Commit
5c5d5e8
·
1 Parent(s): d59f2ee

datasets library

Browse files
Files changed (1) hide show
  1. README.md +89 -13
README.md CHANGED
@@ -269,28 +269,30 @@ The dataset is organized in the following structure:
269
 
270
  **Note**: Since the same viewpoint is reproduced across each weather variation, hence ClearNoon annotations can be used for all images pertaining to the different weather variations.
271
 
272
- ## Dataset Download
273
-
274
 
275
 
276
  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
277
  hence we enable different subsets for download that can aid in model sensitivity analysis across these axes.
278
 
 
279
 
280
  **Example script for downloading different subsets of data using wget**
281
- ```
282
  #!/bin/bash
283
  #Change here to download a specific Height and Pitch Variation, for example - H_15_P_0
 
284
  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')
285
 
286
  #Change here to download a specific weather subset, for example - ClearNoon
 
287
  weather=('ClearNoon' 'ClearNight' 'ClearSunset' 'CloudyNoon' 'MidRainyNoon')
288
 
289
  #Change here to download a specific Town subset, for example - Town07
290
  layout=('Town01' 'Town02' 'Town03' 'Town04' 'Town05' 'Town06' 'Town07' 'Town10HD')
291
 
292
  #Change here for any specific annotation, for example - https://huggingface.co/datasets/hoffman-lab/SkyScenes/resolve/main/Segment
293
- base_url=('https://huggingface.co/datasets/hoffman-lab/SkyScenes/resolve/main/Images' 'https://huggingface.co/datasets/hoffman-lab/SkyScenes/resolve/main/Segment' 'https://huggingface.co/datasets/hoffman-lab/SkyScenes/resolve/main/Instance''https://huggingface.co/datasets/hoffman-lab/SkyScenes/resolve/main/Depth')
294
 
295
  #Change here for base download folder
296
  base_download_folder='SkyScenes'
@@ -299,18 +301,92 @@ base_download_folder='SkyScenes'
299
  for hp in "${HP[@]}"; do
300
  for w in "${weather[@]}"; do
301
  for t in "${layout[@]}"; do
302
- for url in "${base_url[@]}"; do
303
- folder=$(echo "$url" | awk -F '/' '{print $(NF)}')
304
- download_url="${url}/${hp}/${w}/${t}/${t}.tar.gz"
305
- download_folder="${base_download_folder}/${folder}/${HP}/${w}/${t}"
306
- mkdir -p "$download_folder"
307
- echo "Downloading: $download_url"
308
- echo "SAving: $download_folder"
309
- # wget -P "$download_folder" "$download_url"
310
  done
311
  done
312
  done
313
  done
314
  ```
315
 
316
- ### 💡 Support for [datasets](https://huggingface.co/docs/datasets/index) will be made available soon !
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
269
 
270
  **Note**: Since the same viewpoint is reproduced across each weather variation, hence ClearNoon annotations can be used for all images pertaining to the different weather variations.
271
 
272
+ ## Dataset Download
 
273
 
274
 
275
  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
276
  hence we enable different subsets for download that can aid in model sensitivity analysis across these axes.
277
 
278
+ ### Download instructions: wget
279
 
280
  **Example script for downloading different subsets of data using wget**
281
+ ```bash
282
  #!/bin/bash
283
  #Change here to download a specific Height and Pitch Variation, for example - H_15_P_0
284
+ #Note- Currently supporting only H_35_P_45 for Instance and Depth Maps
285
  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')
286
 
287
  #Change here to download a specific weather subset, for example - ClearNoon
288
+ #Note - For Segment, Instance and Depth annotations this field should only have ClearNoon variation
289
  weather=('ClearNoon' 'ClearNight' 'ClearSunset' 'CloudyNoon' 'MidRainyNoon')
290
 
291
  #Change here to download a specific Town subset, for example - Town07
292
  layout=('Town01' 'Town02' 'Town03' 'Town04' 'Town05' 'Town06' 'Town07' 'Town10HD')
293
 
294
  #Change here for any specific annotation, for example - https://huggingface.co/datasets/hoffman-lab/SkyScenes/resolve/main/Segment
295
+ base_url=('https://huggingface.co/datasets/hoffman-lab/SkyScenes/resolve/main/Images')
296
 
297
  #Change here for base download folder
298
  base_download_folder='SkyScenes'
 
301
  for hp in "${HP[@]}"; do
302
  for w in "${weather[@]}"; do
303
  for t in "${layout[@]}"; do
304
+ folder=$(echo "$base_url" | awk -F '/' '{print $(NF)}')
305
+ download_url="${base_url}/${hp}/${w}/${t}/${t}.tar.gz"
306
+ download_folder="${base_download_folder}/${folder}/${HP}/${w}/${t}"
307
+ mkdir -p "$download_folder"
308
+ echo "Downloading: $download_url"
309
+ echo "SAving: $download_folder"
310
+ wget -P "$download_folder" "$download_url"
 
311
  done
312
  done
313
  done
314
  done
315
  ```
316
 
317
+ ### Download instructions: [datasets](https://huggingface.co/docs/datasets/index)
318
+
319
+ <details>
320
+ <summary>Click to view all the available keys for downloading subsets of the data</summary>
321
+
322
+ * **Layout Variations**
323
+ - Rural
324
+ - Urban
325
+
326
+ * **Weather Variations**
327
+ - ClearNoon
328
+ - ClearNight (only images)
329
+ - ClearSunset (only images)
330
+ - CloudyNoon (only images)
331
+ - MidRainyNoon (only images)
332
+
333
+ * **Height Variations**
334
+ - H_15
335
+ - H_35
336
+ - H_60
337
+
338
+ * **Pitch Variations**
339
+ - P_0
340
+ - P_45
341
+ - P_60
342
+ - P_90
343
+
344
+ * **Height and Pitch Variations**
345
+ - H_15_P_0
346
+ - H_15_P_45
347
+ - H_15_P_60
348
+ - H_15_P_90
349
+ - H_35_P_0
350
+ - H_35_P_45
351
+ - H_35_P_60
352
+ - H_35_P_90
353
+ - H_60_P_0
354
+ - H_60_P_45
355
+ - H_60_P_60
356
+ - H_60_P_90
357
+
358
+ For downloading full dataset key is full
359
+
360
+ **💡Notes**:
361
+ - To download **images** append subset key with **images**, example - ```H_35_P_45 images```
362
+ - To download **semantic segmentation** maps append subset key with **semseg**, example - ```H_35_P_45 semseg```
363
+ - To download **instance segmentation** maps append subset key with **instance**, example - ```H_35_P_45 instance```
364
+ - To download **depth** maps append subset key with **depth**, example - ```H_35_P_45 depth```
365
+ </details>
366
+
367
+
368
+ **Example script for loading H_35_P_45 images**
369
+ ```python
370
+ from datasets import load_dataset
371
+ dataset = load_dataset('hoffman-lab/SkyScenes',name="H_35_P_45 images")
372
+ ```
373
+ **Example script for loading H_35_P_45 semantic segmentation maps**
374
+ ```python
375
+ from datasets import load_dataset
376
+ dataset = load_dataset('hoffman-lab/SkyScenes',name="H_35_P_45 semseg")
377
+ ```
378
+ **Example script for loading H_35_P_45 instance segmentation maps**
379
+ ```python
380
+ from datasets import load_dataset
381
+ dataset = load_dataset('hoffman-lab/SkyScenes',name="H_35_P_45 instance")
382
+ ```
383
+ **Example script for loading H_35_P_45 depth maps**
384
+ ```python
385
+ from datasets import load_dataset
386
+ dataset = load_dataset('hoffman-lab/SkyScenes',name="H_35_P_45 depth")
387
+ ```
388
+
389
+ ### 💡 Notes
390
+
391
+ - Depth and Instance segmentation maps are available for only H_35_P_45, other variations will be made available soon.
392
+ - 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.