AttributeError: module 'tensorflow._api.v1.config' has no attribute 'list_physical_devices'
时间: 2023-10-13 22:07:02 浏览: 349
attribute详细介绍
这个错误是因为你使用的Keras版本与TensorFlow版本不兼容导致的。从TensorFlow 2.0开始,`tensorflow._api.v1.config`模块中的`list_physical_devices`属性被移除了。
要解决这个问题,有两种可能的方法:
1. 升级你的Keras版本到与你使用的TensorFlow版本兼容的版本。你可以查看Keras文档或官方GitHub页面来确定哪个Keras版本与你的TensorFlow版本兼容。
2. 更新你的TensorFlow版本到较新的版本。最新版本的TensorFlow已经移除了`_api.v1`模块,所以你应该不会再遇到这个问题。
请记住,在更新任何库之前,最好备份你的代码和环境,以防出现其他不可预料的问题。
阅读全文