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

snapshot...

parent d1a08abc
No related branches found
No related tags found
No related merge requests found
...@@ -312,12 +312,8 @@ class SRCNN: ...@@ -312,12 +312,8 @@ class SRCNN:
data_norm = [] data_norm = []
for param in data_params_half: for param in data_params_half:
# If next 2 uncommented, take out get_grid_cell_mean
idx = params.index(param) idx = params.index(param)
tmp = input_data[:, idx, :, :] tmp = input_data[:, idx, :, :]
# idx = params_i.index(param)
# tmp = input_label[:, idx, :, :]
# tmp = get_grid_cell_mean(tmp)
tmp = tmp[:, slc_y, slc_x] tmp = tmp[:, slc_y, slc_x]
tmp = normalize(tmp, param, mean_std_dct) tmp = normalize(tmp, param, mean_std_dct)
data_norm.append(tmp) data_norm.append(tmp)
......
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