forked from tmikolov/word2vec
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
tmikolov
committed
Jul 31, 2013
1 parent
0e3a82a
commit 5a7f38e
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
make clean | ||
make | ||
wget http://mattmahoney.net/dc/text8.zip -O text8.gz | ||
gzip -d text8.gz -f | ||
if [ ! -e text8 ]; then | ||
wget http://mattmahoney.net/dc/text8.zip -O text8.gz | ||
gzip -d text8.gz -f | ||
fi | ||
time ./word2vec -train text8 -output vectors.bin -cbow 1 -size 200 -window 5 -negative 5 -hs 0 -sample 1e-3 -threads 12 -binary 1 | ||
./distance vectors.bin |