{AttributeError:模块'tensorflow_core._api.v2.config'没有属性'experimental_list_devices&#039

{AttributeError:模块'tensorflow_core._api.v2.config'没有属性'experimental_list_devices&#039,第1张

{AttributeError:模块'tensorflow_core._api.v2.config'没有属性'experimental_list_devices'

我在这里找到了答案-https: //github.com/keras-
team/keras/issues/13684
。我

load_model()
在Anaconda的keras遇到了同样的问题:

AttributeError:模块“ tensorflow_core._api.v2.config”没有属性“
experimental_list_devices”

我发现问题的根源

… anaconda3 envs tf_env Lib site-packages keras backend
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]

而且有效



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5650587.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存