Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
8332400d
Commit
8332400d
authored
May 13, 2016
by
Stefan Dierauf
Committed by
Martin Wicke
May 12, 2016
Browse files
Fix slight markdown typo in code blocks (#55)
parent
57f839bf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
inception/inception/slim/README.md
inception/inception/slim/README.md
+2
-2
No files found.
inception/inception/slim/README.md
View file @
8332400d
...
...
@@ -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
16) using native tensorflow:
```
python
{.good}
```
python{.good}
# VGG16 in TF-Slim.
def vgg16(inputs):
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
```
```
python
{.bad}
```
python{.bad}
# Layers 1-3 (out of 16) of VGG16 in native tensorflow.
def vgg16(inputs):
with tf.name_scope('conv1_1') as scope:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment