本博客会整理分享一些报错问题以及解决办法,本文会不断进行更新。有需求的朋友可以关注私信我进行远程调试。
问题
nn.functional.sigmoid is deprecated. Use torch.sigmoid instead.
解决办法
将项目中的F.sigmoid修改为torch.sigmoid
问 题:D:\python\envs\yolov5\lib\site-packages\torch\autocast_mode.py:141: UserWarning: User provided device_type of 'cuda', but CUDA is not available. Disabling
warnings.warn('User provided device_type of \'cuda\', but CUDA is not available. Disabling')
原 因:cuda与pytorch不匹配
import torch
print(torch.__version__)
print(torch.cuda.is_available())
解决方法:改autocast_mode.py中注释输出语句
问 题:进行网络远程测试模型的时候,报如下测试
解决方法:将默认测试运行程序默认测试运行程序自动检测改为Unitted就可以。
如果觉得对大家有帮助,欢迎点赞收藏关注,我会继续给分享代码报错,给大家提供参考。有问题也欢迎私信我。