瀏覽代碼

Fix slight markdown typo in code blocks (#55)

Stefan Dierauf 10 年之前
父節點
當前提交
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: