diff options
Diffstat (limited to 'config/dest_simple_mlp_tgtcls_1_cswdtx_alexandre.py')
-rw-r--r-- | config/dest_simple_mlp_tgtcls_1_cswdtx_alexandre.py | 3 |
1 files changed, 2 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 c0ba36c..1dc26a5 100644 --- a/config/dest_simple_mlp_tgtcls_1_cswdtx_alexandre.py +++ b/config/dest_simple_mlp_tgtcls_1_cswdtx_alexandre.py @@ -1,3 +1,4 @@ +import os import cPickle from blocks.initialization import IsotropicGaussian, Constant @@ -11,7 +12,7 @@ n_end_pts = 5 n_valid = 1000 -with open("%s/arrival-clusters.pkl" % data.path) as f: tgtcls = cPickle.load(f) +with open(os.path.join(data.path, 'arrival-clusters.pkl')) as f: tgtcls = cPickle.load(f) dim_embeddings = [ ('origin_call', data.origin_call_train_size, 10), |