Skip to content
Snippets Groups Projects
Commit 3f703ef0 authored by tomrink's avatar tomrink
Browse files

snapshot..

parent 205973c2
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ else:
NumLogits = NumClasses
BATCH_SIZE = 128
NUM_EPOCHS = 60
NUM_EPOCHS = 80
TRACK_MOVING_AVERAGE = False
EARLY_STOP = True
......@@ -407,7 +407,7 @@ class SRCNN:
activation = tf.nn.relu
momentum = 0.99
num_filters = 64
num_filters = 128
input_2d = self.inputs[0]
print('input: ', input_2d.shape)
......@@ -424,7 +424,7 @@ class SRCNN:
conv_b = build_residual_conv2d_block(conv_b, num_filters, 'Residual_Block_2', kernel_size=3, scale=scale)
#conv_b = build_residual_conv2d_block(conv_b, num_filters, 'Residual_Block_3', kernel_size=3, scale=scale)
conv_b = build_residual_conv2d_block(conv_b, num_filters, 'Residual_Block_3', kernel_size=3, scale=scale)
#conv_b = build_residual_conv2d_block(conv_b, num_filters, 'Residual_Block_4', kernel_size=3, scale=scale)
......@@ -449,7 +449,7 @@ class SRCNN:
self.loss = tf.keras.losses.MeanSquaredError() # Regression
# decayed_learning_rate = learning_rate * decay_rate ^ (global_step / decay_steps)
initial_learning_rate = 0.002
initial_learning_rate = 0.005
decay_rate = 0.95
steps_per_epoch = int(self.num_data_samples/BATCH_SIZE) # one epoch
decay_steps = int(steps_per_epoch)
......
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