大家好,我写了一个关于tf.random_shuffle的程序,但程序得出的结果和预期的总是不一样,有哪位大佬知道原因吗?谢谢!
import tensorflow as tf
import numpy as np
label_np=np.array([0,1,2,3,4,5])
label=tf.convert_to_tensor(label_np)
indices=tf.constant([4,0,3])
indices_random=tf.random_shuffle(indices)
label=tf.gather(label,indices_random)
with tf.Session() as sess:
print('indices_random:\n',sess.run(indices_random))
print('label:\n',sess.run(label))
程序输出结果为:
indices_random:
[4 0 3]
label:
[3 4 0]
发帖人:nmx
发帖时间:2018-7-24 15:54:49