Skip to content
Snippets Groups Projects
Commit 15725b57 authored by tomrink's avatar tomrink
Browse files

snapshot...

parent f09f7102
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ else:
NumLogits = NumClasses
BATCH_SIZE = 128
NUM_EPOCHS = 60
NUM_EPOCHS = 80
TRACK_MOVING_AVERAGE = False
EARLY_STOP = True
......@@ -32,6 +32,8 @@ NOISE_TRAINING = False
NOISE_STDDEV = 0.10
DO_AUGMENT = True
DO_ZERO_OUT = False
# setup scaling parameters dictionary
mean_std_dct = {}
mean_std_file = ancillary_path+'mean_std_lo_hi_l2.pkl'
......@@ -47,17 +49,13 @@ f.close()
mean_std_dct.update(mean_std_dct_l1b)
mean_std_dct.update(mean_std_dct_l2)
# params = ['temp_11_0um_nom', 'temp_12_0um_nom', 'refl_0_65um_nom', 'cloud_fraction']
# data_params = ['temp_11_0um_nom', 'temp_12_0um_nom', 'refl_0_65um_nom']
params = ['temp_11_0um_nom', 'temp_12_0um_nom', 'refl_0_65um_nom', 'cloud_fraction']
data_params = ['temp_11_0um_nom']
label_params = ['cloud_fraction']
label_param = 'cloud_fraction'
label_idx = params.index(label_param)
DO_ZERO_OUT = False
label_idx = 3
label_param = params[label_idx]
print('data_params: ', data_params)
print('label_params: ', label_params)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment