All Questions
2 questions
2
votes
1
answer
2k
views
Keras : addition layer for embeddings / vectors?
I have 3 word embeddings :
embedding#1 : [w11, w12, w13, w14]
embedding#2 : [w21, w22, w23, w24]
embedding#3 : [w31, w32, w33, w34]
Is there a way to get a fourth embedding by adding all three ...
5
votes
1
answer
5k
views
Keras : How to merge a dense layer and an embedding layer
I use Keras and I try to concatenate two different layers into a vector (first values of the vector would be values of the first layer, and the other part would be the values of the second layer).
One ...