"vscode:/vscode.git/clone" did not exist on "ef8aed7995e768df2fe5d5310b67afafe9536b06"
Commit 642caf5c authored by Siqi LIU's avatar Siqi LIU Committed by GitHub
Browse files

Swap comments for the two conv2d ops.

The first call seems to overwrite while the second doesn't?
parent be7a8999
......@@ -24,11 +24,11 @@
net = ops.conv2d(inputs, 64, [11, 11], 4, padding='VALID', scope='conv1')
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',
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',
stddev=0.01, weight_decay=0.0005, scope='conv2')
......
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