comparison sandbox/rbm/globals.py @ 395:70019965f888

Basic, broken RBM implementation
author Joseph Turian <turian@gmail.com>
date Tue, 08 Jul 2008 20:14:21 -0400
parents sandbox/simple_autoassociator/globals.py@36baeb7125a4
children e0c9357456e0
comparison
equal deleted inserted replaced
394:f2d112dc53be 395:70019965f888
1 """
2 Global variables.
3 """
4
5 #INPUT_DIMENSION = 1000
6 #INPUT_DIMENSION = 100
7 INPUT_DIMENSION = 4
8 HIDDEN_DIMENSION = 10
9 #HIDDEN_DIMENSION = 4
10 LEARNING_RATE = 0.1
11 LR = LEARNING_RATE
12 SEED = 666