MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / gather_v2

Function gather_v2

tensorflow/python/ops/array_ops.py:3971–3983  ·  view source on GitHub ↗
(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
3971def 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
3986gather_v2.__doc__ = gather.__doc__

Callers

nothing calls this directly

Calls 1

gatherFunction · 0.70

Tested by

no test coverage detected