tf.strings.bytes_split
View source on GitHub |
Split string elements of input
into bytes.
tf.strings.bytes_split( input, name=None )
Examples:
tf.strings.bytes_split('hello') ['h', 'e', 'l', 'l', 'o'] tf.strings.bytes_split(['hello', '123']) <RaggedTensor [['h', 'e', 'l', 'l', 'o'], ['1', '2', '3']]>
Note that this op splits strings into bytes, not unicode characters. To split strings into unicode characters, use tf.strings.unicode_split
.
See also: tf.io.decode_raw
, tf.strings.split
, tf.strings.unicode_split
.
Args | |
---|---|
input | A string Tensor or RaggedTensor : the strings to split. Must have a statically known rank (N ). |
name | A name for the operation (optional). |
Returns | |
---|---|
A RaggedTensor of rank N+1 : the bytes that make up the source strings. |
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r1.15/api_docs/python/tf/strings/bytes_split