美文网首页
第 2 章 TensorFlow 环境搭建

第 2 章 TensorFlow 环境搭建

作者: _酒酿芋圆 | 来源:发表于2019-02-26 16:47 被阅读0次

    TensorFlow 测试样例

    import tensorflow as tf
    a = tf.constant([1.0, 2.0], name="a")
    b = tf.constant([2.0, 3.0], name="b")
    result = a + b
    sess = tf.Session()
    sess.run(result)
    
    test

    相关文章

      网友评论

          本文标题:第 2 章 TensorFlow 环境搭建

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