Skip to content

Commit

Permalink
Fix minor typos
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinShenk authored Nov 22, 2017
1 parent 163cb02 commit 361c501
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/models/inception_resnet_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import tensorflow as tf
import tensorflow.contrib.slim as slim

# Inception-Renset-A
# Inception-Resnet-A
def block35(net, scale=1.0, activation_fn=tf.nn.relu, scope=None, reuse=None):
"""Builds the 35x35 resnet block."""
with tf.variable_scope(scope, 'Block35', [net], reuse=reuse):
Expand All @@ -47,7 +47,7 @@ def block35(net, scale=1.0, activation_fn=tf.nn.relu, scope=None, reuse=None):
net = activation_fn(net)
return net

# Inception-Renset-B
# Inception-Resnet-B
def block17(net, scale=1.0, activation_fn=tf.nn.relu, scope=None, reuse=None):
"""Builds the 17x17 resnet block."""
with tf.variable_scope(scope, 'Block17', [net], reuse=reuse):
Expand Down

0 comments on commit 361c501

Please sign in to comment.