22

我正试图让优步的路德维希运行。我收到关于没有属性“random_normal”的错误。我可以使用这些命令在 Python 中重现错误。

>>> import tensorflow as tf
>>> tf.reduce_sum(tf.random_normal([1000,1000]))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: module 'tensorflow' has no attribute 'random_normal'
>>> print(tf.__version__)
2.1.0
>>> print(sys.version)
3.7.5 (defaut, Oct 25 2019, 15:51:11)
[GCC 7.3.0]

将不胜感激有关如何克服此错误的帮助。

4

2 回答 2

41

它被移到tf.random.normal(连同所有其他tf.random_*功能)

于 2020-01-28T16:41:35.067 回答
4

Tensorflow 2.0 带有 random_normal 的新别名。使用tf.random.normal而不是tf.random_normal应该成功执行。

于 2020-01-28T16:49:42.467 回答