From 66861481d9a56ca291cb5ba5c6e8f493895f1bad Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 9 Jan 2023 15:02:06 -0600 Subject: [PATCH] snapshot... --- modules/deeplearning/srcnn_l1b_l2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/deeplearning/srcnn_l1b_l2.py b/modules/deeplearning/srcnn_l1b_l2.py index 9309bca3..792303f6 100644 --- a/modules/deeplearning/srcnn_l1b_l2.py +++ b/modules/deeplearning/srcnn_l1b_l2.py @@ -701,7 +701,7 @@ def run_restore_static(directory, ckpt_dir, out_file=None): def run_evaluate_static(in_file, out_file, ckpt_dir): - N = 8 + N = 10 slc_x = slice(2, N*128 + 4) slc_y = slice(2, N*128 + 4) @@ -717,7 +717,7 @@ def run_evaluate_static(in_file, out_file, ckpt_dir): y_128 = slice(3, N*128 + 3) sub_y, sub_x = (N * 128) + 10, (N * 128) + 10 - y_0, x_0, = 2432 - int(sub_y/2), 2432 - int(sub_x/2) + y_0, x_0, = 3232 - int(sub_y/2), 3200 - int(sub_x/2) h5f = h5py.File(in_file, 'r') -- GitLab