美文网首页
tensorflow基础

tensorflow基础

作者: ld9183 | 来源:发表于2019-06-28 09:40 被阅读0次
    1. tf. constant, 定义tensor(张量)
    a = tf.constant([[1,2], [3, 4]])
    print(a)
    
    tf.Tensor(
    [[1 2]
     [3 4]], shape=(2, 2), dtype=int32)
    
    1. tf.add, 两个张量相加
    a = tf.constant([[1, 2], [3, 4]])
    b = tf.constant([[5, 6], [7, 8]])
    print(tf.add(a, b))
    print(a+b) //似乎和tf.add功能完全相同
    
    tf.Tensor(
    [[ 6  8]
     [10 12]], shape=(2, 2), dtype=int32)
    tf.Tensor(
    [[ 6  8]
     [10 12]], shape=(2, 2), dtype=int32)
    
    1. tf.matmul 矩阵乘法
    a = tf.constant([[1, 2], [3, 4]])
    b = tf.constant([[5, 6], [7, 8]])
    print(tf.add(a, b))
    print(a+b)
    
    print(tf.matmul(a, b))
    print(a*b)
    
    tf.Tensor(
    [[ 6  8]
     [10 12]], shape=(2, 2), dtype=int32)
    tf.Tensor(
    [[ 6  8]
     [10 12]], shape=(2, 2), dtype=int32)
    tf.Tensor(
    [[19 22]
     [43 50]], shape=(2, 2), dtype=int32)
    tf.Tensor(
    [[ 5 12]
     [21 32]], shape=(2, 2), dtype=int32)
    

    相关文章

      网友评论

          本文标题:tensorflow基础

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