安装2022版mmsegmentation验证安装时报错ValueError: SyncBatchNorm expected input tensor to be on GPU 的解决办法

最新2022版mmsegmentation安装之后在验证时报错

运行这一句时

python demo/image_demo.py demo/demo.png pspnet_r50-d8_512x1024_40k_cityscapes.py pspnet_r50-d8_512x1024_40k_cityscapes_20200605_003338-2966598c.pth --device cpu --out-file result.jpg

报错

 

改成

python demo/image_demo.py demo/demo.png pspnet_r50-d8_512x1024_40k_cityscapes.py pspnet_r50-d8_512x1024_40k_cityscape
s_20200605_003338-2966598c.pth --device cuda:0 --out-file result.jpg

就可以运行啦

安装2022版mmsegmentation验证安装时报错ValueError: SyncBatchNorm expected input tensor to be on GPU 的解决办法_第1张图片

 

你可能感兴趣的:(python,开发语言)