43

我已经使用 Gensim 的文档语料库训练了一个 word2vec 模型。模型训练完成后,我正在编写以下代码来获取单词“view”的原始特征向量。

myModel["view"]

但是,我得到一个单词的 KeyError,这可能是因为它在 word2vec 索引的键列表中不作为键存在。在尝试获取原始特征向量之前,如何检查索引中是否存在键?

4

6 回答 6

43

Word2Vec 还提供了一个“词汇”成员,您可以直接访问它。

使用 pythonistic 方法:

if word in w2v_model.vocab:
    # Do something

编辑自 gensim 2.0 版以来,Word2Vec 的 API 发生了变化。要访问词汇表,您现在应该使用以下命令:

if word in w2v_model.wv.vocab:
    # Do something

编辑 2不推荐使用属性“wv”,并将在 gensim 4.0.0 中完全删除。现在回到OP的原始答案:

if word in w2v_model.vocab:
    # Do something
于 2015-06-29T10:02:48.020 回答
34

将模型转换为向量

word_vectors = model.wv

那么我们可以使用

if 'word' in word_vectors.vocab
于 2017-03-19T12:27:10.083 回答
2

Gensim 4.0.0 中的 vocab 属性已从 KeyedVector 中删除

if 'word' in model.wv.key_to_index:
    # do something

https://github.com/RaRe-Technologies/gensim/wiki/Migrating-from-Gensim-3.x-to-4#4-vocab-dict-became-key_to_index-for-looking-up-a-keys- integer-index-or-get_vecattr-and-set_vecattr-for-other-per-key-attributes

于 2021-11-08T17:58:38.233 回答
1

在这里回答我自己的问题。

Word2Vec 提供了一个名为contains ('view') 的方法,它根据相应的单词是否已被索引来返回 True 或 False。

于 2015-05-18T11:33:11.517 回答
1

我通常使用过滤器:

for doc in labeled_corpus:
    words = filter(lambda x: x in model.vocab, doc.words)

这是在看不见的单词上通过 KeyError 的一种简单方法。

于 2018-03-09T05:23:23.630 回答
0

嘿,我知道这篇文章迟到了,但这里有一段代码可以很好地处理这个问题。我自己在我的代码中使用它,它就像一个魅力:)

   size = 300 #word vector size
   word = 'food' #word token

   try:
        wordVector = model[word].reshape((1, size))
   except KeyError:
        print "not found! ",  word

注意: 我正在为 word2vec 模型使用 python Gensim 库

于 2016-03-21T16:45:04.347 回答