attributeerror: module 'tensorflow._api.v1.config' has no attribute 'list_physical_devices'
时间: 2023-04-30 07:01:19 浏览: 244
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误是因为 TensorFlow 版本不兼容导致的。在 TensorFlow 1.x 版本中,使用 `tf.config.list_physical_devices()` 可以列出所有可用的物理设备,但在 TensorFlow 2.x 版本中,这个函数已经被移除了。如果你正在使用 TensorFlow 2.x 版本,可以使用 `tf.config.experimental.list_physical_devices()` 来替代。如果你正在使用 TensorFlow 1.x 版本,可以尝试升级到最新版本或者使用旧版本的 API。
阅读全文