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

#1001 Bug/sg 861 decouple qat from train from config

Merged
Ghost merged 1 commits into Deci-AI:master from deci-ai:bug/SG-861_decouple_qat_from_train_from_config
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
  1. dataset_dir: /data/supervisely-persons
  2. batch_size: 8
  3. train_dataset_params:
  4. root_dir: ${..dataset_dir}
  5. list_file: train.csv
  6. cache_labels: False
  7. cache_images: False
  8. transforms:
  9. - SegRandomRescale:
  10. scales: [ 0.25, 1. ]
  11. - SegColorJitter:
  12. brightness: 0.5
  13. contrast: 0.5
  14. saturation: 0.5
  15. - SegRandomFlip:
  16. prob: 0.5
  17. - SegPadShortToCropSize:
  18. crop_size: [ 320, 480 ]
  19. fill_mask: 0
  20. - SegCropImageAndMask:
  21. crop_size: [ 320, 480 ]
  22. mode: random
  23. val_dataset_params:
  24. root_dir: ${..dataset_dir}
  25. list_file: val.csv
  26. cache_labels: False
  27. cache_images: False
  28. transforms:
  29. - SegResize:
  30. h: 480
  31. w: 320
  32. train_dataloader_params:
  33. dataset: SuperviselyPersonsDataset
  34. shuffle: True
  35. batch_size: ${..batch_size}
  36. drop_last: True
  37. val_dataloader_params:
  38. dataset: SuperviselyPersonsDataset
  39. batch_size: ${..batch_size}
  40. drop_last: False
  41. _convert_: all
Discard
Tip!

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