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

cifar10_multiple_test.yaml 1.0 KB

You have to be logged in to leave a comment. Sign In
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
  1. defaults:
  2. - cifar10_resnet
  3. test_dataloaders:
  4. cifar10: cifar10_val
  5. cifar10_v2: cifar10_val
  6. dataset_params:
  7. train_dataloader_params:
  8. num_workers: 0
  9. val_dataloader_params:
  10. num_workers: 0
  11. test_dataset_params:
  12. cifar10:
  13. root: ./data/cifar10
  14. train: False
  15. transforms:
  16. - Resize:
  17. size: 32
  18. - ToTensor
  19. - Normalize:
  20. mean:
  21. - 0.4914
  22. - 0.4822
  23. - 0.4465
  24. std:
  25. - 0.2023
  26. - 0.1994
  27. - 0.2010
  28. target_transform: null
  29. download: True
  30. cifar10_v2:
  31. root: ./data/cifar10
  32. train: False
  33. transforms:
  34. - Resize:
  35. size: 32
  36. - ToTensor
  37. - Normalize:
  38. mean:
  39. - 0.5
  40. - 0.5
  41. - 0.5
  42. std:
  43. - 0.2
  44. - 0.2
  45. - 0.2
  46. target_transform: null
  47. download: True
  48. hydra:
  49. searchpath:
  50. - pkg://super_gradients.recipes
Tip!

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

Comments

Loading...