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

#548 Split and rename the modules from super_gradients.common.environment

Merged
Ghost merged 1 commits into Deci-AI:master from deci-ai:hotfix/SG-000-refactor_environment_package
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
  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. batch_size: 256
  26. num_workers: 8
  27. drop_last: False
  28. pin_memory: True
  29. val_dataset_params:
  30. root: ./data/cifar10
  31. train: False
  32. transforms:
  33. - ToTensor
  34. - Normalize:
  35. mean:
  36. - 0.4914
  37. - 0.4822
  38. - 0.4465
  39. std:
  40. - 0.2023
  41. - 0.1994
  42. - 0.2010
  43. target_transform: null
  44. download: True
  45. val_dataloader_params:
  46. batch_size: 512
  47. num_workers: 8
  48. drop_last: False
  49. pin_memory: True
Discard
Tip!

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