diff options
author | Étienne Simon <esimon@esimon.eu> | 2015-05-18 18:57:08 -0400 |
---|---|---|
committer | Étienne Simon <esimon@esimon.eu> | 2015-05-18 18:57:08 -0400 |
commit | 4f68132cc9c62860bd3368e559e430961c872636 (patch) | |
tree | 275554a1abcd419d0c477b639dcbd50189d3245d /config/joint_simple_mlp_tgtcls_111_cswdtx_noise_dout.py | |
parent | 6d946f29f7548c75e97f30c4356dbac200ee6cce (diff) | |
download | taxi-4f68132cc9c62860bd3368e559e430961c872636.tar.gz taxi-4f68132cc9c62860bd3368e559e430961c872636.zip |
Use os.path.join and close files
Diffstat (limited to 'config/joint_simple_mlp_tgtcls_111_cswdtx_noise_dout.py')
-rw-r--r-- | config/joint_simple_mlp_tgtcls_111_cswdtx_noise_dout.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/joint_simple_mlp_tgtcls_111_cswdtx_noise_dout.py b/config/joint_simple_mlp_tgtcls_111_cswdtx_noise_dout.py index 1faea15..356c3a5 100644 --- a/config/joint_simple_mlp_tgtcls_111_cswdtx_noise_dout.py +++ b/config/joint_simple_mlp_tgtcls_111_cswdtx_noise_dout.py @@ -1,3 +1,4 @@ +import os import cPickle from blocks import roles @@ -14,7 +15,7 @@ n_end_pts = 5 n_valid = 1000 -with open("%s/arrival-clusters.pkl" % data.path) as f: +with open(os.path.join(data.path, 'arrival-clusters.pkl')) as f: dest_tgtcls = cPickle.load(f) # generate target classes for time prediction as a Fibonacci sequence |