From 2157272b39b05d234ee7c3e48a872a3beb87b26a Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Tue, 16 Aug 2022 10:21:27 -0500
Subject: [PATCH] snapshot...

---
 modules/deeplearning/espcn.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/deeplearning/espcn.py b/modules/deeplearning/espcn.py
index f0b66dfc..1ab09707 100644
--- a/modules/deeplearning/espcn.py
+++ b/modules/deeplearning/espcn.py
@@ -375,7 +375,7 @@ class ESPCN:
         print(conv.shape)
 
         #conv = tf.nn.depth_to_space(conv, factor)
-        conv = tf.keras.layers.Conv2DTranspose(num_filters * (factor ** 2), 3, padding='same')(conv)
+        #conv = tf.keras.layers.Conv2DTranspose(num_filters * (factor ** 2), 3, padding='same')(conv)
         print(conv.shape)
 
         self.logits = tf.keras.layers.Conv2D(1, kernel_size=3, strides=1, padding=padding, name='regression')(conv)
-- 
GitLab