Function
gather_v2
(params,
indices,
validate_indices=None,
axis=None,
batch_dims=0,
name=None)
Source from the content-addressed store, hash-verified
| 3969 | @tf_export("gather", v1=[]) |
| 3970 | @dispatch.add_dispatch_support |
| 3971 | def gather_v2(params, |
| 3972 | indices, |
| 3973 | validate_indices=None, |
| 3974 | axis=None, |
| 3975 | batch_dims=0, |
| 3976 | name=None): |
| 3977 | return gather( |
| 3978 | params, |
| 3979 | indices, |
| 3980 | validate_indices=validate_indices, |
| 3981 | name=name, |
| 3982 | axis=axis, |
| 3983 | batch_dims=batch_dims) |
| 3984 | |
| 3985 | |
| 3986 | gather_v2.__doc__ = gather.__doc__ |
Callers
nothing calls this directly
Tested by
no test coverage detected