2023-05-10 01:10:36.875483: W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'cudart64_110.dll'; dlerror: cudart64_110.dll not found
时间: 2023-06-15 11:04:16 浏览: 155
Could not load dynamic library 'cudart64_110.dll';报错
这个警告信息是因为 TensorFlow 没有找到 CUDA 运行库文件,可能是因为您没有安装 CUDA 或者 CUDA 安装不正确。您可以尝试重新安装 CUDA 或使用 TensorFlow 的 CPU 版本。如果您正在使用 TensorFlow 2.x 版本,可以尝试使用以下代码禁用 GPU:
```
import os
os.environ["CUDA_VISIBLE_DEVICES"] = "-1"
```
这将禁用 TensorFlow 对 GPU 的使用。
阅读全文