Hello all,
I have 2 vectors A and B of the same length. Vector A is the input to the classifier and vector B is an n-hot vector where the hot values represent the importance of elements in vector A. Given this scenario, is it a good idea to concat the two vectors row-wise and feed it as input to say a Dense layer?
(or)
shd I stack the vectors one below another and use a 2DConv layer with dimensions (2, vector_length) and then feed it to Dense?
(or)
should I add the two vectors elementwise and feed it to the next layer?
Any suggestions are welcomed