Skip to content

Commit

Permalink
Fix missing argument
Browse files Browse the repository at this point in the history
After the `residual_block` function was added an extra argument,
the call to it on line 145 wasn't updated.
  • Loading branch information
abiro authored Aug 20, 2018
1 parent 21f4bce commit 7febdb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion srgan/srgan.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def deconv2d(layer_input):
c1 = Activation('relu')(c1)

# Propogate through residual blocks
r = residual_block(c1)
r = residual_block(c1, self.gf)
for _ in range(self.n_residual_blocks - 1):
r = residual_block(r, self.gf)

Expand Down

0 comments on commit 7febdb9

Please sign in to comment.