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

#869 Add DagsHub Logger to Super Gradients

Merged
Ghost merged 1 commits into Deci-AI:master from timho102003:dagshub_logger
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
56
57
58
59
60
61
62
63
64
65
  1. # Equivalent to cifar10_dataset_params.yaml, but uses albumentations transforms.
  2. # The purpose of the below configuration is to demonstrate the use of Albumentation transforms in train_from_recipe.
  3. batch_size: 256 # batch size for trainset
  4. val_batch_size: 512 # batch size for valset in DatasetInterface
  5. # TODO: REMOVE ABOVE, HERE FOR COMPATIBILITY UNTIL WE REMOVE DATASET_INTERFACE
  6. train_dataset_params:
  7. root: ./data/cifar10
  8. train: True
  9. transforms:
  10. Albumentations:
  11. Compose:
  12. transforms:
  13. - RandomCrop:
  14. height: 32
  15. width: 32
  16. - HorizontalFlip:
  17. p: 0.5
  18. - Normalize:
  19. mean:
  20. - 0.4914
  21. - 0.4822
  22. - 0.4465
  23. std:
  24. - 0.2023
  25. - 0.1994
  26. - 0.2010
  27. - ToTensorV2
  28. target_transform: null
  29. download: True
  30. train_dataloader_params:
  31. shuffle: True
  32. batch_size: 256
  33. num_workers: 8
  34. drop_last: False
  35. pin_memory: True
  36. val_dataset_params:
  37. root: ./data/cifar10
  38. train: False
  39. transforms:
  40. Albumentations:
  41. Compose:
  42. transforms:
  43. - Normalize:
  44. mean:
  45. - 0.4914
  46. - 0.4822
  47. - 0.4465
  48. std:
  49. - 0.2023
  50. - 0.1994
  51. - 0.2010
  52. - ToTensorV2
  53. target_transform: null
  54. download: True
  55. val_dataloader_params:
  56. batch_size: 512
  57. num_workers: 8
  58. drop_last: False
  59. pin_memory: True
Discard
Tip!

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