From 72275b5641f0783252328344957bd32b890301c6 Mon Sep 17 00:00:00 2001 From: fujiyuu75 Date: Tue, 23 May 2017 13:53:20 +0900 Subject: [PATCH] Fix a typo of docstring in Doc2Vec class --- gensim/models/doc2vec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gensim/models/doc2vec.py b/gensim/models/doc2vec.py index ace8a721ae..da1f5d01a8 100644 --- a/gensim/models/doc2vec.py +++ b/gensim/models/doc2vec.py @@ -597,7 +597,7 @@ def __init__(self, documents=None, dm_mean=None, `dm_concat` = if 1, use concatenation of context vectors rather than sum/average; default is 0 (off). Note concatenation results in a much-larger model, as the input - is no longer the size of one (sampled or arithmatically combined) word vector, but the + is no longer the size of one (sampled or arithmetically combined) word vector, but the size of the tag(s) and all words in the context strung together. `dm_tag_count` = expected constant number of document tags per document, when using