Skip to content
Snippets Groups Projects
Commit 8dc68e6c authored by tomrink's avatar tomrink
Browse files

snapshot...

parent 044c890d
No related merge requests found
...@@ -375,13 +375,6 @@ class SRCNN: ...@@ -375,13 +375,6 @@ class SRCNN:
conv = conv + conv_b conv = conv + conv_b
print(conv.shape) print(conv.shape)
# conv = tf.keras.layers.Conv2D(num_filters * (factor ** 2), 3, padding='same')(conv)
print(conv.shape)
#conv = tf.nn.depth_to_space(conv, factor)
#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) self.logits = tf.keras.layers.Conv2D(1, kernel_size=3, strides=1, padding=padding, name='regression')(conv)
print(self.logits.shape) print(self.logits.shape)
......
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