Spaces:
Runtime error
Runtime error
xco2
commited on
Commit
·
687cb7c
1
Parent(s):
ebfe12f
init
Browse files- net/UNet.py +1 -1
net/UNet.py
CHANGED
@@ -202,7 +202,7 @@ class EncoderBlock(nn.Module):
|
|
202 |
skip = self.conv_skip(x)
|
203 |
|
204 |
for i, layer in enumerate(self.model_list):
|
205 |
-
x = layer(x)
|
206 |
if i == 0:
|
207 |
x = self.att_block(x)
|
208 |
if i < self.model_list_len - 1:
|
|
|
202 |
skip = self.conv_skip(x)
|
203 |
|
204 |
for i, layer in enumerate(self.model_list):
|
205 |
+
x = layer(x)
|
206 |
if i == 0:
|
207 |
x = self.att_block(x)
|
208 |
if i < self.model_list_len - 1:
|