首页 > 解决方案 > TensorFlow 形状 (?,) 是什么意思?

问题描述

我得到一个 TensofFlow 张量的形状:

(?,)

这个答案说这?意味着维度在图表中不是固定的,它可以在运行调用之间变化。

?与尾随逗号结合是什么意思?

文档章节和诗句将不胜感激。我发现语法很难用谷歌搜索。

标签: pythontensorflow

解决方案


逗号表示维度表示为1-elem 元组而不是 int。

每个张量在创建时默认是一个 n-dim:

import tensorflow as tf
t = tf.constant([1, 1, 1])
s = tf.constant([[1, 1, 1],[2,2,2]])

print("0) ", tf.shape(t))
print("1) ", tf.shape(s))

0)  Tensor("Shape_28:0", shape=(1,), dtype=int32)
1)  Tensor("Shape_29:0", shape=(2,), dtype=int32)

但是,您可以重塑它以获得更“完整”的形状(即 n X m / n X m X r...dim):

print("2) ", tf.reshape(t, [3,1]))
print("3) ", tf.reshape(s, [2,3]))

2)  Tensor("Reshape_12:0", shape=(3, 1), dtype=int32)
3)  Tensor("Reshape_13:0", shape=(2, 3), dtype=int32)

推荐阅读