module 'tensorflow_core._api.v2.config' has no attribute 'experimental_list_devices'
Posted Howbin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了module 'tensorflow_core._api.v2.config' has no attribute 'experimental_list_devices'相关的知识,希望对你有一定的参考价值。
module \'tensorflow_core._api.v2.config\' has no attribute \'experimental_list_devices\'

报错如下
建立CNN层时出错:
module ‘tensorflow_core._api.v2.config’ has no attribute ‘experimental_list_devices’

错误
环境
- keras cup版本
- Anaconda
解决方法
找到如下图路径:
修改506行:
_LOCAL_DEVICES = tf.config.experimental_list_devices()
为
devices = tf.config.list_logical_devices()
_LOCAL_DEVICES = [x.name for x in devices]
参考
以上是关于module 'tensorflow_core._api.v2.config' has no attribute 'experimental_list_devices'的主要内容,如果未能解决你的问题,请参考以下文章