소스 검색

Missed another space

Neal Wu 8 년 전
부모
커밋
1fe7f45443
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      inception/inception/slim/inception_model.py

+ 1 - 1
inception/inception/slim/inception_model.py

@@ -285,7 +285,7 @@ def inception_v3(inputs,
           with tf.variable_scope('branch3x3'):
             branch3x3 = ops.conv2d(net, 384, [1, 1])
             branch3x3 = tf.concat(axis=3, values=[ops.conv2d(branch3x3, 384, [1, 3]),
-                                                 ops.conv2d(branch3x3, 384, [3, 1])])
+                                                  ops.conv2d(branch3x3, 384, [3, 1])])
           with tf.variable_scope('branch3x3dbl'):
             branch3x3dbl = ops.conv2d(net, 448, [1, 1])
             branch3x3dbl = ops.conv2d(branch3x3dbl, 384, [3, 3])