gpt4 book ai didi

python - 如何在 Keras 2.0 中使用 "Merge"顺序模型?

转载 作者:太空狗 更新时间:2023-10-29 21:21:45 25 4
gpt4 key购买 nike

我正在尝试使用以下行在 Keras 2.0 中合并两个顺序模型:

merged_model.add(Merge([model1, model2], mode='concat'))

这仍然可以正常工作,但会发出警告:

"The `Merge` layer is deprecated and will be removed after 08/2017. Use
instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc."

但是,研究 Keras 文档并尝试添加 Add() 并没有产生有效的结果。我已经阅读了几篇有同样问题的人的帖子,但没有找到适用于我下面案例的解决方案。有什么建议吗?

model = Sequential()
model1 = Sequential()
model1.add(Dense(300, input_dim=40, activation='relu', name='layer_1'))
model2 = Sequential()
model2.add(Dense(300, input_dim=40, activation='relu', name='layer_2'))
merged_model = Sequential()

merged_model.add(Merge([model1, model2], mode='concat'))

merged_model.add(Dense(1, activation='softmax', name='output_layer'))
merged_model.compile(loss='binary_crossentropy', optimizer='adam',
metrics=['accuracy'])

checkpoint = ModelCheckpoint('weights.h5', monitor='val_acc',
save_best_only=True, verbose=2)
early_stopping = EarlyStopping(monitor="val_loss", patience=5)

merged_model.fit([x1, x2], y=y, batch_size=384, epochs=200,
verbose=1, validation_split=0.1, shuffle=True,
callbacks=[early_stopping, checkpoint])

编辑:当我尝试时(如以下 Kent Sommer 所建议的):

from keras.layers.merge import concatenate
merged_model.add(concatenate([model1, model2]))

这是错误信息:

Traceback (most recent call last):
File "/anaconda/lib/python3.6/site- packages/keras/engine/topology.py", line 425,
in assert_input_compatibility
K.is_keras_tensor(x)
File "/anaconda/lib/python3.6/site-
packages/keras/backend/tensorflow_backend.py", line 403, in is_keras_tensor
raise ValueError('Unexpectedly found an instance of type `' +
str(type(x)) + '`. '
ValueError: Unexpectedly found an instance of type
`<class'keras.models.Sequential'>`. Expected a symbolic tensor instance.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "quoradeeptest_simple1.py", line 78, in <module>
merged_model.add(concatenate([model1, model2]))
File "/anaconda/lib/python3.6/site-packages/keras/layers/merge.py",
line 600, in concatenate return Concatenate(axis=axis, **kwargs)(inputs)
File "/anaconda/lib/python3.6/site- packages/keras/engine/topology.py",
line 558, in __call__self.assert_input_compatibility(inputs)
File "/anaconda/lib/python3.6/site-packages/keras/engine/topology.py", line 431,
in assert_input_compatibility str(inputs) + '.All inputs to the layer '
ValueError: Layer concatenate_1 was called with an input that isn't a
symbolic tensor. Received type: <class 'keras.models.Sequential'>.
Full input: [<keras.models.Sequential object at 0x140fa7ba8>,
<keras.models.Sequential object at 0x140fabdd8>]. All inputs to the
layer should be tensors.

最佳答案

该警告的意思是,不同的模式现在已拆分为它们自己的单独层,而不是使用具有特定模式的合并层。

所以 Merge(mode='concat') 现在是 concatenate(axis=-1)

但是,由于您要合并模型而不是图层,因此这对您的情况不起作用。您需要做的是使用功能模型,因为基本的顺序模型类型不再支持此行为。

在您的情况下,这意味着代码应更改为以下内容:

from keras.layers.merge import concatenate
from keras.models import Model, Sequential
from keras.layers import Dense, Input

model1_in = Input(shape=(27, 27, 1))
model1_out = Dense(300, input_dim=40, activation='relu', name='layer_1')(model1_in)
model1 = Model(model1_in, model1_out)

model2_in = Input(shape=(27, 27, 1))
model2_out = Dense(300, input_dim=40, activation='relu', name='layer_2')(model2_in)
model2 = Model(model2_in, model2_out)


concatenated = concatenate([model1_out, model2_out])
out = Dense(1, activation='softmax', name='output_layer')(concatenated)

merged_model = Model([model1_in, model2_in], out)
merged_model.compile(loss='binary_crossentropy', optimizer='adam',
metrics=['accuracy'])

checkpoint = ModelCheckpoint('weights.h5', monitor='val_acc',
save_best_only=True, verbose=2)
early_stopping = EarlyStopping(monitor="val_loss", patience=5)

merged_model.fit([x1, x2], y=y, batch_size=384, epochs=200,
verbose=1, validation_split=0.1, shuffle=True,
callbacks=[early_stopping, checkpoint])

关于python - 如何在 Keras 2.0 中使用 "Merge"顺序模型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46397258/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com