【bug记录】 - 深度学习/cv/Python等 持续更新

RuntimeError: CUDA error: no kernel image is available for execution on the device

在跑MOT模型时遇到的常见问题,基本都需要重新下载pytorch。
我的机器是CUDA11.4,直接官网使用命令下载对应版本的pytorch就好了。
【bug记录】 - 深度学习/cv/Python等 持续更新_第1张图片

conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch

python3.6版本问题

  • 问题:anaconda3/envs/decomp/lib/python3.6/site-packages/torch/lib/libtorch_python.so: undefined symbol: PySlice_Unpack
  • 解决:环境的pytorch是1.4.0,和Python3.6.0冲突,需要将Python升级到3.6.2。
    conda install python==3.6.2

编译过程中出现cannot fine -l*** 的错误

/usr/bin/ld: cannot find -ltensorflow_framework
collect2: error: ld returned 1 exit status

bug.png
参考了一下github上的几个issue:
情况1):如果是TensorFlow1.14,那可能tensorflow_framework的包名字不对,需要去对应路径下检查,参考:https://blog.csdn.net/u012947309/article/details/116736684
情况2):也就是我自己的情况,我的tensorflow版本是1.15.0,降级到1.4.0就work了~~

你可能感兴趣的:(bug,深度学习,人工智能)