Home
last modified time | relevance | path

Searched refs:gather_nd (Results 1 – 25 of 43) sorted by relevance

12

/external/tensorflow/tensorflow/python/kernel_tests/
Dgather_nd_op_test.py43 gather_nd_t = array_ops.gather_nd(params, indices)
65 gather_nd_ok_t = array_ops.gather_nd(params, indices_empty)
71 gather_nd_ok_t = array_ops.gather_nd(params, indices_empty)
78 gather_nd_ok_t = array_ops.gather_nd(params_empty, indices_empty)
85 gather_nd_break_t = array_ops.gather_nd(params_empty, indices_nonempty)
96 gather_nd_t = array_ops.gather_nd(params, indices)
106 gather_nd_t = array_ops.gather_nd(params, indices)
116 gather_nd_t = array_ops.gather_nd(params, indices)
130 gather_nd_t = array_ops.gather_nd(params_t, indices)
145 gather_nd_t = array_ops.gather_nd(params_t, indices)
[all …]
Dlu_op_test.py115 permuted_verification_reshaped = array_ops.gather_nd(
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_gather_ops.py125 def gather_nd(params, indices, name=None): function
169 return array_ops.gather_nd(params, indices, name)
201 result = indices.with_flat_values(gather_nd(params, indices.flat_values))
250 return array_ops.gather_nd(flattened_params, flattened_index_tuples)
Dragged_gather_nd_op_test.py204 result = ragged_gather_ops.gather_nd(params, indices)
216 ragged_gather_ops.gather_nd(params, indices1)
219 ragged_gather_ops.gather_nd(params, indices2)
241 ragged_gather_ops.gather_nd(params, indices)
Dragged_dispatch.py436 (array_ops.gather_nd, ragged_gather_ops.gather_nd, ['params', 'indices']),
/external/tensorflow/tensorflow/core/api_def/python_api/
Dapi_def_GatherNd.pbtxt4 name: "gather_nd"
7 name: "manip.gather_nd"
/external/tensorflow/tensorflow/lite/kernels/
Dgather_nd.cc25 namespace gather_nd { namespace
149 gather_nd::Prepare, gather_nd::Eval}; in Register_GATHER_ND()
DAndroid.bp69 "gather_nd.cc",
/external/tensorflow/tensorflow/python/ops/
Dsparse_grad.py103 return (None, array_ops.gather_nd(out_grad, sp_indices), None, out_grad)
115 return (None, array_ops.gather_nd(out_grad_reshaped, sp_indices // scale),
227 dense_vals = array_ops.gather_nd(y, scaled_indices)
319 sparse_values_grad = array_ops.gather_nd(grad, sparse_indices)
Darray_grad.py865 updates_grad = array_ops.gather_nd(grad, indices)
872 updates_grad = array_ops.gather_nd(grad, indices)
882 updates_grad = array_ops.gather_nd(grad, indices)
890 updates_grad = array_ops.gather_nd(grad, indices)
898 updates_grad = array_ops.gather_nd(grad, indices)
/external/tensorflow/tensorflow/contrib/seq2seq/python/ops/
Dsampler.py358 sample_ids_sampling = array_ops.gather_nd(sample_ids, where_sampling)
359 inputs_not_sampling = array_ops.gather_nd(base_next_inputs,
459 auxiliary_inputs = array_ops.gather_nd(auxiliary_inputs, indices)
471 outputs_sampling = array_ops.gather_nd(outputs, where_sampling)
472 inputs_not_sampling = array_ops.gather_nd(base_next_inputs,
Dhelper.py398 sample_ids_sampling = array_ops.gather_nd(sample_ids, where_sampling)
399 inputs_not_sampling = array_ops.gather_nd(
518 auxiliary_inputs = array_ops.gather_nd(auxiliary_inputs, indices)
532 outputs_sampling = array_ops.gather_nd(outputs, where_sampling)
533 inputs_not_sampling = array_ops.gather_nd(base_next_inputs,
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.manip.pbtxt8 name: "gather_nd"
/external/tensorflow/tensorflow/contrib/sparsemax/python/ops/
Dsparsemax.py81 tau_sum = array_ops.gather_nd(z_cumsum, indices)
/external/tensorflow/tensorflow/contrib/kernel_methods/python/
Dlosses.py126 array_ops.gather_nd(params=logits, indices=indices),
/external/tensorflow/tensorflow/contrib/layers/python/ops/
Dsparse_ops.py77 values=array_ops.gather_nd(dense_tensor, indices, name="values"),
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_GatherV2.pbtxt58 See also `tf.batch_gather` and `tf.gather_nd`.
Dapi_def_GatherNd.pbtxt31 dimension of `params`, in `tf.gather_nd`, `indices` defines slices into the
Dapi_def_ScatterNd.pbtxt33 `tf.gather_nd` operator which extracts values or slices from a given tensor.
/external/tensorflow/tensorflow/contrib/crf/python/ops/
Dcrf.py94 sequence_scores = array_ops.gather_nd(
513 gen_array_ops.gather_nd(inputs, indices), # [B]
/external/tensorflow/tensorflow/python/keras/utils/
Dcomposite_tensor_support_test.py76 values = array_ops.gather_nd(inputs, indices)
/external/tensorflow/tensorflow/compiler/tests/
Dgather_nd_op_test.py36 gather_nd_t = array_ops.gather_nd(paramsp, indicesp)
/external/tensorflow/tensorflow/contrib/linear_optimizer/python/
Dsdca_optimizer.py128 sparse_values = array_ops.gather_nd(dense_tensor, sparse_indices)
/external/tensorflow/tensorflow/lite/
Dtflite_static.bp74 "kernels/gather_nd.cc",
/external/tensorflow/tensorflow/contrib/eager/python/examples/rnn_colorbot/
Drnn_colorbot.py204 hidden_states = tf.gather_nd(chars, indices)

12