我正在尝试通过此代码对推文分类任务进行自我关注
model = Sequential()
model.add(Embedding(vocab_size, embedding_size, weights=[embedding_matrix], input_length=max_length, trainable=False))
model.add(SeqSelfAttention(attention_activation='softmax'))
model.add(Dense(2,activation="softmax"))
最后一层(密集)返回的输出形状是(None,100,2),但是我希望它是(None,2)。
PS。我不想在自我关注部分上方添加新的RNN层。我知道这是解决方案