Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
mmdetection3d
Commits
78a26540
Unverified
Commit
78a26540
authored
Dec 01, 2021
by
ChaimZhu
Committed by
GitHub
Dec 01, 2021
Browse files
[Fix] Fix PointPillars FLOPs calculation error (#1075)
* fix pointpillars flops calculation error * fix
parent
32747a54
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
mmdet3d/models/voxel_encoders/pillar_encoder.py
mmdet3d/models/voxel_encoders/pillar_encoder.py
+1
-1
No files found.
mmdet3d/models/voxel_encoders/pillar_encoder.py
View file @
78a26540
...
...
@@ -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
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment