Skip to content

Commit

Permalink
Remove hard coded feature norm
Browse files Browse the repository at this point in the history
  • Loading branch information
ltriess committed Jun 1, 2021
1 parent 7fcaf2a commit 4d2c022
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pointnet2/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def __init__(
raise ValueError(f"Received unknown feature norm `{feature_norm}`!")

self.segmentation_layers = [
FeaturePropagationModule(mlp_units=units, feature_norm="batch")
FeaturePropagationModule(mlp_units=units, feature_norm=feature_norm)
for units in fp_units
]

Expand Down

0 comments on commit 4d2c022

Please sign in to comment.