We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I just tryied to fit Node2Vec object and got error
129 # Train gensim word2vec model on random walks 130 self.model = gensim.models.Word2Vec( 131 sentences=self.walks, 132 size=self.n_components,
I found out some advise that curretly to use word2vec from gensim parametr must be named vector_size instead of size
https://stackoverflow.com/questions/53195906/getting-init-got-an-unexpected-keyword-argument-document-this-error-in
The text was updated successfully, but these errors were encountered:
You could try to reinstall the previous version of gensim and the it solved my problem: $ pip install gensim==3.6
$ pip install gensim==3.6
Sorry, something went wrong.
No branches or pull requests
Hello,
I just tryied to fit Node2Vec object and got error
I found out some advise that curretly to use word2vec from gensim parametr must be named vector_size instead of size
https://stackoverflow.com/questions/53195906/getting-init-got-an-unexpected-keyword-argument-document-this-error-in
The text was updated successfully, but these errors were encountered: