tf.raw_ops.StringJoin  |  TensorFlow v2.16.1 (original) (raw)

tf.raw_ops.StringJoin

Stay organized with collections Save and categorize content based on your preferences.

Joins the strings in the given list of string tensors into one tensor;

View aliases

Compat aliases for migration

SeeMigration guide for more details.

tf.compat.v1.raw_ops.StringJoin

tf.raw_ops.StringJoin(
    inputs, separator='', name=None
)

with the given separator (default is an empty separator).

Examples:

s = ["hello", "world", "tensorflow"] tf.strings.join(s, " ") <tf.Tensor: shape=(), dtype=string, numpy=b'hello world tensorflow'>

Args
inputs A list of Tensor objects with type string. A list of string tensors. The tensors must all have the same shape, or be scalars. Scalars may be mixed in; these will be broadcast to the shape of non-scalar inputs.
separator An optional string. Defaults to "". string, an optional join separator.
name A name for the operation (optional).
Returns
A Tensor of type string.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.

Last updated 2024-04-26 UTC.