Eagerly executes a python function to compute func(input)->output.
tf.raw_ops.EagerPyFunc(
input, token, Tout, is_async=False, name=None
)
The
semantics of the input, output, and attributes are the same as those for PyFunc.
Args | |
---|---|
input
|
A list of Tensor objects.
|
token
|
A string .
|
Tout
|
A list of tf.DTypes .
|
is_async
|
An optional bool . Defaults to False .
|
name
|
A name for the operation (optional). |
Returns | |
---|---|
A list of Tensor objects of type Tout .
|