今天安装docker中paddlepaddle-gpu在我电脑上运行没问题,但是把镜像拉取到其他电脑就报错:
The GPU architecture in your current machine is Pascal
开始安装的版本为:
pip install paddlepaddle-gpu==2.5.2.post117 -f https://www.paddlepaddle.org.cn/whl/linux/mkl/avx/stable.html
paddlespeech版本为:1.4.1
后面通过反复尝试发现需要降低paddle版本才行,测试paddlepaddle-gpu==2.5.1也不行,换成2.4.2就可以了
pip install paddlepaddle-gpu==2.4.2.post117 -f https://www.paddlepaddle.org.cn/whl/linux/mkl/avx/stable.html
但是paddlespeech运行报错keyerror之类错误,于是重新换成版本
git clone -b r1.4 https://github.com/PaddlePaddle/PaddleSpeech.git
之后就可以运行了。