This is my code below and the error I have is beneath it but I cant figure out why this is happening. Please share your thoughts
from gensim.models import word2vec
np.set_printoptions(suppress=True)
feature_size = 150
context_size= 2
min_word = 1
word_vec= word2vec.Word2Vec(tokenized, size=feature_size, \
window=context_size, min_count=min_word, \
iter=50, seed=42)
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-59-dbe3a4fa3884> in <module>
5 context_size= 2
6 min_word = 1
----> 7 word_vec= word2vec.Word2Vec(tokenized, size=feature_size, \
8 window=context_size, min_count=min_word, \
9 iter=50, seed=42)
TypeError: __init__() got an unexpected keyword argument 'size'
You should downgrade to gensim version 3.8