在TensorFlow中确定图形创建时的张量形状

问题描述 投票:2回答:1

我正在尝试编写一大块可重用的代码来读取一个张量的形状,然后使用生成的对象来定义其他张量的形状。我可以选择用tf.shape(tensor)读取张量的动态形状,或者用tensor.get_shape()读取张量的静态形状。玩具示例看起来像这样(使用两种不同的策略):

def my_function_strategy_1(x, y):
    x_shape = tf.shape(x)
    a = tf.reshape(y, x_shape)
    b = tf.zeros(x_shape)
    num_x_values = x_shape[0]
    c = tf.reshape(y, [num_x_values, 4])
    d = tf.zeros([num_x_values, 4])
    return a, b, c, d

def my_function_strategy_2(x, y):
    x_shape = x.get_shape()
    a = tf.reshape(y, x_shape)
    b = tf.zeros(x_shape)
    num_x_values = x_shape[0]
    c = tf.reshape(y, [num_x_values, 4])
    d = tf.zeros([num_x_values, 4])
    return a, b, c, d

我想在不同的图表中使用这一块代码。有时输入张量的形状将是已知的,有时它们将是未知的:

graph_A = tf.Graph()
with graph_A.as_default():
    x = tf.placeholder(tf.float32, [2, 4])
    y = tf.placeholder(tf.float32, [8])
    a, b, c, d = my_function(x, y)

with graph_B.as_default():
    x = tf.placeholder(tf.float32)
    y = tf.placeholder(tf.float32)
    a, b, c, d = my_function(x, y)

我想要的行为是:(A)当输入张量的形状已知时(如在graph_A中),我希望TensorFlow在图形创建时计算图形中的所有形状(因此它可以有效地分配资源等。 ),和(B)当输入张量的形状未知时(如在graph_B中),我希望TensorFlow等到运行时计算图形中的所有形状。

strategy_1版本的功能几乎可以做到这一点。它实现了(B),但它并没有达到(A),因为TensorFlow留下了一些未知的张量形状。例如,在上面的玩具示例中,abc的形状在图形创建时计算,但d的形状未知(即使d使用非常类似的操作)。您可以通过打印a.get_shape()b.get_shape()等来检查这一点。

相反,函数的strategy_2版本实现了图中所有张量的(A),但没有达到(B),因为TensorFlow(可以理解)在尝试使用输入张量的(未知)静态形状时抛出异常塑造其他张量。

有没有办法在一个函数中实现(A)和(B)? strategy_1版本如何/为什么适用于图表中的大多数张量,但不是全部?

python tensorflow
1个回答
2
投票

你可以仔细挑选你知道具有“两全其美”结果的形状元素:

def my_get_shape(tensor):
    if tensor.shape.ndims is None:
        # Fully dynamic
        return tf.shape(tensor)
    if tensor.shape.is_fully_defined():
        # Fully static
        return tensor.shape
    # Partially static
    dyn_shape = tf.shape(tensor)
    shape = []
    for i, d in enumerate(tensor.shape):
        shape.append(d.value if d.value is not None else dyn_shape[i])
    return shape

def my_function(x, y):
    x_shape = my_get_shape(x)  # Or just tf.shape(x)! - see edit
    a = tf.reshape(y, x_shape)
    b = tf.zeros(x_shape)
    num_x_values = x_shape[0]
    c = tf.reshape(y, [num_x_values, 4])
    d = tf.zeros([num_x_values, 4])
    return a, b, c, d

# Fully static
with tf.Graph().as_default():
    x = tf.placeholder(tf.float32, [2, 4])
    y = tf.placeholder(tf.float32, [8])
    a, b, c, d = my_function(x, y)
print('a:', a.shape, ', b:', b.shape, ', c:', c.shape, ', d:', d.shape)
# a: (2, 4) , b: (2, 4) , c: (2, 4) , d: (2, 4)

# Fully dynamic
with tf.Graph().as_default():
    x = tf.placeholder(tf.float32)
    y = tf.placeholder(tf.float32)
    a, b, c, d = my_function(x, y)
print('a:', a.shape, ', b:', b.shape, ', c:', c.shape, ', d:', d.shape)
# a: <unknown> , b: <unknown> , c: (?, 4) , d: (?, 4)

# Partially static
with tf.Graph().as_default():
    x = tf.placeholder(tf.float32, [None, 4])
    y = tf.placeholder(tf.float32)
    a, b, c, d = my_function(x, y)
print('a:', a.shape, ', b:', b.shape, ', c:', c.shape, ', d:', d.shape)
# a: (?, 4) , b: (?, 4) , c: (?, 4) , d: (?, 4)

编辑:

实际上,在之前的片段中用my_get_shape替换tf.shape的工作方式非常相似。似乎tf.shape应该是默认值(小心不要用它填充图形),除非你明确想要保持尺寸未定义。

我已经调查了一下,我无法完全解决所有问题。我不知道这是否有用,但这里有一些我发现的东西。显然TensorFlow在C ++级别(以前似乎曾经在Python中,但现在不再是),“形状推断”机制。例如,如果您查看tensorflow/core/ops/array_ops.cc),您将看到每个操作声明在末尾都包含一个.SetShapeFn,这是一个使用InferenceContext来尝试猜测操作的输出形状的函数。此类可以检查张量中的值是否已知,例如对于给定张量为静态时的tf.shape或具有已知值的tf.fill(和tf.ones相关)。形状推理算法的分辨率是在Python中设置为张量形状的,它可以通过call_cpp_shape_fn直接调用(虽然我看不出它是如何有用的):

from tensorflow.python.framework.common_shapes import call_cpp_shape_fn
with tf.Graph().as_default():
    print(call_cpp_shape_fn(tf.reshape(tf.placeholder(tf.float32), tf.fill([2], 3)).op))
    # Shows this:
    # {
    #   'shapes': [dim { size: 3 } dim { size: 3 }],
    #   'handle_data': [None],
    #   'inputs_needed': b'\x12\x01\x01'
    # }
    print(call_cpp_shape_fn(tf.reshape(tf.placeholder(tf.float32), (2 * tf.fill([2], 3))).op))
    # Shows this:
    # {
    #   'shapes': [dim { size: -1 } dim { size: -1 }],
    #   'handle_data': [None],
    #   'inputs_needed': b'\x12\x01\x01'
    # }

你可以看到,当tf.fill([2], 3)被正确检查时,TensorFlow没有得出2 * tf.fill([2], 3)[6, 6],大概是因为静态跟踪乘法操作,即使操作数是已知的常数,也被认为太贵了。

我没有发现的是ops声明他们的值可以静态知道,或者这些值的确切位置/方式。例如,对于tf.shape,它似乎能够专门选择已知值并将其余值保留为未定义。

© www.soinside.com 2019 - 2024. All rights reserved.