param-sweep: cadillac pt. 1
This commit is contained in:
parent
9201f9f20e
commit
2bb378fbf2
|
|
@ -8,7 +8,7 @@ from SimCAD.configuration.utils.behaviorAggregation import dict_elemwise_sum
|
||||||
|
|
||||||
# class ParameterSeep:
|
# class ParameterSeep:
|
||||||
|
|
||||||
class Configuration:
|
class Configuration(object):
|
||||||
def __init__(self, sim_config=None, state_dict=None, seed=None, env_processes=None,
|
def __init__(self, sim_config=None, state_dict=None, seed=None, env_processes=None,
|
||||||
exogenous_states=None, mechanisms=None, behavior_ops=[foldr(dict_elemwise_sum())]):
|
exogenous_states=None, mechanisms=None, behavior_ops=[foldr(dict_elemwise_sum())]):
|
||||||
self.sim_config = sim_config
|
self.sim_config = sim_config
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,11 @@
|
||||||
from datetime import datetime, timedelta
|
from datetime import datetime, timedelta
|
||||||
from decimal import Decimal
|
from decimal import Decimal
|
||||||
|
from copy import deepcopy
|
||||||
from fn.func import curried
|
from fn.func import curried
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
from pathos.threading import ThreadPool
|
from pathos.threading import ThreadPool
|
||||||
|
|
||||||
from SimCAD.utils import groupByKey
|
from SimCAD.utils import groupByKey, dict_filter, contains_type
|
||||||
|
|
||||||
class TensorFieldReport:
|
class TensorFieldReport:
|
||||||
def __init__(self, config_proc):
|
def __init__(self, config_proc):
|
||||||
|
|
@ -75,3 +76,54 @@ def exo_update_per_ts(ep):
|
||||||
else:
|
else:
|
||||||
return (y, s[y])
|
return (y, s[y])
|
||||||
return {es: ep_decorator(f, es) for es, f in ep.items()}
|
return {es: ep_decorator(f, es) for es, f in ep.items()}
|
||||||
|
|
||||||
|
|
||||||
|
def mech_sweep_filter(mech_field, mechanisms):
|
||||||
|
mech_dict = dict([(k, v[mech_field]) for k, v in mechanisms.items()])
|
||||||
|
return dict([
|
||||||
|
(k, dict_filter(v, lambda v: isinstance(v, list))) for k, v in mech_dict.items()
|
||||||
|
if contains_type(list(v.values()), list)
|
||||||
|
])
|
||||||
|
|
||||||
|
|
||||||
|
def state_sweep_filter(raw_exogenous_states):
|
||||||
|
return dict([(k, v) for k, v in raw_exogenous_states.items() if isinstance(v, list)])
|
||||||
|
|
||||||
|
@curried
|
||||||
|
def sweep_mechs(_type, in_config):
|
||||||
|
configs = []
|
||||||
|
filtered_mech_states = mech_sweep_filter(_type, in_config.mechanisms)
|
||||||
|
if len(filtered_mech_states) > 0:
|
||||||
|
for mech, state_dict in filtered_mech_states.items():
|
||||||
|
for state, state_funcs in state_dict.items():
|
||||||
|
for f in state_funcs:
|
||||||
|
config = deepcopy(in_config)
|
||||||
|
config.mechanisms[mech][_type][state] = f
|
||||||
|
configs.append(config)
|
||||||
|
del config
|
||||||
|
else:
|
||||||
|
configs = [in_config]
|
||||||
|
|
||||||
|
return configs
|
||||||
|
|
||||||
|
|
||||||
|
@curried
|
||||||
|
def sweep_states(state_type, states, in_config):
|
||||||
|
configs = []
|
||||||
|
filtered_states = state_sweep_filter(states)
|
||||||
|
if len(filtered_states) > 0:
|
||||||
|
for state, state_funcs in filtered_states.items():
|
||||||
|
for f in state_funcs:
|
||||||
|
config = deepcopy(in_config)
|
||||||
|
exploded_states = deepcopy(states)
|
||||||
|
exploded_states[state] = f
|
||||||
|
if state_type == 'exogenous':
|
||||||
|
config.exogenous_states = exploded_states
|
||||||
|
elif state_type == 'environmental':
|
||||||
|
config.env_processes = exploded_states
|
||||||
|
configs.append(config)
|
||||||
|
del config, exploded_states
|
||||||
|
else:
|
||||||
|
configs = [in_config]
|
||||||
|
|
||||||
|
return configs
|
||||||
|
|
@ -50,21 +50,6 @@ def drop_right(l, n):
|
||||||
return l[:len(l)-n]
|
return l[:len(l)-n]
|
||||||
|
|
||||||
|
|
||||||
def mech_sweep_filter(mechanisms):
|
|
||||||
mech_states_dict = dict([(k, v['states']) for k, v in mechanisms.items()])
|
|
||||||
return dict([
|
|
||||||
(k, dict_filter(v, lambda v: isinstance(v, list))) for k, v in mech_states_dict.items()
|
|
||||||
if contains_type(list(v.values()), list)
|
|
||||||
])
|
|
||||||
|
|
||||||
|
|
||||||
def state_sweep_filter(raw_exogenous_states):
|
|
||||||
return dict([(k, v) for k, v in raw_exogenous_states.items() if isinstance(v, list)])
|
|
||||||
|
|
||||||
# def flatmap(f, items):
|
|
||||||
# return list(map(f, items))
|
|
||||||
|
|
||||||
|
|
||||||
def key_filter(l, keyname):
|
def key_filter(l, keyname):
|
||||||
return [v[keyname] for k, v in l.items()]
|
return [v[keyname] for k, v in l.items()]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,16 +3,17 @@ import numpy as np
|
||||||
from datetime import timedelta
|
from datetime import timedelta
|
||||||
from fn.func import curried
|
from fn.func import curried
|
||||||
import pprint
|
import pprint
|
||||||
from copy import deepcopy
|
|
||||||
from SimCAD import configs
|
from SimCAD import configs
|
||||||
from SimCAD.utils import flatMap, mech_sweep_filter, state_sweep_filter
|
from SimCAD.utils import flatMap
|
||||||
from SimCAD.configuration import Configuration
|
from SimCAD.configuration import Configuration
|
||||||
from SimCAD.configuration.utils import state_update, exo_update_per_ts, proc_trigger, bound_norm_random, \
|
from SimCAD.configuration.utils import exo_update_per_ts, proc_trigger, bound_norm_random, \
|
||||||
ep_time_step
|
ep_time_step, sweep_states, sweep_mechs
|
||||||
from SimCAD.engine.utils import sweep
|
from SimCAD.engine.utils import sweep
|
||||||
|
|
||||||
pp = pprint.PrettyPrinter(indent=4)
|
pp = pprint.PrettyPrinter(indent=4)
|
||||||
|
|
||||||
|
beta =[Decimal(1), Decimal(2)]
|
||||||
|
|
||||||
seed = {
|
seed = {
|
||||||
'z': np.random.RandomState(1),
|
'z': np.random.RandomState(1),
|
||||||
'a': np.random.RandomState(2),
|
'a': np.random.RandomState(2),
|
||||||
|
|
@ -27,8 +28,11 @@ def b1m1(step, sL, s):
|
||||||
def b2m1(step, sL, s):
|
def b2m1(step, sL, s):
|
||||||
return {'param2': 4}
|
return {'param2': 4}
|
||||||
|
|
||||||
def b1m2(step, sL, s):
|
|
||||||
return {'param1': 'a', 'param2': 2}
|
@curried
|
||||||
|
def b1m2(param, step, sL, s):
|
||||||
|
return {'param1': 'a', 'param2': param}
|
||||||
|
|
||||||
def b2m2(step, sL, s):
|
def b2m2(step, sL, s):
|
||||||
return {'param1': 'b', 'param2': 4}
|
return {'param1': 'b', 'param2': 4}
|
||||||
|
|
||||||
|
|
@ -52,7 +56,6 @@ def s1m1(step, sL, s, _input):
|
||||||
# x = _input['param2'] + param
|
# x = _input['param2'] + param
|
||||||
# return (y, x)
|
# return (y, x)
|
||||||
|
|
||||||
s2m1_params =[Decimal(11.0), Decimal(22.0)]
|
|
||||||
@curried
|
@curried
|
||||||
def s2m1(param, step, sL, s, _input):
|
def s2m1(param, step, sL, s, _input):
|
||||||
y = 's2'
|
y = 's2'
|
||||||
|
|
@ -95,7 +98,7 @@ proc_one_coef_B = 1.3
|
||||||
# )
|
# )
|
||||||
# )
|
# )
|
||||||
|
|
||||||
es3p1_params =[Decimal(11.0), Decimal(22.0)]
|
|
||||||
@curried
|
@curried
|
||||||
def es3p1(param, step, sL, s, _input):
|
def es3p1(param, step, sL, s, _input):
|
||||||
y = 's3'
|
y = 's3'
|
||||||
|
|
@ -116,7 +119,6 @@ def es5p2(step, sL, s, _input):
|
||||||
|
|
||||||
|
|
||||||
# Environment States
|
# Environment States
|
||||||
env_a_params = [Decimal(1), Decimal(2)]
|
|
||||||
@curried
|
@curried
|
||||||
def env_a(param, x):
|
def env_a(param, x):
|
||||||
return x + param
|
return x + param
|
||||||
|
|
@ -136,7 +138,7 @@ genesis_states = {
|
||||||
|
|
||||||
# remove `exo_update_per_ts` to update every ts
|
# remove `exo_update_per_ts` to update every ts
|
||||||
raw_exogenous_states = {
|
raw_exogenous_states = {
|
||||||
"s3": sweep(es3p1_params, es3p1),
|
"s3": sweep(beta, es3p1),
|
||||||
"s4": es4p2,
|
"s4": es4p2,
|
||||||
"timestamp": es5p2
|
"timestamp": es5p2
|
||||||
}
|
}
|
||||||
|
|
@ -145,7 +147,7 @@ exogenous_states = exo_update_per_ts(raw_exogenous_states)
|
||||||
# ToDo: make env proc trigger field agnostic
|
# ToDo: make env proc trigger field agnostic
|
||||||
# ToDo: input json into function renaming __name__
|
# ToDo: input json into function renaming __name__
|
||||||
env_processes = {
|
env_processes = {
|
||||||
"s3": sweep(env_a_params, env_a, 'env_a'),
|
"s3": sweep(beta, env_a, 'env_a'),
|
||||||
"s4": proc_trigger('2018-10-01 15:16:25', env_b)
|
"s4": proc_trigger('2018-10-01 15:16:25', env_b)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -169,12 +171,12 @@ mechanisms = {
|
||||||
},
|
},
|
||||||
"states": { # exclude only. TypeError: reduce() of empty sequence with no initial value
|
"states": { # exclude only. TypeError: reduce() of empty sequence with no initial value
|
||||||
"s1": s1m1,
|
"s1": s1m1,
|
||||||
"s2": sweep(s2m1_params, s2m1)
|
"s2": sweep(beta, s2m1)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"m2": {
|
"m2": {
|
||||||
"behaviors": {
|
"behaviors": {
|
||||||
"b1": b1m2,
|
"b1": sweep(beta, b1m2),
|
||||||
"b2": b2m2
|
"b2": b2m2
|
||||||
},
|
},
|
||||||
"states": {
|
"states": {
|
||||||
|
|
@ -211,53 +213,6 @@ sim_config = {
|
||||||
# )
|
# )
|
||||||
|
|
||||||
|
|
||||||
# filtered_exo_states = raw_exo_sweep_filter(raw_exogenous_states)
|
|
||||||
# pp.pprint(filtered_exo_states)
|
|
||||||
# print()
|
|
||||||
|
|
||||||
|
|
||||||
@curried
|
|
||||||
def sweep_mechs(in_config):
|
|
||||||
configs = []
|
|
||||||
filtered_mech_states = mech_sweep_filter(in_config.mechanisms)
|
|
||||||
if len(filtered_mech_states) > 0:
|
|
||||||
for mech, state_dict in filtered_mech_states.items():
|
|
||||||
for state, state_funcs in state_dict.items():
|
|
||||||
for f in state_funcs:
|
|
||||||
config: Configuration = deepcopy(in_config)
|
|
||||||
exploded_mechs = deepcopy(mechanisms)
|
|
||||||
exploded_mechs[mech]['states'][state] = f
|
|
||||||
config.mechanisms = exploded_mechs
|
|
||||||
configs.append(config)
|
|
||||||
del config, exploded_mechs
|
|
||||||
else:
|
|
||||||
configs = [in_config]
|
|
||||||
|
|
||||||
return configs
|
|
||||||
|
|
||||||
|
|
||||||
@curried
|
|
||||||
def sweep_states(state_type, states, in_config):
|
|
||||||
configs = []
|
|
||||||
filtered_states = state_sweep_filter(states)
|
|
||||||
if len(filtered_states) > 0:
|
|
||||||
for state, state_funcs in filtered_states.items():
|
|
||||||
for f in state_funcs:
|
|
||||||
config: Configuration = deepcopy(in_config)
|
|
||||||
exploded_states = deepcopy(states)
|
|
||||||
exploded_states[state] = f
|
|
||||||
if state_type == 'exogenous':
|
|
||||||
config.exogenous_states = exploded_states
|
|
||||||
elif state_type == 'environmental':
|
|
||||||
config.env_processes = exploded_states
|
|
||||||
configs.append(config)
|
|
||||||
del config, exploded_states
|
|
||||||
else:
|
|
||||||
configs = [in_config]
|
|
||||||
|
|
||||||
return configs
|
|
||||||
|
|
||||||
|
|
||||||
c = Configuration(
|
c = Configuration(
|
||||||
sim_config=sim_config,
|
sim_config=sim_config,
|
||||||
state_dict=genesis_states,
|
state_dict=genesis_states,
|
||||||
|
|
@ -270,12 +225,19 @@ c = Configuration(
|
||||||
|
|
||||||
l = flatMap(
|
l = flatMap(
|
||||||
sweep_states('environmental', env_processes),
|
sweep_states('environmental', env_processes),
|
||||||
|
flatMap(
|
||||||
|
sweep_states('exogenous', raw_exogenous_states),
|
||||||
flatMap(
|
flatMap(
|
||||||
sweep_states('exogenous', raw_exogenous_states),
|
sweep_mechs('states'),
|
||||||
sweep_mechs(c)
|
sweep_mechs('behaviors', c)
|
||||||
)
|
)
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
print()
|
||||||
|
print(len(l))
|
||||||
|
print()
|
||||||
for g in l:
|
for g in l:
|
||||||
print()
|
print()
|
||||||
print('Configuration')
|
print('Configuration')
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue