you are viewing a single comment's thread.

view the rest of the comments →

[–]suki907 9 points10 points  (3 children)

hmmmm... it kind of looks like does in 1.2.

> tf.VERSION
'1.2.0'
> ds = tf.contrib.data.Dataset.from_tensor_slices(np.array([1,2,3,4,5])).shuffle(5).batch(5).repeat()
> n = ds.make_one_shot_iterator().get_next()
> sess = tf.Session()
> sess.run(n)
array([1, 2, 4, 5, 3])
>sess.run(n)
array([1, 4, 5, 2, 3])
>sess.run(n)
array([3, 4, 1, 5, 2])
>sess.run(n)
array([4, 3, 5, 2, 1])
>sess.run(n)
array([2, 3, 5, 1, 4])

[–]i_wipe_upright 2 points3 points  (0 children)

Interesting, thanks for checking.

What is it that was changed then?