本文主要是介绍tf.config.list_logical_devices报错module 'tensorflow_core._api.v2.config' has no attribute 'list_**,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
module 'tensorflow_core._api.v2.config' has no attribute 'list_physical_devices'
这个错误发生在TensorFlow2.0版本中,查看了源码之后解决如下
tensorflow_core._api.v2.config下只有如下的文件
而list_physical_devices在experimental文件中被导入
所以只要将代码修改之后即可解决,如下
原始:
tf.config.list_logical_devices()
修改后:
tf.config.experimental.list_logical_devices()
亲测解决
这篇关于tf.config.list_logical_devices报错module 'tensorflow_core._api.v2.config' has no attribute 'list_**的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!