Skip to content

Commit

Permalink
resnest fix (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
akeeei authored Oct 26, 2023
1 parent c12a04b commit adab8ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flowvision/models/resnest.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ def __init__(
m.weight.data.normal_(0, math.sqrt(2.0 / n))
elif isinstance(m, norm_layer):
m.weight.data.fill_(1)
m.bias.data.zeros_()
m.bias.data.zero_()

def _make_layer(
self,
Expand Down

0 comments on commit adab8ca

Please sign in to comment.