library for preprocessing data with TensorFlow.
TensorFlow Transform is a library for preprocessing data with TensorFlow. tf.Transform is useful for data that requires a full-pass, such as - Normalize an input value by mean and standard deviation. - Convert strings to integers by generating a vocabulary over all input values. - Convert floats to integers by assigning them to buckets based on the observed data distribution.
TensorFlow has built-in support for manipulations on a single example or a batch of examples. tf.Transform extends these capabilities to support full-passes over the example data. The output of tf.Transform is exported as a TensorFlow graph to use for training and serving. Using the same graph for both training and serving can prevent skew since the same transformations are applied in both stages.
!!! Caution - tf.Transform may be backwards incompatible before version 1.0.