gpt4 book ai didi

python - Keras 值错误 : input 0 is incompatible with layer flatten_11

转载 作者:行者123 更新时间:2023-12-01 01:44:48 27 4
gpt4 key购买 nike

尝试按照 https://blog.keras.io/using-pre-trained-word-embeddings-in-a-keras-model.html 上的教程进行操作为了使用预先存在的词嵌入来训练少量训练数据的模型。

我遇到的问题是当我尝试运行 1D Convnet 时,出现错误:

Input 0 is incompatible with layer flatten_11: expected min_ndim=3, found ndim=2

我的张量的维度是:

数据张量的形状:(91, 1000)标签张量的形状:(91, 3)

问题出在这部分代码上:

sequence_input = Input(shape=(MAX_SEQUENCE_LENGTH,), dtype='int32')
embedded_sequences = embedding_layer(sequence_input)
x = Conv1D(128, 5, activation='relu')(embedded_sequences)
x = MaxPooling1D(5)(x)
x = Conv1D(128, 5, activation='relu')(x)
x = MaxPooling1D(5)(x)
x = Conv1D(128, 5, activation='relu')(x)
x = GlobalMaxPooling1D()(x)
x = Flatten()(x)
x = Dense(3, activation='relu')(x)
preds = Dense(len(labels_index), activation='softmax')(x)

model = Model(sequence_input, preds)
model.compile(loss='categorical_crossentropy',
optimizer='rmsprop',
metrics=['acc'])

model.fit(x_train, y_train,
batch_size=128,
epochs=10,
validation_data=(x_val, y_val))

不进行扁平化,会反馈错误:

Error when checking target: expected dense_25 to have shape (33,) but got array with shape (3,)

我正在尝试找出需要更改的位置和内容,以确保尺寸正常工作,但是我还没有弄清楚我到底需要更改什么。任何帮助将不胜感激。

最佳答案

您应该关注没有 Flatten 的错误,因为您已经在使用 1D 卷积,因此不需要 Flatten 来传递到 Dense。

实际的错误是提示虽然目标是 (3,),即你的标签,但你的最终 Dense 层输出 33 个值。所以看起来像 len(labels_index) == 33 而不是数据中的 3。

关于python - Keras 值错误 : input 0 is incompatible with layer flatten_11,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51496802/

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