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
  1. train_dataset_params:
  2. root: /data/cifar100
  3. train: True
  4. transforms:
  5. - RandomCrop:
  6. size: 32
  7. padding: 4
  8. - RandomHorizontalFlip
  9. - ToTensor
  10. - Normalize:
  11. mean:
  12. - 0.5071
  13. - 0.4865
  14. - 0.4409
  15. std:
  16. - 0.2673
  17. - 0.2564
  18. - 0.2762
  19. target_transform: null
  20. download: True
  21. train_dataloader_params:
  22. shuffle: True
  23. batch_size: 256
  24. num_workers: 8
  25. drop_last: False
  26. pin_memory: True
  27. val_dataset_params:
  28. root: /data/cifar100
  29. train: False
  30. transforms:
  31. - ToTensor
  32. - Normalize:
  33. mean:
  34. - 0.5071
  35. - 0.4865
  36. - 0.4409
  37. std:
  38. - 0.2673
  39. - 0.2564
  40. - 0.2762
  41. target_transform: null
  42. download: True
  43. val_dataloader_params:
  44. batch_size: 512
  45. num_workers: 8
  46. drop_last: False
  47. pin_memory: True
Discard
Tip!

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