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
a9133ae9
Commit
a9133ae9
authored
Sep 13, 2016
by
Sergio Guadarrama
Committed by
GitHub
Sep 13, 2016
Browse files
Merge pull request #286 from liusiqi43/patch-1
Swap comments for the two conv2d ops.
parents
6436cfb7
642caf5c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
inception/inception/slim/scopes.py
inception/inception/slim/scopes.py
+2
-2
No files found.
inception/inception/slim/scopes.py
View file @
a9133ae9
...
@@ -24,11 +24,11 @@
...
@@ -24,11 +24,11 @@
net = ops.conv2d(inputs, 64, [11, 11], 4, padding='VALID', scope='conv1')
net = ops.conv2d(inputs, 64, [11, 11], 4, padding='VALID', scope='conv1')
net = ops.conv2d(net, 256, [5, 5], scope='conv2')
net = ops.conv2d(net, 256, [5, 5], scope='conv2')
The first call to conv2d will
use predefined args
:
The first call to conv2d will
overwrite padding
:
ops.conv2d(inputs, 64, [11, 11], 4, padding='VALID',
ops.conv2d(inputs, 64, [11, 11], 4, padding='VALID',
stddev=0.01, weight_decay=0.0005, scope='conv1')
stddev=0.01, weight_decay=0.0005, scope='conv1')
The second call to Conv will
overwrite padding
:
The second call to Conv will
use predefined args
:
ops.conv2d(inputs, 256, [5, 5], padding='SAME',
ops.conv2d(inputs, 256, [5, 5], padding='SAME',
stddev=0.01, weight_decay=0.0005, scope='conv2')
stddev=0.01, weight_decay=0.0005, scope='conv2')
...
...
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