谁能告诉我Gensim使用的模型(skipgram / CBOW)?

时间:2017-04-02 17:55:29

标签: python nlp semantics gensim word2vec

word2vec使用任一模型进行单词的分布式表示。我正在检查gensim的代码,但没有定义gensim使用的模型。

1 个答案:

答案 0 :(得分:1)

From the gensim documentation:

  

sg定义了训练算法。默认情况下(sg=0),使用CBOW。否则(sg=1),使用skip-gram。