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

snapshot...

parent 7498a0d8
Branches
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ TRACK_MOVING_AVERAGE = False
EARLY_STOP = True
NOISE_TRAINING = False
NOISE_STDDEV = 0.10
NOISE_STDDEV = 0.01
DO_AUGMENT = True
DO_ZERO_OUT = False
......@@ -218,9 +218,9 @@ class SRCNN:
add_noise = None
noise_scale = None
if is_training:
if is_training and NOISE_TRAINING:
add_noise = True
noise_scale = 0.005
noise_scale = NOISE_STDDEV
data_norm = []
for param in data_params:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment