Skip to content

Commit 9213da7

Browse files
committed
formatting
1 parent 4d49b87 commit 9213da7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

model_constructor/net.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ def _make_layer(self, expansion, ni, nf, blocks, stride, sa):
114114
layers = [(f"bl_{i}", self.block(expansion, ni if i == 0 else nf, nf,
115115
stride if i == 0 else 1, sa=sa if i == blocks - 1 else False,
116116
conv_layer=self.conv_layer, act_fn=self.act_fn, pool=self.pool,
117-
zero_bn=self.zero_bn, bn_1st=self.bn_1st, groups=self.groups, div_groups=self.div_groups,
117+
zero_bn=self.zero_bn, bn_1st=self.bn_1st,
118+
groups=self.groups, div_groups=self.div_groups,
118119
dw=self.dw, se=self.se))
119120
for i in range(blocks)]
120121
return nn.Sequential(OrderedDict(layers))

0 commit comments

Comments
 (0)