Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

cityscapes_dataset_params.yaml 598 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  1. train_dataset_params:
  2. root_dir: /data/cityscapes
  3. list_file: lists/train.lst
  4. labels_csv_path: lists/labels.csv
  5. cache_labels: False
  6. cache_images: False
  7. transforms:
  8. val_dataset_params:
  9. root_dir: /data/cityscapes
  10. list_file: lists/val.lst
  11. labels_csv_path: lists/labels.csv
  12. cache_labels: False
  13. cache_images: False
  14. transforms:
  15. train_dataloader_params:
  16. batch_size: 8
  17. num_workers: 8
  18. drop_last: True # drop the last incomplete batch, if dataset size is not divisible by the batch size
  19. val_dataloader_params:
  20. batch_size: 8
  21. num_workers: 8
  22. drop_last: False
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...