tf.estimator.experimental.build_raw_supervised_input_receiver_fn

View source on GitHub

Build a supervised_input_receiver_fn for raw features and labels.

tf.estimator.experimental.build_raw_supervised_input_receiver_fn(
    features, labels, default_batch_size=None
)

This function wraps tensor placeholders in a supervised_receiver_fn with the expectation that the features and labels appear precisely as the model_fn expects them. Features and labels can therefore be dicts of tensors, or raw tensors.

Args:

Returns:

A supervised_input_receiver_fn.

Raises: