AttributeError: module 'tensorflow' has no attribute 'ConfigProto'怎么解决
时间: 2023-09-15 08:17:54 浏览: 83
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是由于TensorFlow版本不匹配引起的。您可以尝试更新TensorFlow版本,或者通过以下代码尝试解决该错误:
```python
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
config = tf.ConfigProto()
config.gpu_options.allow_growth = True
sess = tf.Session(config=config)
```
这将禁用TensorFlow 2.0及以上版本的默认行为,并为您的会话配置GPU选项。
阅读全文