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

snapshot...

parent 74c37e78
No related branches found
No related tags found
No related merge requests found
...@@ -47,8 +47,8 @@ f.close() ...@@ -47,8 +47,8 @@ f.close()
mean_std_dct.update(mean_std_dct_l1b) mean_std_dct.update(mean_std_dct_l1b)
mean_std_dct.update(mean_std_dct_l2) mean_std_dct.update(mean_std_dct_l2)
params = ['temp_11_0um_nom', 'temp_12_0um_nom', 'cloud_fraction'] 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'] data_params = ['temp_11_0um_nom', 'temp_12_0um_nom', 'refl_0_65um_nom']
label_params = ['cloud_fraction'] label_params = ['cloud_fraction']
...@@ -203,7 +203,7 @@ class SRCNN: ...@@ -203,7 +203,7 @@ class SRCNN:
f = files[k] f = files[k]
nda = np.load(f) nda = np.load(f)
data_s.append(nda[0:len(data_params), :, :]) data_s.append(nda[0:len(data_params), :, :])
label_s.append(nda[2, :, :]) label_s.append(nda[3, :, :])
data = np.concatenate(data_s) data = np.concatenate(data_s)
label = np.concatenate(label_s) label = np.concatenate(label_s)
......
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