new_shape = (self.bsz, -1) # The rest of the dimensions are automatically calculated
data_reshaped = tf.reshape(sliced_data, new_shape)
data_transposed = tf.transpose(data_reshaped)
self.data = data_transposed
why tf.dataset.tensor made by from.generation() has much higher gpu till than when i use tf tensor made by just tf.def like above example