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

snapshot...

parent bbfae46a
Branches
No related tags found
No related merge requests found
......@@ -46,6 +46,7 @@ DO_ZERO_OUT = False
CACHE_FILE = ''
USE_EMA = True
EMA_OVERWRITE_FREQUENCY = 5
EMA_MOMENTUM = 0.99
# setup scaling parameters dictionary
mean_std_dct = {}
......@@ -498,6 +499,7 @@ class SRCNN:
optimizer = tf.keras.optimizers.Adam(learning_rate=self.learningRateSchedule,
use_ema=USE_EMA,
ema_momentum=EMA_MOMENTUM,
ema_overwrite_frequency=EMA_OVERWRITE_FREQUENCY)
self.optimizer = optimizer
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment