Commit 1c340802 authored by Neal Wu's avatar Neal Wu Committed by GitHub
Browse files

Changes for consistency

parent 0cde6332
...@@ -75,13 +75,11 @@ def inference(images): ...@@ -75,13 +75,11 @@ def inference(images):
with tf.name_scope('lrn1') as scope: with tf.name_scope('lrn1') as scope:
lrn1 = tf.nn.local_response_normalization( lrn1 = tf.nn.local_response_normalization(conv1,
conv1, alpha=1e-4,
alpha=1e-04,
beta=0.75, beta=0.75,
depth_radius=5, depth_radius=5,
bias=2.0 bias=2.0)
)
# pool1 # pool1
pool1 = tf.nn.max_pool(lrn1, pool1 = tf.nn.max_pool(lrn1,
...@@ -105,13 +103,11 @@ def inference(images): ...@@ -105,13 +103,11 @@ def inference(images):
with tf.name_scope('lrn2') as scope: with tf.name_scope('lrn2') as scope:
lrn2 = tf.nn.local_response_normalization( lrn2 = tf.nn.local_response_normalization(conv2,
conv2, alpha=1e-4,
alpha=1e-04,
beta=0.75, beta=0.75,
depth_radius=5, depth_radius=5,
bias=2.0 bias=2.0)
)
# pool2 # pool2
pool2 = tf.nn.max_pool(lrn2, pool2 = tf.nn.max_pool(lrn2,
......
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