我正在使用 gensim 从文档中提取特征向量。我已经从 Google 下载了预训练模型,GoogleNews-vectors-negative300.bin
并使用以下命令加载了该模型:
model = models.Doc2Vec.load_word2vec_format('GoogleNews-vectors-negative300.bin', binary=True)
我的目的是从文档中获取特征向量。一句话,很容易得到对应的向量:
vector = model[word]
但是,我不知道如何为文档执行此操作。能否请你帮忙?