r"""Gather slices from `params` into a Tensor with shape specified by `indices`. See tf.gather_nd for details. Args: indices: A `Tensor`. Must be one of the following types: `int32`, `int64`. Index tensor. name: A name for the operation (optional). Returns: A
(self, indices, name=None)
| 1154 | raise AttributeError |
| 1155 | |
| 1156 | def gather_nd(self, indices, name=None): |
| 1157 | r"""Gather slices from `params` into a Tensor with shape specified by `indices`. |
| 1158 | |
| 1159 | See tf.gather_nd for details. |
| 1160 | |
| 1161 | Args: |
| 1162 | indices: A `Tensor`. Must be one of the following types: `int32`, `int64`. |
| 1163 | Index tensor. |
| 1164 | name: A name for the operation (optional). |
| 1165 | |
| 1166 | Returns: |
| 1167 | A `Tensor`. Has the same type as `params`. |
| 1168 | """ |
| 1169 | raise AttributeError |
| 1170 | |
| 1171 | @deprecated(None, "Prefer Dataset.range instead.") |
| 1172 | def count_up_to(self, limit): |
no outgoing calls