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

#875 Feature/sg 761 yolo nas

Merged
Ghost merged 1 commits into Deci-AI:master from deci-ai:feature/SG-761-yolo-nas
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
47
48
49
50
51
52
53
54
55
  1. batch_size: 256 # batch size for trainset
  2. val_batch_size: 512 # batch size for valset in DatasetInterface
  3. # TODO: REMOVE ABOVE, HERE FOR COMPATIBILITY UNTIL WE REMOVE DATASET_INTERFACE
  4. train_dataset_params:
  5. root: ./data/cifar10
  6. train: True
  7. transforms:
  8. - RandomCrop:
  9. size: 32
  10. padding: 4
  11. - RandomHorizontalFlip
  12. - ToTensor
  13. - Normalize:
  14. mean:
  15. - 0.4914
  16. - 0.4822
  17. - 0.4465
  18. std:
  19. - 0.2023
  20. - 0.1994
  21. - 0.2010
  22. target_transform: null
  23. download: True
  24. train_dataloader_params:
  25. shuffle: True
  26. batch_size: 256
  27. num_workers: 8
  28. drop_last: False
  29. pin_memory: True
  30. val_dataset_params:
  31. root: ./data/cifar10
  32. train: False
  33. transforms:
  34. - ToTensor
  35. - Normalize:
  36. mean:
  37. - 0.4914
  38. - 0.4822
  39. - 0.4465
  40. std:
  41. - 0.2023
  42. - 0.1994
  43. - 0.2010
  44. target_transform: null
  45. download: True
  46. val_dataloader_params:
  47. batch_size: 512
  48. num_workers: 8
  49. drop_last: False
  50. pin_memory: True
Discard
Tip!

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