aboutsummaryrefslogtreecommitdiffstats
path: root/parse_exps.py
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2013-04-30 11:44:37 -0400
committerJonathan Herman <hermanjl@cs.unc.edu>2013-04-30 11:44:37 -0400
commit94cc65997d237ddeab24d396f06bb93bc0644a9d (patch)
treea402620f54785051ec3b96fa24357cad107299b0 /parse_exps.py
parent648d6381cac8376b5217f915eb49e3aea232df26 (diff)
Cleaned up run_exps.py parameters.
Diffstat (limited to 'parse_exps.py')
-rwxr-xr-xparse_exps.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/parse_exps.py b/parse_exps.py
index cc4372a..94c30a4 100755
--- a/parse_exps.py
+++ b/parse_exps.py
@@ -12,7 +12,7 @@ import sys
12import traceback 12import traceback
13 13
14from collections import namedtuple 14from collections import namedtuple
15from config.config import DEFAULTS,PARAMS 15from config.config import FILES,DEFAULTS,PARAMS
16from optparse import OptionParser 16from optparse import OptionParser
17from parse.point import ExpPoint 17from parse.point import ExpPoint
18from parse.tuple_table import TupleTable 18from parse.tuple_table import TupleTable
@@ -85,7 +85,7 @@ def parse_exp(exp_force):
85 85
86 86
87def get_exp_params(data_dir, cm_builder): 87def get_exp_params(data_dir, cm_builder):
88 param_file = "%s/%s" % (data_dir, DEFAULTS['params_file']) 88 param_file = "%s/%s" % (data_dir, FILES['params_file'])
89 if os.path.isfile(param_file): 89 if os.path.isfile(param_file):
90 params = com.load_params(param_file) 90 params = com.load_params(param_file)
91 91