基于tensorflow函数。 张量A = [1 10 5 6]。我如何创建张量B,如下所示:
[[[1 1 1 ],[1 1 1 ],[1 1 1 ]],
[[10 10 10],[10 10 10],[10 10 10]],
[[5 5 5 ],[5 5 5 ],[5 5 5 ]],
[[6 6 6 ],[6 6 6 ],[6 6 6 ]]]
谢谢。
答案 0 :(得分:1)
A_reshape = tf.expand_dims(A,1)
A_reshape = tf.expand_dims(A_reshape,2)
B = tf.tile(A_reshape, [1,3,3])