소스 검색

Fix slight markdown typo in code blocks (#55)

Stefan Dierauf 9 년 전
부모
커밋
8332400d96
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      inception/inception/slim/README.md

+ 2 - 2
inception/inception/slim/README.md

@@ -14,7 +14,7 @@ the code necessary for defining the entire [VGG]
 the lengthy and verbose nature of defining just the first three layers (out of
 the lengthy and verbose nature of defining just the first three layers (out of
 16) using native tensorflow:
 16) using native tensorflow:
 
 
-```python {.good}
+```python{.good}
 # VGG16 in TF-Slim.
 # VGG16 in TF-Slim.
 def vgg16(inputs):
 def vgg16(inputs):
   with slim.arg_scope([slim.ops.conv2d, slim.ops.fc], stddev=0.01, weight_decay=0.0005):
   with slim.arg_scope([slim.ops.conv2d, slim.ops.fc], stddev=0.01, weight_decay=0.0005):
@@ -37,7 +37,7 @@ def vgg16(inputs):
   return net
   return net
 ```
 ```
 
 
-```python {.bad}
+```python{.bad}
 # Layers 1-3 (out of 16) of VGG16 in native tensorflow.
 # Layers 1-3 (out of 16) of VGG16 in native tensorflow.
 def vgg16(inputs):
 def vgg16(inputs):
   with tf.name_scope('conv1_1') as scope:
   with tf.name_scope('conv1_1') as scope: