报错:
AttributeError: module 'tensorflow' has no attribute 'random_normal'
- 1
原因:
我使用的是tf2,最新一版的random_normal方法已经换为:random.normal
解决办法
1、直接代码段中进行修改即可
2、使用
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
- 1
- 2
替换
import tensorflow as tf
- 1
第二种方法可解决大多数AttributeError: module 'tensorflow' has no attribute
问题