Skip to content

Commit cf1d48a

Browse files
authored
fix a bug
#4
1 parent 0e1edc3 commit cf1d48a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

deeplab/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def forward(self, x):
113113
out = self.conv2d_list[0](x)
114114
for i in range(len(self.conv2d_list)-1):
115115
out += self.conv2d_list[i+1](x)
116-
return out
116+
return out
117117

118118
class Residual_Covolution(nn.Module):
119119
def __init__(self, icol, ocol, num_classes):

0 commit comments

Comments
 (0)