how to preserve number of records in word2vec?
问题 I have 45000 text records in my dataframe. I wanted to convert those 45000 records into word vectors so that I can train a classifier on the word vector. I am not tokenizing the sentences. I just split the each entry into list of words. After training word2vec model with 300 features, the shape of the model resulted in only 26000. How can I preserve all of my 45000 records ? In the classifier model, I need all of those 45000 records, so that it can match 45000 output labels. 回答1: If you are