diff options
author | Étienne Simon <esimon@esimon.eu> | 2015-05-05 23:03:13 -0400 |
---|---|---|
committer | Étienne Simon <esimon@esimon.eu> | 2015-05-05 23:03:13 -0400 |
commit | 60aa0d3fdd42d7489cc69acbb54c59d7c249ea34 (patch) | |
tree | 3ef37dab66250972cb226bff2ffb49f716a85915 /config | |
parent | c29a0d3f22134a8d1f5d557b325f6779c5961546 (diff) | |
download | taxi-60aa0d3fdd42d7489cc69acbb54c59d7c249ea34.tar.gz taxi-60aa0d3fdd42d7489cc69acbb54c59d7c249ea34.zip |
Adapt Alexandre's model to the new interface
Diffstat (limited to 'config')
-rw-r--r-- | config/dest_simple_mlp_tgtcls_1_cswdtx_alexandre.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/config/dest_simple_mlp_tgtcls_1_cswdtx_alexandre.py b/config/dest_simple_mlp_tgtcls_1_cswdtx_alexandre.py index 91ad71c..5642f27 100644 --- a/config/dest_simple_mlp_tgtcls_1_cswdtx_alexandre.py +++ b/config/dest_simple_mlp_tgtcls_1_cswdtx_alexandre.py @@ -9,11 +9,11 @@ n_end_pts = 5 n_valid = 1000 -with open(data.DATA_PATH + "/arrival-clusters.pkl") as f: tgtcls = cPickle.load(f) +with open("%s/arrival-clusters.pkl" % data.path) as f: tgtcls = cPickle.load(f) dim_embeddings = [ - ('origin_call', data.n_train_clients+1, 10), - ('origin_stand', data.n_stands+1, 10), + ('origin_call', data.origin_call_train_size, 10), + ('origin_stand', data.stands_size, 10), ('week_of_year', 52, 10), ('day_of_week', 7, 10), ('qhour_of_day', 24 * 4, 10), @@ -28,3 +28,5 @@ dim_output = tgtcls.shape[0] learning_rate = 0.01 momentum = 0.9 batch_size = 200 + +valid_set = 'cuts/test_times_0' |