Tensorflow和python numpy:如何使用特定索引连接张量/列表

时间:2019-08-23 13:59:05

标签: python list numpy tensorflow deep-learning

我是Tensorflow: how to concat tensor with specific index

的作者

今天我要串联这两个列表

tensor_a = [[[[255,255,255]]], [[[100,100,100]]]]
tensor_b = [[[[0.1,0.2]]], [[[0.3,0.4]]]]

转换为这种格式

tensor_d = [[[[[255,255,255],[0.1,0.2]]]], [[[[100,100,100], [0.3,0.4]]]]]

我需要进行这种转换:

  1. 使用张量流(因此tensor_a和tensor_b是张量)

  2. 使用list / numpy(所以tensor_a和tensor_b是列表)

我该怎么办?

0 个答案:

没有答案