瀏覽代碼

DOC: Typo in resnet documentation

"resisual" => "residual"
Ariel Rokem 9 年之前
父節點
當前提交
50b9c40ac7
共有 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)