Skip to content

Commit

Permalink
Merge pull request #29 from junming259/op-typo-fix
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
vanhuyz authored Jun 8, 2017
2 parents 22686c1 + 92e681f commit 04f5e19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def Rk(input, k, reuse=False, norm='instance', is_training=True, name=None):
shape=[3, 3, relu1.get_shape()[3], k])

padded2 = tf.pad(relu1, [[0,0],[1,1],[1,1],[0,0]], 'REFLECT')
conv2 = tf.nn.conv2d(padded2, weights1,
conv2 = tf.nn.conv2d(padded2, weights2,
strides=[1, 1, 1, 1], padding='VALID')
normalized2 = _norm(conv2, is_training, norm)
output = input+normalized2
Expand Down

0 comments on commit 04f5e19

Please sign in to comment.