Skip to content

Commit

Permalink
Missed section comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nealwu authored Jun 15, 2017
1 parent 1c34080 commit d877b13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tutorials/image/alexnet/alexnet_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def inference(images):
print_activations(conv1)
parameters += [kernel, biases]


# lrn1
with tf.name_scope('lrn1') as scope:
lrn1 = tf.nn.local_response_normalization(conv1,
alpha=1e-4,
Expand Down Expand Up @@ -101,7 +101,7 @@ def inference(images):
parameters += [kernel, biases]
print_activations(conv2)


# lrn2
with tf.name_scope('lrn2') as scope:
lrn2 = tf.nn.local_response_normalization(conv2,
alpha=1e-4,
Expand Down

0 comments on commit d877b13

Please sign in to comment.