TensorFlow 合并/连接数组的方法
程序员文章站
2022-06-03 12:01:02
如下所示:
import tensorflow as tf
a = tf.Variable([4,5,6])
b = tf.Variable([1,2,3...
如下所示:
import tensorflow as tf a = 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 合并/连接数组的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
推荐阅读
-
Spring Boot 连接LDAP的方法
-
C#实现连接SQL Server2012数据库并执行SQL语句的方法
-
PHP函数shuffle()取数组若干个随机元素的方法分析
-
java连接mysql数据库乱码的解决方法
-
JavaScript遍历查找数组中最大值与最小值的方法示例
-
C3P0连接池+MySQL的配置及wait_timeout问题的解决方法
-
MYSQL不能从远程连接的一个解决方法(s not allowed to connect to this MySQL server)
-
PHP计算数组中值的和与乘积的方法(array_sum与array_product函数)
-
Android编程判断是否连接网络的方法【WiFi及3G判断】
-
MYSQL无法连接 提示10055错误的解决方法