view pylearn/datasets/embeddings/parameters.py @ 1492:e7c4d031d333

Fix for Windows paths
author Olivier Delalleau <delallea@iro>
date Tue, 16 Aug 2011 15:44:01 -0400
parents d90971353e22
children
line wrap: on
line source

"""
Locations of the embedding data files.
"""
WEIGHTSFILE     = "/data/lisa/data/word_embeddings.collobert-and-weston/lm-weights.txt"
VOCABFILE       = "/data/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"