Mercurial > pylearn
annotate sandbox/embeddings/parameters.py @ 462:7554bc99096a
Removed import of nnet_ops since it is now deprecated
author | Olivier Delalleau <delallea@iro> |
---|---|
date | Fri, 10 Oct 2008 10:43:43 -0400 |
parents | 1243716ade6a |
children | 8df9179b3239 |
rev | line source |
---|---|
458
ed6b0b3be8d2
Polished embeddings module
Joseph Turian <turian@iro.umontreal.ca>
parents:
diff
changeset
|
1 """ |
ed6b0b3be8d2
Polished embeddings module
Joseph Turian <turian@iro.umontreal.ca>
parents:
diff
changeset
|
2 Locations of the embedding data files. |
ed6b0b3be8d2
Polished embeddings module
Joseph Turian <turian@iro.umontreal.ca>
parents:
diff
changeset
|
3 """ |
ed6b0b3be8d2
Polished embeddings module
Joseph Turian <turian@iro.umontreal.ca>
parents:
diff
changeset
|
4 WEIGHTSFILE = "/u/turian/data/word_embeddings.collobert-and-weston/lm-weights.txt" |
ed6b0b3be8d2
Polished embeddings module
Joseph Turian <turian@iro.umontreal.ca>
parents:
diff
changeset
|
5 VOCABFILE = "/u/turian/data/word_embeddings.collobert-and-weston/words.asc" |
ed6b0b3be8d2
Polished embeddings module
Joseph Turian <turian@iro.umontreal.ca>
parents:
diff
changeset
|
6 NUMBER_OF_WORDS = 30000 |
ed6b0b3be8d2
Polished embeddings module
Joseph Turian <turian@iro.umontreal.ca>
parents:
diff
changeset
|
7 DIMENSIONS = 50 |
459
f400f62e7f9e
Fixed embedding preprocessing
Joseph Turian <turian@iro.umontreal.ca>
parents:
458
diff
changeset
|
8 UNKNOWN = "UNKNOWN" |