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
642caf5c
Commit
642caf5c
authored
Jul 23, 2016
by
Siqi LIU
Committed by
GitHub
Jul 23, 2016
Browse files
Swap comments for the two conv2d ops.
The first call seems to overwrite while the second doesn't?
parent
be7a8999
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 @
642caf5c
...
@@ -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