Skip to content

Commit

Permalink
Fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesq34 committed May 6, 2019
1 parent 29fb626 commit 50ec480
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model_concat_upsa.py
Expand Up @@ -28,7 +28,7 @@ def get_model(point_cloud, is_training, bn_decay=None):
l0_xyz_f1 = point_cloud[:, :num_point, 0:3]
l0_points_f1 = point_cloud[:, :num_point, 3:]
l0_xyz_f2 = point_cloud[:, num_point:, 0:3]
l0_points_f2 = point_cloud[:, :num_point, 3:]
l0_points_f2 = point_cloud[:, num_point:, 3:]

RADIUS1 = 0.5
RADIUS2 = 1.0
Expand Down

0 comments on commit 50ec480

Please sign in to comment.