我使用的是tensorflow 1.3.0版本Cuda版本8和cuDNN版本6
当我运行python -c "import tensorflow as tf;print(tf.reduce_sum(tf.random.normal([1000, 1000])))"
时,我看到以下错误:-
Traceback (most recent call last):
File "<string>", line 1, in <module>
AttributeError: module 'tensorflow' has no attribute 'random'
请帮帮我,因为我在这件事上已经坚持了很长一段时间了。
Tensorflow 1.3使用tf.random_normal
而不是tf.random.normal
。
您可以在github 上找到TensorFlow 1.3文档
注意:除非明确要求,否则我建议您不要使用tf 1.3:tf1不再接收任何更新。
升级tensorflow版本
pip install --upgrade tensorflow
另外,请检查此StackOverflow问题。