Mercurial > pylearn
view embeddings/parameters.py @ 499:a419edf4e06c
removed unpicklable nested classes in logistic regression
author | James Bergstra <bergstrj@iro.umontreal.ca> |
---|---|
date | Tue, 28 Oct 2008 12:57:49 -0400 |
parents | 3daabc7f94ff |
children | 919125098a3b |
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"