这是我的神经网络:
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);