Skip to content

Commit

Permalink
Merge pull request eriklindernoren#77 from abiro/patch-1
Browse files Browse the repository at this point in the history
Fix missing argument
  • Loading branch information
eriklindernoren authored Aug 31, 2018
2 parents 21f4bce + 7febdb9 commit fcddb21
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 fcddb21

Please sign in to comment.