Searched refs:reduce_join (Results 1 – 9 of 9) 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) 310 string_ops.reduce_join(inputs=[[""]], axis=-3) 312 string_ops.reduce_join(inputs=[[""]], axis=2) 315 string_ops.reduce_join(inputs=[[""]], axis=[0, -3]) [all …]
|
/external/tensorflow/tensorflow/python/ops/ |
D | string_ops.py | 329 def reduce_join(inputs, axis=None, # pylint: disable=missing-docstring function 340 return gen_string_ops.reduce_join( 355 return reduce_join( 359 reduce_join.__doc__ = deprecation.rewrite_argument_docstring( 360 gen_string_ops.reduce_join.__doc__, "reduction_indices", "axis") 361 reduce_join.__doc__ = reduce_join.__doc__.replace("tf.reduce_join(",
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.strings.pbtxt | 20 name: "reduce_join"
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.strings.pbtxt | 20 name: "reduce_join"
|
D | tensorflow.pbtxt | 1820 name: "reduce_join"
|
/external/tensorflow/tensorflow/python/ops/ragged/ |
D | ragged_map_fn_op_test.py | 53 fn=string_ops.reduce_join,
|
/external/tensorflow/tensorflow/python/data/ops/ |
D | dataset_ops.py | 685 string_ops.reduce_join(file_pattern, separator=", "), name="message")
|
/external/tensorflow/ |
D | RELEASE.md | 1457 * `tf.reduce_join`: `reduction_indices` becomes `axis` 1541 * Change `reduce_join` to treat `reduction_indices` in the same way as other `reduce_` ops.
|