將所有字符串連接成一個字符串,或沿軸連接。
用法
tf.compat.v1.reduce_join(
inputs, axis=None, keep_dims=None, separator='', name=None,
reduction_indices=None, keepdims=None
)
參數
-
inputs
tf.string
張量。 -
axis
沿著哪個軸加入。默認行為是連接所有元素,產生一個標量。 -
keepdims
如果為真,則保留長度為 1 的縮減維度。 -
separator
在每個要連接的字符串之間添加一個字符串。 -
name
操作的名稱(可選)。
返回
-
tf.string
張量。
這是按元素tf.strings.join
op 的歸約操作。
tf.strings.reduce_join([['abc','123'],
['def','456']]).numpy()
b'abc123def456'
tf.strings.reduce_join([['abc','123'],
['def','456']], axis=-1).numpy()
array([b'abc123', b'def456'], dtype=object)
tf.strings.reduce_join([['abc','123'],
['def','456']],
axis=-1,
separator=" ").numpy()
array([b'abc 123', b'def 456'], dtype=object)
相關用法
- Python tf.compat.v1.reduce_sum用法及代碼示例
- Python tf.compat.v1.reduce_any用法及代碼示例
- Python tf.compat.v1.reduce_max用法及代碼示例
- Python tf.compat.v1.reduce_min用法及代碼示例
- Python tf.compat.v1.reduce_all用法及代碼示例
- Python tf.compat.v1.reduce_prod用法及代碼示例
- Python tf.compat.v1.reduce_logsumexp用法及代碼示例
- Python tf.compat.v1.reduce_mean用法及代碼示例
- Python tf.compat.v1.reverse_sequence用法及代碼示例
- Python tf.compat.v1.random.stateless_multinomial用法及代碼示例
- Python tf.compat.v1.random_uniform_initializer.from_config用法及代碼示例
- Python tf.compat.v1.ragged.constant_value用法及代碼示例
- Python tf.compat.v1.random_normal_initializer用法及代碼示例
- Python tf.compat.v1.random_normal_initializer.from_config用法及代碼示例
- Python tf.compat.v1.random_poisson用法及代碼示例
- Python tf.compat.v1.random_uniform_initializer用法及代碼示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代碼示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代碼示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代碼示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.compat.v1.reduce_join。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。