repeat(3).batch(7)
来源:4-2 tf_data基础API使用
慕云19
2019-09-08
tf.Tensor([0 1 2 3 4 5 6], shape=(7,), dtype=int32)
tf.Tensor([7 8 9 0 1 2 3], shape=(7,), dtype=int32)
tf.Tensor([4 5 6 7 8 9 0], shape=(7,), dtype=int32)
tf.Tensor([1 2 3 4 5 6 7], shape=(7,), dtype=int32)
tf.Tensor([8 9], shape=(2,), dtype=int32)
老师好,请问这里的结果,不是遍历3次吗,为什么是五个,最后的8,9为什么在课程中叫剩下的两个
写回答
1回答
-
先将数据集重复3次 再分成五个batch
012019-09-14
相似问题