seaice
emulation
will-gregory commited on
Commit
d252e9d
·
verified ·
1 Parent(s): 42a563c

Inference configs and initial conditions

Browse files

Inference configuration files for Ai2 ace codebase, for 1% forcing, piControl forcing and present-day (OM4) forcing. The initial conditions for each forcing test are also included.

.gitattributes CHANGED
@@ -35,3 +35,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  Arctic_FloeNet_2007.mp4 filter=lfs diff=lfs merge=lfs -text
37
  Arctic_FloeNet_2007.gif filter=lfs diff=lfs merge=lfs -text
 
 
 
 
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  Arctic_FloeNet_2007.mp4 filter=lfs diff=lfs merge=lfs -text
37
  Arctic_FloeNet_2007.gif filter=lfs diff=lfs merge=lfs -text
38
+ CM4_1pct_initial_condition.nc filter=lfs diff=lfs merge=lfs -text
39
+ CM4_piControl_initial_condition.nc filter=lfs diff=lfs merge=lfs -text
40
+ OM4_initial_condition.nc filter=lfs diff=lfs merge=lfs -text
CM4_1pct_initial_condition.nc ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4f2b2faafc09d9917225b6605ed11a4b8154168164423e6f63ec8826d54de62
3
+ size 4178960
CM4_piControl_initial_condition.nc ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fbe238de1b3b13642a4ca3eb38a4ac914e14a18822a07db59748d21381ed0085
3
+ size 4178965
OM4_initial_condition.nc ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71e7b33d99094dda5bef564385cdf6abb5f240c16ed8c72637e6a688f37389ed
3
+ size 4176264
inference_config_1pct.yaml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ experiment_dir: ./inference/FloeNet_1pct_forcing
2
+ n_forward_steps: 204399
3
+ forward_steps_in_memory: 40
4
+ allow_incompatible_dataset: true
5
+ checkpoint_path: ./ckpt.tar
6
+ logging:
7
+ log_to_screen: true
8
+ log_to_wandb: false
9
+ forcing_loader:
10
+ dataset:
11
+ data_path: ./data
12
+ file_pattern: 0211-0350.CM4_1pct_forcing_6hourly.zarr
13
+ engine: zarr
14
+ num_data_workers: 1
15
+ initial_condition:
16
+ path: ./data/CM4_1pct_initial_condition.nc
17
+ data_writer:
18
+ save_prediction_files: false
19
+ save_monthly_files: true
inference_config_OM4.yaml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ experiment_dir: ./inference/FloeNet_OM4_forcing
2
+ n_forward_steps: 78892
3
+ forward_steps_in_memory: 40
4
+ allow_incompatible_dataset: true
5
+ checkpoint_path: ./ckpt.tar
6
+ logging:
7
+ log_to_screen: true
8
+ log_to_wandb: false
9
+ forcing_loader:
10
+ dataset:
11
+ data_path: ./data
12
+ file_pattern: 1969-2022.OM4_forcing_6hourly.zarr
13
+ engine: zarr
14
+ num_data_workers: 1
15
+ initial_condition:
16
+ path: ./data/OM4_initial_condition.nc
17
+ data_writer:
18
+ save_prediction_files: false
19
+ save_monthly_files: true
inference_config_piControl.yaml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ experiment_dir: ./inference/FloeNet_piControl_forcing
2
+ n_forward_steps: 204399
3
+ forward_steps_in_memory: 40
4
+ allow_incompatible_dataset: true
5
+ checkpoint_path: ./ckpt.tar
6
+ logging:
7
+ log_to_screen: true
8
+ log_to_wandb: false
9
+ forcing_loader:
10
+ dataset:
11
+ data_path: ./data
12
+ file_pattern: 0211-0350.CM4_piControl_forcing_6hourly.zarr
13
+ engine: zarr
14
+ num_data_workers: 1
15
+ initial_condition:
16
+ path: ./data/CM4_piControl_initial_condition.nc
17
+ data_writer:
18
+ save_prediction_files: false
19
+ save_monthly_files: true