Skip to content

Commit

Permalink
Increased window size in test_cbow_hs_online
Browse files Browse the repository at this point in the history
  • Loading branch information
anmolgulati committed Nov 11, 2016
1 parent 9e99459 commit f6adac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gensim/test/test_word2vec.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def test_sg_neg_online(self):

def test_cbow_hs_online(self):
"""Test CBOW w/ hierarchical softmax"""
model = word2vec.Word2Vec(sg=0, cbow_mean=1, alpha=0.05, window=3, hs=1, negative=0,
model = word2vec.Word2Vec(sg=0, cbow_mean=1, alpha=0.05, window=5, hs=1, negative=0,
min_count=3, iter=10, seed=42, workers=2)
self.onlineSanity(model)

Expand Down

0 comments on commit f6adac5

Please sign in to comment.