Commit 8332400d authored by Stefan Dierauf's avatar Stefan Dierauf Committed by Martin Wicke
Browse files

Fix slight markdown typo in code blocks (#55)

parent 57f839bf
...@@ -14,7 +14,7 @@ the code necessary for defining the entire [VGG] ...@@ -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): ...@@ -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:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment