tensorflow问题
Posted lixv2018
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tensorflow问题相关的知识,希望对你有一定的参考价值。
如果你的Tensorflow程序很简单,比如这样:
那么出现AttributeError: module ‘tensorflow‘ has no attribute ‘constant‘的原因是:
该文件命名错误,不要用tensorflow这个名字,换个别的就好了
module ‘tensorflow’ has no attribute ‘ConfigProto’/‘Session’问题的解决
因为tensorflow2.0版本与之前版本有所更新,故将上述代码改成之下即可:
#原版 config = tf.ConfigProto(allow_soft_placement=True) config = tf.compat.v1.ConfigProto(allow_soft_placement=True) #原版 sess = tf.Session(config=config) sess =tf.compat.v1.Session(config=config) #注意 ,这里为tensorflow2.0版本,与第1.0有差距。
或
import tensorflow.compat.v1 as tf tf.disable_v2_behavior() 替换 import tensorflow as tf
以上是关于tensorflow问题的主要内容,如果未能解决你的问题,请参考以下文章
tensorflow中卷积层输出特征尺寸计算和padding参数解析
干货使用TensorFlow官方Java API调用TensorFlow模型(附代码)
tensorflow兼容处理 tensorflow.compat.v1及module ‘tensorflow‘ has no attribute ‘reset_default_graph‘等问题汇总(