From 6cce3f1b47322ee9e895ac275faaca90d23ab377 Mon Sep 17 00:00:00 2001 From: Juan Altmayer Pizzorno Date: Mon, 23 Mar 2020 10:49:21 -0400 Subject: [PATCH] - use the same epsilon (even though this function is currently unused); --- src/connected_layer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connected_layer.c b/src/connected_layer.c index 353f4e56..70a34a79 100644 --- a/src/connected_layer.c +++ b/src/connected_layer.c @@ -200,7 +200,7 @@ void denormalize_connected_layer(layer l) { int i, j; for(i = 0; i < l.outputs; ++i){ - float scale = l.scales[i]/sqrt(l.rolling_variance[i] + .000001); + float scale = l.scales[i]/sqrt(l.rolling_variance[i] + .00001); for(j = 0; j < l.inputs; ++j){ l.weights[i*l.inputs + j] *= scale; }