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‘等问题汇总(

为啥我从 tensorflow 网站收到此代码的语法错误? [关闭]