tf.contrib.learn.InputFnOps
A return type for an input_fn (deprecated).
tf.contrib.learn.InputFnOps( features, labels, default_inputs )
THIS CLASS IS DEPRECATED. Please use tf.estimator.export.ServingInputReceiver instead.
This return type is currently only supported for serving input_fn. Training and eval input_fn should return a (features, labels)
tuple.
The expected return values are: features: A dict of string to Tensor
or SparseTensor
, specifying the features to be passed to the model. labels: A Tensor
, SparseTensor
, or a dict of string to Tensor
or SparseTensor
, specifying labels for training or eval. For serving, set labels
to None
. default_inputs: a dict of string to Tensor
or SparseTensor
, specifying the input placeholders (if any) that this input_fn expects to be fed. Typically, this is used by a serving input_fn, which expects to be fed serialized tf.Example
protos.
Attributes | |
---|---|
features | |
labels | |
default_inputs |
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r1.15/api_docs/python/tf/contrib/learn/InputFnOps