From 4f68132cc9c62860bd3368e559e430961c872636 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Simon?= Date: Mon, 18 May 2015 18:57:08 -0400 Subject: Use os.path.join and close files --- config/dest_simple_mlp_tgtcls_0_cs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'config/dest_simple_mlp_tgtcls_0_cs.py') diff --git a/config/dest_simple_mlp_tgtcls_0_cs.py b/config/dest_simple_mlp_tgtcls_0_cs.py index f5b9a1e..cd62926 100644 --- a/config/dest_simple_mlp_tgtcls_0_cs.py +++ b/config/dest_simple_mlp_tgtcls_0_cs.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), -- cgit v1.2.3