Преглед на файлове

Merge pull request #818 from arokem/patch-1

DOC: Typo in resnet documentation
Neal Wu преди 9 години
родител
ревизия
beb1332204
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      resnet/resnet_model.py

+ 1 - 1
resnet/resnet_model.py

@@ -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)