Fail to find the dnn implementation解决方案

在model.fit出vs报错Fail to find the dnn implementation,更具体的信息为Loaded runtime CuDNN library: 7.3.1 but source was compiled with: 7.6.5
问题的源头在于CuDNN的版本落后了,所以我准备更新CuDNN。具体如下:
去官网网站 https://developer.nvidia.com/cudnn下载,然后根据CUDA的版本选择合适的cuDNN。
Fail to find the dnn implementation解决方案
CUDA的版本查看方法可以通过我的电脑访问“C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA”查看里面的版本号。如下图,我自己电脑中有3个版本,但是我使用的是v10.1。
Fail to find the dnn implementation解决方案
选择合适的版本下载完毕之后的工作请参考此博客,然后重新运行程序就可以了。