代码之家  ›  专栏  ›  技术社区  ›  steve zissou

Tensorflow:模块“Tensorflow”没有属性“constant”

  •  1
  • steve zissou  · 技术社区  · 6 年前

    我已尝试安装 Tensorflow 在ubuntu18.04上 this Tensorflow网站的安装指南。但是,在python/jupyter笔记本中导入tensorflow之后,所有功能似乎都不起作用。

    #import tensorflow
    import tensorflow as tf
    
    #initialize two constants
    x1 = tf.constant([1,2,3,4])
    x2 = tf.constant([5,6,7,8])
    

    AttributeError: module 'tensorflow' has no attribute 'constant'
    

    有人知道为什么这个属性不可用吗?在tensorflow网站上 still be a fully functional

    这是我第一次尝试运行tensorflow,因此在此主题上的任何帮助都将不胜感激!

    2 回复  |  直到 6 年前
        1
  •  2
  •   Peyman.H    6 年前

    您必须将文件夹名称更改为除 tensorflow

    原因是当你使用 import x x 和进口 __init__.py constant 在它上面,你想要张量流本身!

        2
  •  0
  •   Harsha Biyani Amit    6 年前

    我也犯了同样的错误。在我安装之后 tensorflow-eigen 问题解决了。