博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
AttributeError: module 'tensorflow' has no attribute 'random_normal'
阅读量:4145 次
发布时间:2019-05-25

本文共 1011 字,大约阅读时间需要 3 分钟。

 

执行《TensorFlow实战Google深度学习框架(第2版)》only源代码 CH3 时如下语句报错

batch_size = 8

w1= tf.Variable(tf.random_normal([2, 3], stddev=1, seed=1))
w2= tf.Variable(tf.random_normal([3, 1], stddev=1, seed=1))
x = tf.placeholder(tf.float32, shape=(None, 2), name="x-input")
y_= tf.placeholder(tf.float32, shape=(None, 1), name='y-input')

 

报错如下

1  AttributeError                            Traceback (most recent call last)
in
1 batch_size = 8----> 2 w1= tf.Variable(tf.random_normal([2, 3], stddev=1, seed=1)) 3 w2= tf.Variable(tf.random_normal([3, 1], stddev=1, seed=1)) 4 x = tf.placeholder(tf.float32, shape=(None, 2), name="x-input") 5 y_= tf.placeholder(tf.float32, shape=(None, 1), name='y-input')AttributeError: module 'tensorflow' has no attribute 'random_normal'

 

解决办法:

tensorflow显示没有random_uniform模块

解决办法:tf2.0里改名字了,用tf.random.uniform代替

 

module 'tensorflow' has no attribute 'placeholder'

解决方法,更换tensorflow版本,修改方法如下后问题解决

import tensorflow.compat.v1 as tf

tf.disable_v2_behavior()

转载地址:http://cifti.baihongyu.com/

你可能感兴趣的文章
JAVA操作properties文件的代码实例
查看>>
IPS开发手记【一】
查看>>
Java通用字符处理类
查看>>
文件上传时生成“日期+随机数”式文件名前缀的Java代码
查看>>
Java代码检查工具Checkstyle常见输出结果
查看>>
北京十大情人分手圣地
查看>>
Android自动关机代码
查看>>
Android中启动其他Activity并返回结果
查看>>
2009年33所高校被暂停或被限制招生
查看>>
GlassFish 部署及应用入门
查看>>
iWatch报错: Authorization request cancled
查看>>
iWatch报错: Authorizationsession time out
查看>>
X-code7 beta error: warning: Is a directory
查看>>
Error: An App ID with identifier "*****" is not avaliable. Please enter a different string.
查看>>
iTunes Connect 上传APP报错: Communication error. please use diagnostic mode to check connectivity.
查看>>
3.5 YOLO9000: Better,Faster,Stronger(YOLO9000:更好,更快,更强)
查看>>
iOS菜鸟学习--如何避免两个按钮同时响应
查看>>
iOS菜鸟学习—— NSSortDescriptor的使用
查看>>
hdu 3790 hdoj 3790
查看>>
zju 1005 zoj 1005
查看>>