Mercurial > pylearn
view 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 |
line wrap: on
line source
""" 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" NUMBER_OF_WORDS = 30000 DIMENSIONS = 50 UNKNOWN = "UNKNOWN"