From bdf1391b6e987ebb982931da8aa850ab01f7aff7 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Sun, 14 Aug 2022 22:20:06 -0500 Subject: [PATCH] snapshot... --- modules/deeplearning/espcn.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/deeplearning/espcn.py b/modules/deeplearning/espcn.py index 362f4483..1b2ceeb2 100644 --- a/modules/deeplearning/espcn.py +++ b/modules/deeplearning/espcn.py @@ -63,8 +63,8 @@ x_70 = np.arange(70) y_70 = np.arange(70) #x_70_2 = x_70[3:67:2] #y_70_2 = y_70[3:67:2] -x_70_2 = x_70[2:68:2] -y_70_2 = y_70[2:68:2] +x_70_2 = x_70[2:69:2] +y_70_2 = y_70[2:69:2] def build_residual_conv2d_block(conv, num_filters, block_name, activation=tf.nn.leaky_relu, padding='SAME'): -- GitLab