From 361c501c8b45183b9f4ad0171a9b1b20b2690d9f Mon Sep 17 00:00:00 2001 From: Justin Date: Wed, 22 Nov 2017 14:58:01 +0100 Subject: [PATCH] Fix minor typos --- src/models/inception_resnet_v1.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/models/inception_resnet_v1.py b/src/models/inception_resnet_v1.py index dfdb20917..c54be90e0 100644 --- a/src/models/inception_resnet_v1.py +++ b/src/models/inception_resnet_v1.py @@ -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): @@ -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):