1. 程式人生 > >tf.gather()函式的作用

tf.gather()函式的作用

import tensorflow as tf

temp = tf.range(0,10)*10 + tf.constant(1,shape=[10])
temp2 = tf.gather(temp,[1,5,9])

with tf.Session() as sess:

    print sess.run(temp)
    print sess.run(temp2)

輸出  [ 1 11 21 31 41 51 61 71 81 91]  [11 51 91]

tf.gather()用來取出tensor中指定索引位置的元素。

---------------------  作者:guotong1988  來源:CSDN  原文:https://blog.csdn.net/guotong1988/article/details/53172882  版權宣告:本文為博主原創文章,轉載請附上博文連結!