소스 검색

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)