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

snapshot...

parent 2e718c34
No related branches found
No related tags found
No related merge requests found
...@@ -55,7 +55,7 @@ label_params = ['refl_0_65um_nom', 'temp_11_0um_nom', 'cld_temp_acha', 'cld_pres ...@@ -55,7 +55,7 @@ label_params = ['refl_0_65um_nom', 'temp_11_0um_nom', 'cld_temp_acha', 'cld_pres
DO_ZERO_OUT = False DO_ZERO_OUT = False
data_idx, label_idx = 1, 1 data_idx, label_idx = 4, 4
data_param = data_params[data_idx] data_param = data_params[data_idx]
label_param = label_params[label_idx] label_param = label_params[label_idx]
...@@ -226,7 +226,8 @@ class SRCNN: ...@@ -226,7 +226,8 @@ class SRCNN:
# if label_param != 'cloud_fraction': # if label_param != 'cloud_fraction':
# label = scale(label, label_param, mean_std_dct) # label = scale(label, label_param, mean_std_dct)
data = normalize(data, data_param, mean_std_dct, add_noise=True, noise_scale=0.005) if data_param != 'cloud_fraction':
data = normalize(data, data_param, mean_std_dct, add_noise=True, noise_scale=0.005)
if label_param != 'cloud_fraction': if label_param != 'cloud_fraction':
label = normalize(label, label_param, mean_std_dct) label = normalize(label, label_param, mean_std_dct)
......
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