AttributeError: module 'tensorflow' has no attribute 'config'
时间: 2023-07-23 11:13:52 浏览: 140
关于.NET Attribute在数据校验中的应用教程
这个错误通常出现在使用较新版本的 TensorFlow 时,因为最新版本中已经移除了`config`模块。
如果你的代码中使用了`tensorflow.config`,那么你可以考虑使用`tensorflow.compat.v1.ConfigProto()`代替。
另外,如果你使用的是旧版本的 TensorFlow,可以考虑升级到较新的版本以解决这个问题。
阅读全文