Creates a dataset that computes a windowed group-by on input_dataset.
tf.raw_ops.GroupByWindowDataset(
input_dataset,
key_func_other_arguments,
reduce_func_other_arguments,
window_size_func_other_arguments,
key_func,
reduce_func,
window_size_func,
output_types,
output_shapes,
metadata='',
name=None
)
//
Args |
|---|
input_dataset
Tensor of type variant.
key_func_other_arguments
Tensor objects.
reduce_func_other_arguments
Tensor objects.
window_size_func_other_arguments
Tensor objects.
key_func
input_dataset, concatenated
with key_func_other_arguments to a scalar value of type DT_INT64.
reduce_func
window_size_func
output_types
tf.DTypes that has length >= 1.
output_shapes
tf.TensorShape or list of ints) that has length >= 1.
metadata
string. Defaults to "".
name
Returns | |
|---|---|
A Tensor of type variant.
|