diff options
author | Alex Auvolat <alex.auvolat@ens.fr> | 2015-05-06 10:12:17 -0400 |
---|---|---|
committer | Alex Auvolat <alex.auvolat@ens.fr> | 2015-05-06 10:12:17 -0400 |
commit | 35b4503ddd148b0c937468891dd0a7e9ff1c79f4 (patch) | |
tree | 92db398bce1f557ca9cb988dcf64a700ad249e47 /config/dest_simple_mlp_tgtcls_1_cswdtx_alexandre.py | |
parent | 60aa0d3fdd42d7489cc69acbb54c59d7c249ea34 (diff) | |
download | taxi-35b4503ddd148b0c937468891dd0a7e9ff1c79f4.tar.gz taxi-35b4503ddd148b0c937468891dd0a7e9ff1c79f4.zip |
Move weights init to config files ; fix s/time/travel_time
Diffstat (limited to 'config/dest_simple_mlp_tgtcls_1_cswdtx_alexandre.py')
-rw-r--r-- | config/dest_simple_mlp_tgtcls_1_cswdtx_alexandre.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/config/dest_simple_mlp_tgtcls_1_cswdtx_alexandre.py b/config/dest_simple_mlp_tgtcls_1_cswdtx_alexandre.py index 5642f27..8c090c7 100644 --- a/config/dest_simple_mlp_tgtcls_1_cswdtx_alexandre.py +++ b/config/dest_simple_mlp_tgtcls_1_cswdtx_alexandre.py @@ -1,8 +1,10 @@ import cPickle +from blocks.initialization import IsotropicGaussian, Constant + import data -import model.dest_simple_mlp_tgtcls_alexandre as model +import model.dest_simple_mlp_tgtcls as model n_begin_end_pts = 5 # how many points we consider at the beginning and end of the known trajectory n_end_pts = 5 @@ -25,6 +27,10 @@ dim_input = n_begin_end_pts * 2 * 2 + sum(x for (_, _, x) in dim_embeddings) dim_hidden = [500] dim_output = tgtcls.shape[0] +embed_weights_init = IsotropicGaussian(0.01) +mlp_weights_init = IsotropicGaussian(0.1) +mlp_biases_init = Constant(0.01) + learning_rate = 0.01 momentum = 0.9 batch_size = 200 |