Searched refs:reduce_join (Results 1 – 15 of 15) sorted by relevance
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_ReduceJoin.pbtxt | 49 tf.reduce_join(a, 0) ==> ["ac", "bd"] 50 tf.reduce_join(a, 1) ==> ["ab", "cd"] 51 tf.reduce_join(a, -2) = tf.reduce_join(a, 0) ==> ["ac", "bd"] 52 tf.reduce_join(a, -1) = tf.reduce_join(a, 1) ==> ["ab", "cd"] 53 tf.reduce_join(a, 0, keep_dims=True) ==> [["ac", "bd"]] 54 tf.reduce_join(a, 1, keep_dims=True) ==> [["ab"], ["cd"]] 55 tf.reduce_join(a, 0, separator=".") ==> ["a.c", "b.d"] 56 tf.reduce_join(a, [0, 1]) ==> "acbd" 57 tf.reduce_join(a, [1, 0]) ==> "abcd" 58 tf.reduce_join(a, []) ==> [["a", "b"], ["c", "d"]] [all …]
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | reduce_join_op_test.py | 118 output = string_ops.reduce_join( 141 output = string_ops.reduce_join( 143 output_keep_dims = string_ops.reduce_join( 148 truth = string_ops.reduce_join( 241 reduced = string_ops.reduce_join(placeholder, axis=0) 255 reduced = string_ops.reduce_join(input_array, axis=placeholder) 307 string_ops.reduce_join(inputs="", axis=0) 309 string_ops.reduce_join(inputs=[[""]], axis=-3) 311 string_ops.reduce_join(inputs=[[""]], axis=2) 313 string_ops.reduce_join(inputs=[[""]], axis=[0, -3]) [all …]
|
/external/tensorflow/tensorflow/python/ops/ragged/ |
D | strings_reduce_join_op_test.py | 37 output = ragged_string_ops.reduce_join( 129 output = ragged_string_ops.reduce_join(
|
D | ragged_string_ops.py | 664 def reduce_join(inputs, axis=None, keepdims=None, separator="", name=None): function 667 string_ops.reduce_join, string_ops.unsorted_segment_join, inputs, axis, 848 return string_ops.reduce_join(output_pieces) 921 return "[" + string_ops.reduce_join(pieces, separator=", ") + "]"
|
D | ragged_map_fn_op_test.py | 53 fn=string_ops.reduce_join,
|
D | ragged_dispatch_test.py | 603 op=string_ops.reduce_join,
|
D | ragged_dispatch.py | 518 (string_ops.reduce_join_v2, ragged_string_ops.reduce_join, ['inputs']),
|
/external/tensorflow/tensorflow/python/ops/ |
D | string_ops.py | 310 def reduce_join(inputs, axis=None, # pylint: disable=missing-docstring function 369 return gen_string_ops.reduce_join( 376 reduce_join.__doc__ = reduce_join_v2.__doc__
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.strings.pbtxt | 32 name: "reduce_join"
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.strings.pbtxt | 32 name: "reduce_join"
|
D | tensorflow.pbtxt | 1900 name: "reduce_join"
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/ |
D | tf_generated_ops.td | 10561 tf.reduce_join(a, 0) ==> ["ac", "bd"] 10562 tf.reduce_join(a, 1) ==> ["ab", "cd"] 10563 tf.reduce_join(a, -2) = tf.reduce_join(a, 0) ==> ["ac", "bd"] 10564 tf.reduce_join(a, -1) = tf.reduce_join(a, 1) ==> ["ab", "cd"] 10565 tf.reduce_join(a, 0, keep_dims=True) ==> [["ac", "bd"]] 10566 tf.reduce_join(a, 1, keep_dims=True) ==> [["ab"], ["cd"]] 10567 tf.reduce_join(a, 0, separator=".") ==> ["a.c", "b.d"] 10568 tf.reduce_join(a, [0, 1]) ==> "acbd" 10569 tf.reduce_join(a, [1, 0]) ==> "abcd" 10570 tf.reduce_join(a, []) ==> [["a", "b"], ["c", "d"]] [all …]
|
/external/tensorflow/tensorflow/python/eager/ |
D | function_test.py | 3671 return string_ops.reduce_join( 3672 string_ops.reduce_join(
|
/external/tensorflow/tensorflow/python/data/ops/ |
D | dataset_ops.py | 1223 string_ops.reduce_join(file_pattern, separator=", "), name="message")
|
/external/tensorflow/ |
D | RELEASE.md | 4130 * `tf.reduce_join`: `reduction_indices` becomes `axis` 4214 * Change `reduce_join` to treat `reduction_indices` in the same way as other `reduce_` ops.
|