diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-04-30 11:44:37 -0400 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-04-30 11:44:37 -0400 |
commit | 94cc65997d237ddeab24d396f06bb93bc0644a9d (patch) | |
tree | a402620f54785051ec3b96fa24357cad107299b0 /parse_exps.py | |
parent | 648d6381cac8376b5217f915eb49e3aea232df26 (diff) |
Cleaned up run_exps.py parameters.
Diffstat (limited to 'parse_exps.py')
-rwxr-xr-x | parse_exps.py | 4 |
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 | |||
12 | import traceback | 12 | import traceback |
13 | 13 | ||
14 | from collections import namedtuple | 14 | from collections import namedtuple |
15 | from config.config import DEFAULTS,PARAMS | 15 | from config.config import FILES,DEFAULTS,PARAMS |
16 | from optparse import OptionParser | 16 | from optparse import OptionParser |
17 | from parse.point import ExpPoint | 17 | from parse.point import ExpPoint |
18 | from parse.tuple_table import TupleTable | 18 | from parse.tuple_table import TupleTable |
@@ -85,7 +85,7 @@ def parse_exp(exp_force): | |||
85 | 85 | ||
86 | 86 | ||
87 | def get_exp_params(data_dir, cm_builder): | 87 | def 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 | ||