Mercurial > pylearn
changeset 465:8cde974b6486
merge
author | Joseph Turian <turian@iro.umontreal.ca> |
---|---|
date | Wed, 15 Oct 2008 17:00:35 -0400 |
parents | 121cc6db4481 (diff) 7554bc99096a (current diff) |
children | 23221eefb70e |
files | |
diffstat | 2 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/sandbox/embeddings/parameters.py Fri Oct 10 10:43:43 2008 -0400 +++ b/sandbox/embeddings/parameters.py Wed Oct 15 17:00:35 2008 -0400 @@ -1,8 +1,8 @@ """ Locations of the embedding data files. """ -WEIGHTSFILE = "/u/turian/data/word_embeddings.collobert-and-weston/lm-weights.txt" -VOCABFILE = "/u/turian/data/word_embeddings.collobert-and-weston/words.asc" +WEIGHTSFILE = "/home/fringant2/lisa/data/word_embeddings.collobert-and-weston/lm-weights.txt" +VOCABFILE = "/home/fringant2/lisa/data/word_embeddings.collobert-and-weston/words.asc" NUMBER_OF_WORDS = 30000 DIMENSIONS = 50 UNKNOWN = "UNKNOWN"
--- a/sandbox/embeddings/process.py Fri Oct 10 10:43:43 2008 -0400 +++ b/sandbox/embeddings/process.py Wed Oct 15 17:00:35 2008 -0400 @@ -40,6 +40,7 @@ w = __words[i] __word_to_embedding[w] = l __read = True + sys.stderr.write("...done reading %s\n" % WEIGHTSFILE) import re numberre = re.compile("[0-9]")