Commit 11733fca authored by Neal Wu's avatar Neal Wu Committed by GitHub
Browse files

Change depth_radius from 5 to 2

parent d877b13a
......@@ -78,7 +78,7 @@ def inference(images):
lrn1 = tf.nn.local_response_normalization(conv1,
alpha=1e-4,
beta=0.75,
depth_radius=5,
depth_radius=2,
bias=2.0)
# pool1
......@@ -106,7 +106,7 @@ def inference(images):
lrn2 = tf.nn.local_response_normalization(conv2,
alpha=1e-4,
beta=0.75,
depth_radius=5,
depth_radius=2,
bias=2.0)
# pool2
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment