Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在这个网站上尝试连体神经网络。但我有这样的错误......
我试图调用 con_model 但它仍然给出错误我不太了解siamese 或 keras 或神经网络。我只是在尝试和学习。任何机构都可以帮助我解决此代码吗?
取而代之的是merge,它可能不是从正确的位置导入的,并且可能不再推荐,您可以使用Lambda图层。
merge
Lambda
merged_model = keras.layers.Lambda(l1_distance)([model_output_left, model_output_right])
如果您使用的是 Tensorflow,则Lambda图层不需要输出形状。如果出于某种原因需要输出形状,则需要keras.backend.int_shape(x[0]). x[0]光是颜值不是形状!
keras.backend.int_shape(x[0])
x[0]