guochengqian / PointNeXt

[NeurIPS'22] PointNeXt: Revisiting PointNet++ with Improved Training and Scaling Strategies
https://guochengqian.github.io/PointNeXt/
MIT License
770 stars 111 forks source link

How to find the openpoints in github? #4

Closed whuhxb closed 2 years ago

whuhxb commented 2 years ago

Hi @guochengqian

How to git clone openpoints?

Thanks

guochengqian commented 2 years ago

Hi it should work now. use this commandline to install PointNeXt:

git clone git@github.com:guochengqian/PointNeXt.git
cd PointNeXt
source install.sh

note the openpoints submodule will be cloned and updated locally when you run source install.sh

https://github.com/guochengqian/PointNeXt/blob/4d4a8da39f701650a3f656531ef42edf43670803/install.sh#L16

guochengqian commented 2 years ago

@whuhxb this is because your ssh is not set up correctly.

guochengqian commented 2 years ago

hi @whuhxb thank you for your interest. sorry, I cannot solve your personal concerns, since it is not related to our research. Try to google for this kind of technical question.

cheers

whuhxb commented 2 years ago

@guochengqian

OK. I have set it manually.

guochengqian commented 2 years ago

usually, people prefer to set CUDA_VISIBLE_DEVICES in the command line. but if you prefer in the code, you can set os.environ to a specific GPU devices

whuhxb commented 2 years ago

@guochengqian OK. Thanks a lot.