Returns a TensorArray with the same content and properties. Returns: A new TensorArray object with flow that ensures the control dependencies from the contexts will become control dependencies for writes, reads, etc. Use this object all for subsequent operations.
(self)
| 1042 | return self._implementation._infer_shape |
| 1043 | |
| 1044 | def identity(self): |
| 1045 | """Returns a TensorArray with the same content and properties. |
| 1046 | |
| 1047 | Returns: |
| 1048 | A new TensorArray object with flow that ensures the control dependencies |
| 1049 | from the contexts will become control dependencies for writes, reads, etc. |
| 1050 | Use this object all for subsequent operations. |
| 1051 | """ |
| 1052 | return self._implementation.identity() |
| 1053 | |
| 1054 | def grad(self, source, flow=None, name=None): |
| 1055 | return self._implementation.grad(source, flow=flow, name=name) |
no outgoing calls