美文网首页tensorflow & AI码农的世界大数据 爬虫Python AI Sql
自制人工智能TensorFlow之01环境安装(含demo代码)

自制人工智能TensorFlow之01环境安装(含demo代码)

作者: iCloudEnd | 来源:发表于2019-03-07 11:31 被阅读10次

    欢迎关注本专栏《TensorFlow & AI 学习专栏

    创建虚拟机环境(这个步骤可以跳过)

    mkvirtualenv tensorflow
    
    

    pip 安装 tensorflow

    pip3 install -i https://pypi.douban.com/simple tensorflow
    

    运行效果

    import tensorflow as tf
     a = tf.constant(1.0)
    b = tf.constant(2.0) 
    c=a+ b
    sess = tf.Session()
    print(sess.run(c))
    
    tf hello world

    相关文章

      网友评论

        本文标题:自制人工智能TensorFlow之01环境安装(含demo代码)

        本文链接:https://www.haomeiwen.com/subject/uyxcpqtx.html