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

[Fix] Fix PointPillars FLOPs calculation error (#1075)

* fix pointpillars flops calculation error

* fix
parent 32747a54
......@@ -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