-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathanalyze.py
More file actions
262 lines (235 loc) · 12.4 KB
/
analyze.py
File metadata and controls
262 lines (235 loc) · 12.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
"""
Nested parallel model evaluation for analysis and data export.
Sets of models to evaluate can be specified in one of two ways:
1) A .yaml file can be specified via the param-file-path command line argument. By default, all models specified in the
.yaml file are evaluated. Alternatively, the -k or --model-key argument can be used to specify a list of models to
evaluate.
2) The .hdf5 file containing the history of a nested optimization can be provided via the storage-file-path argument. By
default, just the "best" model from the optimization history will be evaluated. The --specialists argument can be used
to also evaluate the best performing models for each objective defined in the config-file-path .yaml file.
Alternatively, the -k of --model-key argument can be used to specify a list of models, with accepted keys being either
"best" or the name of a specialist. Additional models can also be specified via the -i or --model-id argument, which
refer to the unique integer ids associated with each model stored in the storage-file-path .hdf5 file.
If the export argument is provided, during model evaluation, data is exported to an .hdf5 file, organized by model
labels.
To run, put the directory containing the nested repository into $PYTHONPATH.
From the directory that contains the custom scripts required for model evaluation, execute nested.analyze as a module
as follows:
To use with NEURON's ParallelContext backend with N processes:
mpirun -n N python -m nested.analyze --config-file-path=$PATH_TO_CONFIG_YAML --framework=pc /
--param-file-path=$PATH_TO_PARAM_YAML
To use with ipyparallel:
ipcluster start -n N &
# wait until engines are ready
python -m nested.analyze --config-file-path=$PATH_TO_CONFIG_YAML --framework=ipyp --param-file-path=$PATH_TO_PARAM_YAML
"""
__author__ = 'Aaron D. Milstein, Grace Ng, and Prannath Moolchand'
from nested.optimize_utils import *
from nested.parallel import *
from nested.optimize import evaluate_population
import click, yaml, h5py
from mpi4py import MPI
try:
import mkl
mkl.set_num_threads(1)
except:
pass
context = Context()
@click.command(context_settings=dict(ignore_unknown_options=True, allow_extra_args=True,))
@click.option("--config-file-path", type=click.Path(exists=True, file_okay=True, dir_okay=False), default=None)
@click.option("--sobol", is_flag=True)
@click.option("--storage-file-path", type=str, default=None)
@click.option("--param-file-path", type=str, default=None)
@click.option("-k", "--model-key", type=str, multiple=True)
@click.option("-i", "--model-id", type=int, multiple=True)
@click.option("--export", is_flag=True)
@click.option("--output-dir", type=click.Path(exists=True, file_okay=False, dir_okay=True), default='data')
@click.option("--export-file-path", type=str, default=None)
@click.option("--label", type=str, default=None)
@click.option("--disp", is_flag=True)
@click.option("--check-config", is_flag=True)
@click.option("--interactive", is_flag=True)
@click.option("--plot", is_flag=True)
@click.pass_context
def main(cli, config_file_path, sobol, storage_file_path, param_file_path, model_key, model_id, export,
output_dir, export_file_path, label, disp, check_config, interactive, plot):
"""
:param cli: :class:'click.Context': used to process/pass through unknown click arguments
:param config_file_path: str (path)
:param sobol: bool
:param storage_file_path: str (path)
:param param_file_path: str (path)
:param model_key: list of str
:param model_id: list of int
:param export: bool
:param output_dir: str
:param export_file_path: str
:param label: str
:param disp: bool
:param check_config: bool
:param interactive: bool
:param plot: bool
"""
# requires a global variable context: :class:'Context'
context.update(locals())
kwargs = get_unknown_click_arg_dict(cli.args)
context.interface = get_parallel_interface(source_file=__file__, source_package=__package__, **kwargs)
context.interface.start(disp=disp)
context.interface.ensure_controller()
try:
init_analyze_controller_context(**kwargs)
start_time = time.time()
context.interface.apply(init_worker_contexts, context.sources, context.update_context_funcs,
context.param_names, context.default_params, context.feature_names,
context.objective_names, context.target_val, context.target_range, context.output_dir,
context.disp, optimization_title=context.optimization_title, label=context.label,
plot=context.plot, export_file_path=context.export_file_path, **context.kwargs)
for config_synchronize_func in context.config_synchronize_funcs:
context.interface.synchronize(config_synchronize_func)
if disp:
print('nested.analyze: worker initialization took %.2f s' % (time.time() - start_time))
sys.stdout.flush()
if sobol:
if storage_file_path is None:
raise RuntimeError("Please specify storage-file-path.")
print("Sobol: performing sensitivity analysis...")
sys.stdout.flush()
storage = PopulationStorage(file_path=storage_file_path)
sobol_analysis(config_file_path, storage)
else:
if len(context.model_key) < 1:
param_arrays = [context.x0_array]
model_labels = [['x0']]
export_keys = ['0']
legend = {'model_labels': model_labels[0], 'export_keys': export_keys,
'source': config_file_path}
else:
param_arrays, model_labels, export_keys, legend = \
load_model_params(context.param_names, context.objective_names,
param_file_path=context.param_file_path,
storage_file_path=context.storage_file_path, model_key=context.model_key)
if disp:
print('nested.analyze: evaluating models with the following labels: %s' % model_labels)
sys.stdout.flush()
if check_config:
for param_array in param_arrays:
context.interface.apply(update_source_contexts, param_array)
else:
features, objectives = evaluate_population(context, param_arrays, export_keys, context.export)
if disp:
for i, (params, model_label) in enumerate(zip(param_arrays, model_labels)):
print('nested.analyze: results for model with labels: %s ' % model_label)
try:
this_param_dict = param_array_to_dict(params, context.param_names)
this_features = {key: features[i][key] for key in context.feature_names}
this_objectives = {key: objectives[i][key] for key in context.objective_names}
print('params:')
print_param_dict_like_yaml(this_param_dict)
print('features:')
print_param_dict_like_yaml(this_features)
print('objectives:')
print_param_dict_like_yaml(this_objectives)
except Exception as e:
print('nested.analyze: model with labels: %s failed' % model_label)
sys.stdout.flush()
time.sleep(1.)
if context.plot:
context.interface.apply(plt.show)
if context.export:
merge_exported_data(context, export_file_path=context.export_file_path,
output_dir=context.output_dir, legend=legend, verbose=context.disp)
for shutdown_func in context.shutdown_worker_funcs:
context.interface.apply(shutdown_func)
sys.stdout.flush()
time.sleep(1.)
if not context.interactive:
context.interface.stop()
except Exception as e:
print('nested.analyze: encountered Exception')
traceback.print_exc(file=sys.stdout)
sys.stdout.flush()
time.sleep(1.)
context.interface.stop()
raise e
def load_model_params(param_names, objective_names, param_file_path=None, storage_file_path=None, model_key=None,
verbose=False):
"""
:param param_names: list of str
:param objective_names: list of str
:param param_file_path: str (path)
:param storage_file_path: str (path)
:param model_key: list of str
:param verbose: bool
:return: tuple of lists
"""
if param_file_path is None and storage_file_path is None:
raise RuntimeError('nested.analyze: either a param_file_path or a storage_file_path must be provided to '
'analyze models specified by model_key')
requested_model_labels = list(model_key)
ids_to_labels = defaultdict(list)
labels_to_ids = dict()
ids_to_param_arrays = dict()
ids_to_export_keys = dict()
param_arrays = []
model_labels = []
export_keys = []
legend = {'model_labels': [], 'export_keys': []}
if storage_file_path is not None:
if not os.path.isfile(storage_file_path):
raise Exception('nested.analyze: invalid storage_file_path: %s' % storage_file_path)
legend['source'] = storage_file_path
OptRep = OptimizationReport(file_path=storage_file_path)
if 'all' in requested_model_labels:
requested_model_labels = ['best'] + list(objective_names)
for model_label in requested_model_labels:
if model_label == 'best':
indiv = OptRep.survivors[0]
elif model_label not in objective_names:
raise Exception('nested.analyze: problem finding model_key: %s in storage_file_path: %s' %
(model_label, storage_file_path))
else:
indiv = OptRep.specialists[model_label]
id = indiv.model_id
x = indiv.x
ids_to_labels[id].append(model_label)
labels_to_ids[model_label] = id
ids_to_param_arrays[id] = x
for export_key, id in enumerate(ids_to_labels):
this_export_key = str(export_key)
export_keys.append(this_export_key)
param_arrays.append(ids_to_param_arrays[id])
model_labels.append([model_label for model_label in ids_to_labels[id]])
for model_label in ids_to_labels[id]:
legend['model_labels'].append(model_label)
legend['export_keys'].append(this_export_key)
elif param_file_path is not None:
if not os.path.isfile(param_file_path):
raise Exception('nested.analyze: invalid param_file_path: %s' % param_file_path)
legend['source'] = param_file_path
with open(param_file_path, 'r') as param_data:
param_data_dict = yaml.full_load(param_data)
for export_key, key in enumerate(requested_model_labels):
if str(key) in param_data_dict:
this_param_dict = param_data_dict[str(key)]
elif str(key).isnumeric() and int(key) in param_data_dict:
this_param_dict = param_data_dict[int(key)]
else:
raise RuntimeError('nested.analyze: problem finding model_key: %s in in param_file_path: %s' %
(key, param_file_path))
this_param_names = list(this_param_dict.keys())
uncommon_keys = np.setxor1d(this_param_names, param_names)
if len(uncommon_keys) > 0:
raise KeyError('parameter_dict for model_key: %s loaded from param_file_path: %s does not match the '
'parameter_names specified in the config_file:\n%s' %
(key, param_file_path, str(param_names)))
this_param_array = param_dict_to_array(this_param_dict, param_names)
param_arrays.append(this_param_array)
this_export_key = str(export_key)
export_keys.append(this_export_key)
model_labels.append([key])
legend['model_labels'].append(key)
legend['export_keys'].append(this_export_key)
return param_arrays, model_labels, export_keys, legend
if __name__ == '__main__':
main(args=sys.argv[(list_find(lambda s: s.find(os.path.basename(__file__)) != -1, sys.argv) + 1):],
standalone_mode=False)