本文主要是介绍AttributeError: module ‘tensorflow_core._api.v2.config’ has no attribute ‘experimental_list_devices’,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
找到 tensorflow_backend.py 源文件的第506行
_LOCAL_DEVICES = tf.config.experimental_list_devices()
改成
devices = tf.config.list_logical_devices()
_LOCAL_DEVICES = [x.name for x in devices]
这篇关于AttributeError: module ‘tensorflow_core._api.v2.config’ has no attribute ‘experimental_list_devices’的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!