tf.contrib.eager.py_func( func, inp, Tout, name=None )
Defined in tensorflow/python/ops/script_ops.py
.
Wraps a python function into a TensorFlow op.
When the returned op is executed, func
is invoked with eager execution enabled. Inputs are Tensor objects and func must return None or objects that may be converted to Tensor objects.
This function has the same limitations as py_func
with respect to serialization and distribution.
func
: A Python function which accepts a list of Tensor
objects having element types that match the corresponding tf.Tensor
objects in inp
and returns a list of Tensor
objects (or a single Tensor
, or None
) having element types that match the corresponding values in Tout
.inp
: A list of Tensor
objects.Tout
: A list or tuple of tensorflow data types or a single tensorflow data type if there is only one, indicating what func
returns; an empty list if no value is returned (i.e., if the return value is None
).name
: A name for the operation (optional).A list of Tensor
or a single Tensor
which func
computes; an empty list if func
returns None.
© 2018 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/api_docs/python/tf/contrib/eager/py_func