tusen-ai / RangeDet

Paper and Codes for “RangeDet: In Defense of Range View for LiDAR-based 3D Object Detection” (ICCV2021)
Apache License 2.0
189 stars 17 forks source link

Some questions about the code. #5

Closed Xiangxu-0103 closed 2 years ago

Xiangxu-0103 commented 2 years ago

Hi, thanks for releasing the code. It is a great work! However, there are some errors when I run the code. The requirements.txt provides mxnet2.0.0 which seems not released now, so I installed mxnet2.0.0a0 and it makes the error that No module named 'mxnet.module'.

happynear commented 2 years ago

Hi, thanks for your interest of our work. MXNet 2.0 is the current official version. But you need to clone MXNet from https://github.com/apache/incubator-mxnet, then build it by yourself. Sadly, this is the way MXNet works.

We will provide a docker with full environment recently. Maybe it will be more convenient.

Abyssaledge commented 2 years ago

By the way, the detailed instruction for installation is coming soon. @Xiangxu-0103

IAS-01 commented 2 years ago

Can you provide a pip package to install MxNet? Thanks @happynear @Abyssaledge

Abyssaledge commented 2 years ago

I am afraid that pip package is not supported. Because the current released version of MXNet (1.8.0) does not support numpy-style APIs. Thus, very sorry, you have to build MXNet from source files.

ShrutheeshIR commented 2 years ago

Hello, just wondering if there is a docker image provided for this repository? Thanks