tf.data.experimental.Reducer

A reducer is used for reducing a set of elements.

Compat aliases for migration

See Migration guide for more details.

tf.compat.v1.data.experimental.Reducer, `tf.compat.v2.data.experimental.Reducer`

A reducer is represented as a tuple of the three functions:

1) initialization function: key => initial state 2) reduce function: (old state, input) => new state 3) finalization function: state => result

finalize_func

init_func

reduce_func