Sheng Zhong (Johnson)

Results 45 comments of Sheng Zhong (Johnson)

Update: I managed to install pytorch3d by running the commands again (for some reason), but it forced an update to pytorch's CPU only version. Upgrading to the latest pytorch (1.12.0...

@tmquan Hi thank you for your response! I'm having trouble installing those, what conda channels are you using? ``` PackagesNotFoundError: The following packages are not available from current channels: -...

@bottler `conda install pytorch3d -c pytorch3d-nightly` for me also does not work with CUDA 11.6 and PyTorch 1.12.0 right now. My `conda list` ``` # Name Version Build Channel _libgcc_mutex...

Strangely, installing torchvision with `conda install torchvision -c pytorch` installs a very old `torchvision pytorch/noarch::torchvision-0.2.2-py_3`, which does not satisfy pytorch3d's requirements. Instead, install with a specified version such as `conda...

Good news, finally found a version that's compatible with my system and pytorch3d: ``` conda install pytorch==1.11.0 torchvision==0.12.0 torchaudio==0.11.0 cudatoolkit=11.3 -c pytorch ``` Then install pytorch3d with ``` conda install...

Ok it does not fully work for some reason; I can `import torch` fine and ``` >>> torch.cuda.is_available() True >>> torch.cuda.get_device_name(0) 'NVIDIA GeForce RTX 3090' ``` but when I get...

On a different machine with a 2080, I was able to run with no errors via ``` conda install pytorch==1.10.1 torchvision==0.11.2 torchaudio==0.10.1 cudatoolkit=10.2 -c pytorch conda install pytorch3d -c pytorch3d...

I just did the above again on the 3090 machine ``` conda install pytorch==1.11.0 torchvision==0.12.0 torchaudio==0.11.0 cudatoolkit=11.3 -c pytorch conda install pytorch3d -c pytorch3d-nightly ``` And do not have the...

The goal is to register two point clouds together but with different initial pose estimates in parallel. This is achieved in pytorch3d by passing the point cloud as `B x...

Ah thanks for the quick response. Is ATOM a direct advancement of ALOE? I am just looking for some near SOTA OOD that is ready to use (with the code...