當運行卷積神經時出現了問題:Failed to get convolution algorithm. This is probably because cuDNN failed to initialize, so try looking to see if a warning log message was printed above.
這一般就是cuda+cuDNN+TensorFlow的版本匹配不一致,當然大概率就是TensorFlow的版本過高了,降級即可:
sudo pip3 install --upgrade --force-reinstall tensorflow-gpu==1.9.0 --user
