I have two different word embedding pretrained models that I want to combine together so that a missing word from one model can be complimented by the other model (in case the other model has the word that is missing in the first model). But the vectors are of different dimensions in the models. The first model vectors are of 300 dimensions and the second model vectors are of 1000 dimensions.
Can I simply retain the first 300 dimensions and discard the rest (700) in the second model and build one combined model of 300 dimensions?