我是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]]]]]
我需要进行这种转换:
使用张量流(因此tensor_a和tensor_b是张量)
使用list / numpy(所以tensor_a和tensor_b是列表)
我该怎么办?