我正在尝试批量类型(batch_size, time_steps, my_data)
为什么在flat_map
一步我得到 AttributeError: 'dict' object has no attribute 'batch'
x_train = np.random.normal(size=(60000, 768))
token_type_ids = np.ones(shape=(len(x_train)))
position_ids = np.random.normal(size=(x_train.shape[0], 5))
features_ds = tf.data.Dataset.from_tensor_slices({'inputs_embeds': x_train,
'token_type_ids': token_type_ids,
'position_ids': position_ids})
y_ds = tf.data.Dataset.from_tensor_slices(y_train)
ds = tf.data.Dataset.zip((features_ds, y_ds))
# result = list(ds.as_numpy_iterator())
result_ds = ds.window(size=time_steps, shift=time_steps, stride=1, drop_remainder=True). \
flat_map(lambda x, y: tf.data.Dataset.zip((x.batch(time_steps), y.batch(time_steps))))
知道是什么问题吗?以及如何解决?