首页 > 编程 > Python > 正文

TensorFlow 合并/连接数组的方法

2020-02-15 22:32:27
字体:
来源:转载
供稿:网友

如下所示:

import tensorflow as tfa = tf.Variable([4,5,6])b = tf.Variable([1,2,3])c = tf.concat(0,[a,b])init_op = tf.initialize_all_variables()with tf.Session() as sess: sess.run(init_op) print(sess.run(c))

结果打印:

[4 5 6 1 2 3]

以上这篇TensorFlow 合并/连接数组的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持武林站长站。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表