Skip to content

Commit 6502b54

Browse files
authored
Update model.py
1 parent 501c5aa commit 6502b54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def residual_block(x, num_filters):
2222
x = Conv2D(num_filters, (3, 3), padding="same")(x)
2323
x = BatchNormalization()(x)
2424

25-
s = Conv2D(num_filters, (1, 1), padding="same")(x)
25+
s = Conv2D(num_filters, (1, 1), padding="same")(x_init)
2626
s = BatchNormalization()(x)
2727

2828
x = Add()([x, s])

0 commit comments

Comments
 (0)