I have a question regarding concatenating two doc2vec models. I followed the official gensim IMDB example on doc2vec
and implemented example data.
When concatenating two models (PV-DM + PV-DBOW), as outlined in the original paper, I wondered that the concatenated model appears not to have 200-dim, like the two input models, but 400-dim:
Shape Train(11948, **400**)
Shape Test(2987, **400**)
The input shapes were each:
np.asarray(X_train).shape)
(11948, **200**)
(2987, **200**)
Is this correct? I expected the number of dimensions to be 200 again.