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

hydra.yaml 3.6 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
  1. hydra:
  2. run:
  3. dir: outputs/${now:%Y-%m-%d}/${now:%H-%M-%S}
  4. sweep:
  5. dir: multirun/${now:%Y-%m-%d}/${now:%H-%M-%S}
  6. subdir: ${hydra.job.num}
  7. launcher:
  8. _target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher
  9. sweeper:
  10. _target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper
  11. max_batch_size: null
  12. help:
  13. app_name: ${hydra.job.name}
  14. header: '${hydra.help.app_name} is powered by Hydra.
  15. '
  16. footer: 'Powered by Hydra (https://hydra.cc)
  17. Use --hydra-help to view Hydra specific help
  18. '
  19. template: '${hydra.help.header}
  20. == Configuration groups ==
  21. Compose your configuration from those groups (group=option)
  22. $APP_CONFIG_GROUPS
  23. == Config ==
  24. Override anything in the config (foo.bar=value)
  25. $CONFIG
  26. ${hydra.help.footer}
  27. '
  28. hydra_help:
  29. template: 'Hydra (${hydra.runtime.version})
  30. See https://hydra.cc for more info.
  31. == Flags ==
  32. $FLAGS_HELP
  33. == Configuration groups ==
  34. Compose your configuration from those groups (For example, append hydra/job_logging=disabled
  35. to command line)
  36. $HYDRA_CONFIG_GROUPS
  37. Use ''--cfg hydra'' to Show the Hydra config.
  38. '
  39. hydra_help: ???
  40. hydra_logging:
  41. version: 1
  42. formatters:
  43. colorlog:
  44. (): colorlog.ColoredFormatter
  45. format: '[%(cyan)s%(asctime)s%(reset)s][%(purple)sHYDRA%(reset)s] %(message)s'
  46. handlers:
  47. console:
  48. class: logging.StreamHandler
  49. formatter: colorlog
  50. stream: ext://sys.stdout
  51. root:
  52. level: INFO
  53. handlers:
  54. - console
  55. disable_existing_loggers: false
  56. job_logging:
  57. version: 1
  58. formatters:
  59. simple:
  60. format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s'
  61. colorlog:
  62. (): colorlog.ColoredFormatter
  63. format: '[%(cyan)s%(asctime)s%(reset)s][%(blue)s%(name)s%(reset)s][%(log_color)s%(levelname)s%(reset)s]
  64. - %(message)s'
  65. log_colors:
  66. DEBUG: purple
  67. INFO: green
  68. WARNING: yellow
  69. ERROR: red
  70. CRITICAL: red
  71. handlers:
  72. console:
  73. class: logging.StreamHandler
  74. formatter: colorlog
  75. stream: ext://sys.stdout
  76. file:
  77. class: logging.FileHandler
  78. formatter: simple
  79. filename: ${hydra.job.name}.log
  80. root:
  81. level: INFO
  82. handlers:
  83. - console
  84. - file
  85. disable_existing_loggers: false
  86. env: {}
  87. searchpath: []
  88. callbacks: {}
  89. output_subdir: .hydra
  90. overrides:
  91. hydra: []
  92. task: []
  93. job:
  94. name: data_load
  95. override_dirname: ''
  96. id: ???
  97. num: ???
  98. config_name: configs
  99. env_set: {}
  100. env_copy: []
  101. config:
  102. override_dirname:
  103. kv_sep: '='
  104. item_sep: ','
  105. exclude_keys: []
  106. runtime:
  107. version: 1.1.0
  108. cwd: C:\Users\HI\Desktop\.dev\python\Deep learning\Projects\Fetal Health
  109. config_sources:
  110. - path: hydra.conf
  111. schema: pkg
  112. provider: hydra
  113. - path: C:\Users\HI\Desktop\.dev\python\Deep learning\Projects\Fetal Health\configs
  114. schema: file
  115. provider: main
  116. - path: hydra_plugins.hydra_colorlog.conf
  117. schema: pkg
  118. provider: hydra-colorlog
  119. - path: ''
  120. schema: structured
  121. provider: schema
  122. choices:
  123. train: default
  124. model: default
  125. hydra/env: default
  126. hydra/callbacks: null
  127. hydra/job_logging: colorlog
  128. hydra/hydra_logging: colorlog
  129. hydra/hydra_help: default
  130. hydra/help: default
  131. hydra/sweeper: basic
  132. hydra/launcher: basic
  133. hydra/output: default
  134. verbose: false
Tip!

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

Comments

Loading...