Blame view
run_word2vec.sh
900 Bytes
362b552ee
|
1 2 3 4 5 6 7 8 9 10 11 12 |
for size in 100 200 300 do #word2vec/trunk/word2vec -train word2vec.txt -output word2vec_size${size}.bin -size ${size} -window 3 -sample 1e-3 -cbow 0 -negative 6 -hs 0 -binary 0 -threads 40 -min-count 5 -iter 3 #~/appli/wang2vec/word2vec -type 3 -train word2vec.txt -output word2vec_wang2vec_size${size}.bin -size ${size} -window 3 -sample 1e-3 -cbow 0 -negative 6 -hs 0 -binary 0 -threads 40 -min-count 5 -iter 3 -negative-classes negative_classes.sort.txt #~/appli/word2vecf/word2vecf -train word2vecf.txt -wvocab wvocab_size${size} -cvocab cvocab_size${size} -output word2vecf_size${size} -size ${size} -negative 6 -threads 40 -dumpcv dumpcv_size${size} -iters 3 -sample 1e-3 #word2vec/trunk/word2vec -train distant.txt -output word2vec_distant_size${size}.bin -size ${size} -window 3 -sample 1e-3 -cbow 0 -negative 6 -hs 0 -binary 0 -threads 40 -min-count 5 -iter 3 done |