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

#367 fix: Request correct hydra-core

Merged
Ghost merged 1 commits into Deci-AI:master from deci-ai:hotfix/ALG-000_hydra-req
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
  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. batch_size: 256
  23. num_workers: 8
  24. drop_last: False
  25. pin_memory: True
  26. val_dataset_params:
  27. root: /data/cifar100
  28. train: False
  29. transforms:
  30. - ToTensor
  31. - Normalize:
  32. mean:
  33. - 0.5071
  34. - 0.4865
  35. - 0.4409
  36. std:
  37. - 0.2673
  38. - 0.2564
  39. - 0.2762
  40. target_transform: null
  41. download: True
  42. val_dataloader_params:
  43. batch_size: 512
  44. num_workers: 8
  45. drop_last: False
  46. pin_memory: True
Discard
Tip!

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