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

can anyone tell me about the model (skipgram/ CBOW ) used by Gensim?

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

From the gensim documentation:

sg defines the training algorithm. By default (sg=0), CBOW is used. Otherwise (sg=1), skip-gram is employed.