Tensorflow 1.2.1 :属性错误:模块'tensorflow'没有属性'random'



我已经安装了tensorflow 1.2.1,每当我尝试运行时

c=tf.random.normal(shape=(3,4),dtype=tf.float32)

我得到错误AttributeError: module 'tensorflow' has no attribute 'random'

使用

c = tf.random_normal(shape=(3,4),dtype=tf.float32))

点击此处查看可用API的完整列表

点击此处查看用法

相关内容

  • 没有找到相关文章

最新更新