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 Tensorobjects. | 
| token | A string. | 
| Tout | A list of tf.DTypes. | 
| is_async | An optional bool. Defaults toFalse. | 
| name | A name for the operation (optional). | 
| Returns | |
|---|---|
| A list of Tensorobjects of typeTout. |