uber-research / UPSNet

UPSNet: A Unified Panoptic Segmentation Network
Other
648 stars 120 forks source link

ImportError: libcudart.so.10.1: cannot open shared object file: No such file or directory #106

Closed StoicGilgamesh closed 4 years ago

StoicGilgamesh commented 4 years ago

First of all thanks for this great research and the repository! Very helpful.

I have followed the instructions but when I try to train or test using pre-trained weights I get the following error. Could you please help?

upsnet/../upsnet/config/config.py:180: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details. exp_config = edict(yaml.load(f)) Traceback (most recent call last): File "upsnet/upsnet_end2end_test.py", line 44, in from upsnet.models import * File "upsnet/../upsnet/models/init.py", line 1, in from .resnet_upsnet import resnet_50_upsnet, resnet_101_upsnet File "upsnet/../upsnet/models/resnet_upsnet.py", line 27, in from upsnet.operators.modules.pyramid_proposal import PyramidProposal File "upsnet/../upsnet/operators/modules/pyramid_proposal.py", line 18, in from ..functions.pyramid_proposal import PyramidProposalFunction File "upsnet/../upsnet/operators/functions/pyramid_proposal.py", line 18, in from upsnet.nms.nms import py_nms_wrapper, cpu_nms_wrapper, gpu_nms_wrapper File "upsnet/../upsnet/nms/nms.py", line 24, in from .gpu_nms import gpu_nms

Is it because UPSNet specifically wants cuda 10? I have cuda 9.0 installed.

youkibebop commented 3 years ago

What was your solution to this problem?