【问题标题】:Keras layer with int inputs cannot be built无法构建具有 int 输入的 Keras 层
【发布时间】:2019-11-09 04:44:41
【问题描述】:

我有一个复杂的 keras 模型,其中一个层是自定义预训练层,它期望“int32”作为输入。该模型实现为继承自 Model 的类,实现方式如下:

class MyModel(tf.keras.models.Model):

    def __init__(self, size, input_shape):
        super(MyModel, self).__init__()
        self.layer = My_Layer()
        self.build(input_shape)

    def call(self, inputs):
        return self.layer(inputs)

但是当它到达self.build 方法时,它会抛出下一个错误:

ValueError: You cannot build your model by calling `build` if your layers do not support float type inputs. Instead, in order to instantiate and build your model, `call` your model on real tensor data (of the correct dtype).

我该如何解决?

【问题讨论】:

  • 我遇到了同样的错误,你找到解决办法了吗?
  • 不行,我必须重构为函数式风格。
  • 我明白了,我也最终使用了函数式。我还在顺序模型中使用包装器对此进行了测试,并提供了一个输入层并且它工作正常。
  • 有什么更新吗?功能 API 不起作用,因为它给出了不同的错误
  • 可以显示图层类的代码吗?

标签: python class keras


【解决方案1】:

使用model.build构建模型时抛出异常。

model.build 函数根据给定的输入形状构建模型。

引发错误是因为当我们尝试构建模型时,它首先根据以下代码中的输入形状类型调用带有 x 参数的模型

if (isinstance(input_shape, list) and
    all(d is None or isinstance(d, int) for d in input_shape)):
  input_shape = tuple(input_shape)
if isinstance(input_shape, list):
  x = [base_layer_utils.generate_placeholders_from_shape(shape)
        for shape in input_shape]
elif isinstance(input_shape, dict):
  x = {
      k: base_layer_utils.generate_placeholders_from_shape(shape)
      for k, shape in input_shape.items()
  }
else:
  x = base_layer_utils.generate_placeholders_from_shape(input_shape)

x 在这里是一个 TensorFlow 占位符。因此,当尝试以 x 作为输入调用模型时,它会弹出一个 TypeError 并且除块之外的结果将起作用并给出错误。

我假设您的输入形状是 16x16。不使用self.build([(16,16)])this,而是根据真实张量调用模型

inputs = tf.keras.Input(shape=(16,))
self.call(inputs)

【讨论】:

猜你喜欢
  • 2019-09-17
  • 2019-03-28
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2019-01-24
  • 1970-01-01
  • 2017-09-19
相关资源
最近更新 更多