TensorFlow 字符串拼接 tf.string_join

函数原型:
tf.string_join(input, separator=’ ', name=True)

参数:

  • input: 是一个list,list中存放的数据类型为 tf.string
  • separator=’ ': 字符串的连接符, 连接符也是字符串型
  • name: 设置当前operation对象的名称

举例 1: 拼接0维字符串

import tensorflow as tf

A_str_tf = tf.constant('hello', dtype=tf.string)
B_str_tf = tf.constant('tensor', dtype=tf.string)
C_str_tf = tf.constant('flow', dtype=tf.string)
ABC_str_tf = tf.string_join([A_str_tf, B_str_tf, C_str_tf], separator='_&_',)


with tf.Session() as sess:
    ABC_str = sess.run(ABC_str_tf)
    print(ABC_str.decode())

# 输出为:
# hello_&_tensor_&_flow

举例 2: 拼接多维字符串, 每个维度对应执行拼接

import tensorflow as tf

A_str_tf = tf.constant([['hello'], ['1']], dtype=tf.string)
B_str_tf = tf.constant([['tensor'], ['2']], dtype=tf.string)
C_str_tf = tf.constant([['flow'], ['3']], dtype=tf.string)
ABC_str_tf = tf.string_join([A_str_tf, B_str_tf, C_str_tf], separator='_&_',)


with tf.Session() as sess:
    ABC_str = sess.run(ABC_str_tf)
    print(ABC_str)


# 输出为:
# [[b'hello_&_tensor_&_flow']
#  [b'1_&_2_&_3']]

  • TensorFlow 中输出类型为tf.string的Tensor 对象通过tf.Session().run()函数取出后, 是字节数组类型,所以字符串前面的那个b,就代表字节数组类型
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Enzo 想砸电脑

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值