Commit 50b9c40a authored by Ariel Rokem's avatar Ariel Rokem Committed by GitHub
Browse files

DOC: Typo in resnet documentation

"resisual" => "residual"
parent 0d9a3abd
......@@ -225,7 +225,7 @@ class ResNet(object):
def _bottleneck_residual(self, x, in_filter, out_filter, stride,
activate_before_residual=False):
"""Bottleneck resisual unit with 3 sub layers."""
"""Bottleneck residual unit with 3 sub layers."""
if activate_before_residual:
with tf.variable_scope('common_bn_relu'):
x = self._batch_norm('init_bn', x)
......
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