Pretraining¤
MultiSourceDataModule
¤
Bases: LightningDataModule
DataModule for multi-source data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dict_root_dirs |
Dict
|
Dictionary of root directories for each source. |
required |
dict_start_idx |
Dict
|
Dictionary of start indices ratio (between 0.0 and 1.0) for each source. |
required |
dict_end_idx |
Dict
|
Dictionary of end indices ratio (between 0.0 and 1.0) for each source. |
required |
dict_buffer_sizes |
Dict
|
Dictionary of buffer sizes for each source. |
required |
dict_in_variables |
Dict
|
Dictionary of input variables for each source. |
required |
dict_out_variables |
Dict
|
Dictionary of output variables for each source. |
required |
dict_max_predict_ranges |
Dict
|
Dictionary of maximum predict ranges for each source. |
{'mpi-esm': 28}
|
dict_random_lead_time |
Dict
|
Dictionary of whether to use random lead time for each source. |
{'mpi-esm': True}
|
dict_hrs_each_step |
Dict
|
Dictionary of hours each step for each source. |
{'mpi-esm': 6}
|
batch_size |
int
|
Batch size. |
64
|
num_workers |
int
|
Number of workers. |
0
|
pin_memory |
bool
|
Whether to pin memory. |
False
|
Source code in src/climax/pretrain/datamodule.py
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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
|
PretrainModule
¤
Bases: LightningModule
Lightning module for pretraining the ClimaX model.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
net |
ClimaX
|
ClimaX model. |
required |
lr |
float
|
Learning rate. |
0.0005
|
beta_1 |
float
|
Beta 1 for AdamW. |
0.9
|
beta_2 |
float
|
Beta 2 for AdamW. |
0.95
|
weight_decay |
float
|
Weight decay for AdamW. |
1e-05
|
warmup_steps |
int
|
Number of warmup steps. |
10000
|
max_steps |
int
|
Number of total steps. |
200000
|
warmup_start_lr |
float
|
Starting learning rate for warmup. |
1e-08
|
eta_min |
float
|
Minimum learning rate. |
1e-08
|