".github/vscode:/vscode.git/clone" did not exist on "d14ca0f53bdfb1ec2a5965fd114b34017d8f7274"
Commit d877b13a authored by Neal Wu's avatar Neal Wu Committed by GitHub
Browse files

Missed section comments

parent 1c340802
...@@ -73,7 +73,7 @@ def inference(images): ...@@ -73,7 +73,7 @@ def inference(images):
print_activations(conv1) print_activations(conv1)
parameters += [kernel, biases] parameters += [kernel, biases]
# lrn1
with tf.name_scope('lrn1') as scope: with tf.name_scope('lrn1') as scope:
lrn1 = tf.nn.local_response_normalization(conv1, lrn1 = tf.nn.local_response_normalization(conv1,
alpha=1e-4, alpha=1e-4,
...@@ -101,7 +101,7 @@ def inference(images): ...@@ -101,7 +101,7 @@ def inference(images):
parameters += [kernel, biases] parameters += [kernel, biases]
print_activations(conv2) print_activations(conv2)
# lrn2
with tf.name_scope('lrn2') as scope: with tf.name_scope('lrn2') as scope:
lrn2 = tf.nn.local_response_normalization(conv2, lrn2 = tf.nn.local_response_normalization(conv2,
alpha=1e-4, alpha=1e-4,
......
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