Developer87
Developer87

Reputation: 2708

How to download word2vec?

When I'm trying to download Word2vec tool from official google code page, but I got the following:

svn checkout http://word2vec.googlecode.com/svn/trunk/

svn: E170013: Unable to connect to a repository at URL 'http://word2vec.googlecode.com/svn/trunk'

svn: E160013: '/svn/trunk' path not found

Upvotes: 18

Views: 30670

Answers (3)

Nishank Mahore
Nishank Mahore

Reputation: 514

For the Google Pre-trained Model :- GoogleNews-vectors-negative300.bin.gz

For Google Word2vec Original Code:- Link

If you want to make API from your Pre_Trained Model then :- Link

Upvotes: 12

matanox
matanox

Reputation: 13716

You can download the original code from here: https://github.com/tmikolov/word2vec, whereas I am not sure if there had been further updates to it since the time this snapshot was taken to github.

Or use a "further maintained" implementation of the algorithm, there are quite a few out there, in multiple languages.

Upvotes: 10

Lazy Badger
Lazy Badger

Reputation: 97325

GoogleCode is closed now

January 25, 2016 - The project hosting service is closed. You will be able to download a tarball of project source, issues, and wikis.

Upvotes: 1

Related Questions