Unverified Commit bff52f4b authored by ChaimZhu's avatar ChaimZhu Committed by GitHub
Browse files

fix pointpillars flops calculation error (#1076)

parent 3fd5ea26
......@@ -148,7 +148,7 @@ class PillarFeatureNet(nn.Module):
for pfn in self.pfn_layers:
features = pfn(features, num_points)
return features.squeeze()
return features.squeeze(1)
@VOXEL_ENCODERS.register_module()
......
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