美文网首页
关于矩阵扩充tf.tile

关于矩阵扩充tf.tile

作者: ClarenceHoo | 来源:发表于2017-12-27 15:12 被阅读0次

    a = 10*tf.random_normal([3,3,3,3])
    c = tf.tile(a, [2,4,6,8], name=None)
    with tf.Session() as sess:
    aa = sess.run(c)
    print(aa.shape)
    输出[6,12,18,24]

    相关文章

      网友评论

          本文标题:关于矩阵扩充tf.tile

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