hkust-vgd / pointwise

Code for Pointwise Convolutional Neural Networks, CVPR 2018
http://pointwise.scenenn.net
MIT License
130 stars 26 forks source link

Failed to run train script -- name 'pe' is not defined #4

Closed itswyri closed 6 years ago

itswyri commented 6 years ago

Hi!

I got an error message while running train_modelnet40_acsd.py looking into modelnet_provider.py there's no definition of 'pe' (I think it seems to be a kind of an imported module name) How can I resolve this?

Train from scratch

Epoch 0

Traceback (most recent call last): File "train_modelnet40_acsd.py", line 179, in train(args) File "train_modelnet40_acsd.py", line 120, in train points, points_data, gt_label = d.get_batch_point_cloud() File "/data3/chang/PycharmProjects/pointwise/modelnet_provider.py", line 212, in get_batch_point_cloud
jittered_data = sort_point_cloud_morton(jittered_data) File "/data3/chang/PycharmProjects/pointwise/modelnet_provider.py", line 113, in sort_point_cloud_morton
indices = pe.PointCloud.arg_sort_morton(pe.PointCloud(pc)) NameError: name 'pe' is not defined

songuke commented 6 years ago

@itswyri I have remove the dependency to pe module for now. Please update the code. Thanks.