Mercurial > pylearn
view embeddings/parameters.py @ 519:b267a8000f92
Added theano.Member to Member variables which were passed in during initialization.
author | Joseph Turian <turian@iro.umontreal.ca> |
---|---|
date | Fri, 14 Nov 2008 02:07:20 -0500 |
parents | 919125098a3b |
children | de974b4fc4ea |
line wrap: on
line source
""" Locations of the embedding data files. """ 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" #WEIGHTSFILE = "/home/joseph/data/word_embeddings.collobert-and-weston/lm-weights.txt" #VOCABFILE = "/home/joseph/data/word_embeddings.collobert-and-weston/words.asc" NUMBER_OF_WORDS = 30000 DIMENSIONS = 50 UNKNOWN = "UNKNOWN"