Skip to content

Commit fcddb21

Browse files
Merge pull request #77 from abiro/patch-1
Fix missing argument
2 parents 21f4bce + 7febdb9 commit fcddb21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: srgan/srgan.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def deconv2d(layer_input):
142142
c1 = Activation('relu')(c1)
143143

144144
# Propogate through residual blocks
145-
r = residual_block(c1)
145+
r = residual_block(c1, self.gf)
146146
for _ in range(self.n_residual_blocks - 1):
147147
r = residual_block(r, self.gf)
148148

0 commit comments

Comments
 (0)