annotate embeddings/parameters.py @ 479:fbfd3932fd00

typo
author James Bergstra <bergstrj@iro.umontreal.ca>
date Mon, 27 Oct 2008 17:28:48 -0400
parents a07948f780b9
children 3daabc7f94ff
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 """
463
8df9179b3239 Updated file locations
Joseph Turian <turian@iro.umontreal.ca>
parents: 461
diff changeset
4 WEIGHTSFILE = "/home/fringant2/lisa/data/word_embeddings.collobert-and-weston/lm-weights.txt"
8df9179b3239 Updated file locations
Joseph Turian <turian@iro.umontreal.ca>
parents: 461
diff changeset
5 VOCABFILE = "/home/fringant2/lisa/data/word_embeddings.collobert-and-weston/words.asc"
458
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"