Commit 033e537e authored by ThangVu's avatar ThangVu
Browse files

minor fix flake8

parent 25015e1b
...@@ -116,7 +116,8 @@ class ConvFCBBoxHead(BBoxHead): ...@@ -116,7 +116,8 @@ class ConvFCBBoxHead(BBoxHead):
if self.normalize is not None: if self.normalize is not None:
branch_fcs.append(nn.Sequential( branch_fcs.append(nn.Sequential(
nn.Linear(fc_in_channels, self.fc_out_channels, False), nn.Linear(fc_in_channels, self.fc_out_channels, False),
build_norm_layer(self.normalize, self.fc_out_channels))) build_norm_layer(self.normalize, self.fc_out_channels))
)
else: else:
branch_fcs.append( branch_fcs.append(
nn.Linear(fc_in_channels, self.fc_out_channels)) nn.Linear(fc_in_channels, self.fc_out_channels))
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment