You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can clearly see where createPillars and createPillarsTarget are defined, but I don't see where select is defined? Not surprisingly, when running point_pillars_test.py I'm getting an error indicating select does not exist:
$ python3 point_pillars_test.py
2021-05-31 08:42:43.933816: I tensorflow/stream_executor/platform/default/dso_loader.cc:49] Successfully opened dynamic library libcudart.so.11.0
Traceback (most recent call last):
File "point_pillars_test.py", line 5, in <module>
from point_pillars import createPillars, createPillarsTarget, select
ImportError: cannot import name 'select' from 'point_pillars' (/usr/local/lib/python3.8/dist-packages/point_pillars-0.0.1-py3.8-linux-x86_64.egg/point_pillars.cpython-38-x86_64-linux-gnu.so)
Has anybody gotten point_pillars_test.py to run without error? I gather I should modify https://github.com/tyagi-iiitv/PointPillars/blob/master/point_pillars_test.py#L65 to remove select but I'm not sure how. Additionally I find the name select inherently confusing due to being the same as the inbuilt Python select library.
The text was updated successfully, but these errors were encountered:
Referring to:
https://github.com/tyagi-iiitv/PointPillars/blob/master/point_pillars_test.py#L5
from point_pillars import createPillars, createPillarsTarget, select
If I go to:
https://github.com/tyagi-iiitv/PointPillars/blob/master/src/point_pillars.cpp
I can clearly see where
createPillars
andcreatePillarsTarget
are defined, but I don't see whereselect
is defined? Not surprisingly, when runningpoint_pillars_test.py
I'm getting an error indicatingselect
does not exist:Has anybody gotten
point_pillars_test.py
to run without error? I gather I should modify https://github.com/tyagi-iiitv/PointPillars/blob/master/point_pillars_test.py#L65 to removeselect
but I'm not sure how. Additionally I find the nameselect
inherently confusing due to being the same as the inbuilt Python select library.The text was updated successfully, but these errors were encountered: