Return the values in the TensorArray as a concatenated `Tensor`. All of the values must have been written, their ranks must match, and and their shapes must all match for all dimensions except the first. Args: name: A name for the operation (optional). Returns: All the
(self, name=None)
| 1115 | return self._implementation.gather(indices, name=name) |
| 1116 | |
| 1117 | def concat(self, name=None): |
| 1118 | """Return the values in the TensorArray as a concatenated `Tensor`. |
| 1119 | |
| 1120 | All of the values must have been written, their ranks must match, and |
| 1121 | and their shapes must all match for all dimensions except the first. |
| 1122 | |
| 1123 | Args: |
| 1124 | name: A name for the operation (optional). |
| 1125 | |
| 1126 | Returns: |
| 1127 | All the tensors in the TensorArray concatenated into one tensor. |
| 1128 | """ |
| 1129 | return self._implementation.concat(name=name) |
| 1130 | |
| 1131 | @tf_should_use.should_use_result |
| 1132 | def unstack(self, value, name=None): |
no outgoing calls