Skip to content

Commit

Permalink
Switch eps and p
Browse files Browse the repository at this point in the history
  • Loading branch information
alexwitt23 committed Jun 21, 2020
1 parent f24865d commit 7130953
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/retinanet_head.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def __init__(
for conv_idx in range(num_levels):
level_bns = torch.nn.ModuleList()
for level_idx in range(num_convolutions):
level_bns.append(torch.nn.BatchNorm2d(in_channels, 1e-2, 1e-3))
level_bns.append(torch.nn.BatchNorm2d(in_channels, eps=1e-3, momentum=1e-2))
self.classification_bns.append(level_bns)

# NOTE same basic architecture between box regression and classification
Expand Down

0 comments on commit 7130953

Please sign in to comment.