如何在我们的二次输入神经网络中输入我们的价值?

时间:2018-11-30 11:47:22

标签: python input keras neural-network

这是我的神经网络:

My neural network

input_3的输入是与input_4中的浮点值向量关联的图像。

我想要在我的神经网络中输入这两个值(input_3的图像和input_4的矢量)。

我使用Keras库进行编码。我该怎么办?

编辑:

这就是我的想法,并且有效:

with toupdate as (
      select t.*,
             lead(datefrom) over (partition by id order by datefrom) as next_datefrom
      from t
     )
update toupdate
    set dateto = next_datefrom
    where next_datefrom <> dateto or (next_datefrom is null and dateto is null);

1 个答案:

答案 0 :(得分:0)

您可以为每个输入使用一个命名的Input层。

您可以在Keras' getting started guide中的“多输入和多输出模型”下找到示例代码。