anthony0727 commited on
Commit
731dd41
·
verified ·
1 Parent(s): bca0e33

Upload folder using huggingface_hub

Browse files
.hydra/config.yaml ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ experiment: tfno-h1
2
+ device: cuda:1
3
+ seed: 42
4
+ model: CarstenNO
5
+ model_config:
6
+ n_modes:
7
+ - 24
8
+ - 24
9
+ in_channels: 1
10
+ out_channels: 2
11
+ hidden_channels: 32
12
+ lifting_channels: 32
13
+ projection_channels: 32
14
+ rank: 0.5
15
+ norm: batch_norm
16
+ n_layers: 10
17
+ domain_padding: 0.015625
18
+ domain_padding_mode: symmetric
19
+ factorization: tucker
20
+ implementation: factorized
21
+ n_epochs: 101
22
+ loss: h1
23
+ loss_config:
24
+ reductions: mean
25
+ eval_losses:
26
+ - l2
27
+ - h1
28
+ - grating_l2
29
+ - substrate_l2
30
+ - superstrate_l2
31
+ optim: AdamW
32
+ optim_config:
33
+ lr: 0.001
34
+ weight_decay: 1.0e-06
35
+ save_interval: 50
36
+ log_test_interval: 5
37
+ scheduler: OneCycleLR
38
+ scheduler_config:
39
+ max_lr: 0.01
40
+ total_steps: ${n_epochs}
41
+ base_momentum: 0.85
42
+ max_momentum: 0.95
43
+ data: 1000-50-4
.hydra/hydra.yaml ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ hydra:
2
+ run:
3
+ dir: ./runs/${experiment}-${seed}-${data}-${now:%m%d-%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
+ params: null
13
+ help:
14
+ app_name: ${hydra.job.name}
15
+ header: '${hydra.help.app_name} is powered by Hydra.
16
+
17
+ '
18
+ footer: 'Powered by Hydra (https://hydra.cc)
19
+
20
+ Use --hydra-help to view Hydra specific help
21
+
22
+ '
23
+ template: '${hydra.help.header}
24
+
25
+ == Configuration groups ==
26
+
27
+ Compose your configuration from those groups (group=option)
28
+
29
+
30
+ $APP_CONFIG_GROUPS
31
+
32
+
33
+ == Config ==
34
+
35
+ Override anything in the config (foo.bar=value)
36
+
37
+
38
+ $CONFIG
39
+
40
+
41
+ ${hydra.help.footer}
42
+
43
+ '
44
+ hydra_help:
45
+ template: 'Hydra (${hydra.runtime.version})
46
+
47
+ See https://hydra.cc for more info.
48
+
49
+
50
+ == Flags ==
51
+
52
+ $FLAGS_HELP
53
+
54
+
55
+ == Configuration groups ==
56
+
57
+ Compose your configuration from those groups (For example, append hydra/job_logging=disabled
58
+ to command line)
59
+
60
+
61
+ $HYDRA_CONFIG_GROUPS
62
+
63
+
64
+ Use ''--cfg hydra'' to Show the Hydra config.
65
+
66
+ '
67
+ hydra_help: ???
68
+ hydra_logging:
69
+ version: 1
70
+ formatters:
71
+ simple:
72
+ format: '[%(asctime)s][HYDRA] %(message)s'
73
+ handlers:
74
+ console:
75
+ class: logging.StreamHandler
76
+ formatter: simple
77
+ stream: ext://sys.stdout
78
+ root:
79
+ level: INFO
80
+ handlers:
81
+ - console
82
+ loggers:
83
+ logging_example:
84
+ level: DEBUG
85
+ disable_existing_loggers: false
86
+ job_logging:
87
+ version: 1
88
+ formatters:
89
+ simple:
90
+ format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s'
91
+ handlers:
92
+ console:
93
+ class: logging.StreamHandler
94
+ formatter: simple
95
+ stream: ext://sys.stdout
96
+ file:
97
+ class: logging.FileHandler
98
+ formatter: simple
99
+ filename: ${hydra.runtime.output_dir}/${hydra.job.name}.log
100
+ root:
101
+ level: INFO
102
+ handlers:
103
+ - console
104
+ - file
105
+ disable_existing_loggers: false
106
+ env: {}
107
+ mode: MULTIRUN
108
+ searchpath: []
109
+ callbacks: {}
110
+ output_subdir: .hydra
111
+ overrides:
112
+ hydra:
113
+ - hydra.mode=MULTIRUN
114
+ task:
115
+ - data=1000-50-4
116
+ - device=cuda\:1
117
+ job:
118
+ name: main
119
+ chdir: null
120
+ override_dirname: data=1000-50-4,device=cuda\:1
121
+ id: '3'
122
+ num: 3
123
+ config_name: carsten-h1.yaml
124
+ env_set: {}
125
+ env_copy: []
126
+ config:
127
+ override_dirname:
128
+ kv_sep: '='
129
+ item_sep: ','
130
+ exclude_keys: []
131
+ runtime:
132
+ version: 1.3.0
133
+ version_base: '1.1'
134
+ cwd: /home/anthony/EM-neuraloperator
135
+ config_sources:
136
+ - path: hydra.conf
137
+ schema: pkg
138
+ provider: hydra
139
+ - path: /home/anthony/EM-neuraloperator
140
+ schema: file
141
+ provider: main
142
+ - path: ''
143
+ schema: structured
144
+ provider: schema
145
+ output_dir: /home/anthony/EM-neuraloperator/multirun/2024-04-04/10-57-05/3
146
+ choices:
147
+ hydra/env: default
148
+ hydra/callbacks: null
149
+ hydra/job_logging: default
150
+ hydra/hydra_logging: default
151
+ hydra/hydra_help: default
152
+ hydra/help: default
153
+ hydra/sweeper: basic
154
+ hydra/launcher: basic
155
+ hydra/output: default
156
+ verbose: false
.hydra/overrides.yaml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ - data=1000-50-4
2
+ - device=cuda\:1
1000-50-4-test-ds.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6af5e3ab6f16b47e72cd86bf23bc285e82e38cce505ad0446276f6587638f6b
3
+ size 1572865251
1000-50-4-train-ds.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a07c8fa34a53ac5991032c9374c8495aa63098481bd75701e197dadf3887f976
3
+ size 6291457275
model-final.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28a16719fdfd00c120f3efab32f0849625f4faf17829002015754d6a2865beb8
3
+ size 13116272