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

snapshot...

parent 7498a0d8
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,7 @@ TRACK_MOVING_AVERAGE = False ...@@ -29,7 +29,7 @@ TRACK_MOVING_AVERAGE = False
EARLY_STOP = True EARLY_STOP = True
NOISE_TRAINING = False NOISE_TRAINING = False
NOISE_STDDEV = 0.10 NOISE_STDDEV = 0.01
DO_AUGMENT = True DO_AUGMENT = True
DO_ZERO_OUT = False DO_ZERO_OUT = False
...@@ -218,9 +218,9 @@ class SRCNN: ...@@ -218,9 +218,9 @@ class SRCNN:
add_noise = None add_noise = None
noise_scale = None noise_scale = None
if is_training: if is_training and NOISE_TRAINING:
add_noise = True add_noise = True
noise_scale = 0.005 noise_scale = NOISE_STDDEV
data_norm = [] data_norm = []
for param in data_params: for param in data_params:
......
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