Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8332400

Browse files
sdieraufmartinwicke
authored andcommitted
Fix slight markdown typo in code blocks (tensorflow#55)
1 parent 57f839b commit 8332400

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

inception/inception/slim/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ the code necessary for defining the entire [VGG]
1414
the lengthy and verbose nature of defining just the first three layers (out of
1515
16) using native tensorflow:
1616

17-
```python {.good}
17+
```python{.good}
1818
# VGG16 in TF-Slim.
1919
def vgg16(inputs):
2020
with slim.arg_scope([slim.ops.conv2d, slim.ops.fc], stddev=0.01, weight_decay=0.0005):
@@ -37,7 +37,7 @@ def vgg16(inputs):
3737
return net
3838
```
3939

40-
```python {.bad}
40+
```python{.bad}
4141
# Layers 1-3 (out of 16) of VGG16 in native tensorflow.
4242
def vgg16(inputs):
4343
with tf.name_scope('conv1_1') as scope:

0 commit comments

Comments
 (0)