summaryrefslogtreecommitdiffstats
path: root/experiments/process.py
diff options
context:
space:
mode:
Diffstat (limited to 'experiments/process.py')
-rw-r--r--experiments/process.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/experiments/process.py b/experiments/process.py
index a538545..a9e0463 100644
--- a/experiments/process.py
+++ b/experiments/process.py
@@ -13,10 +13,10 @@ if __name__ == "__main__":
sys.exit("usage: {0} <file>".format(sys.argv[0]))
root_victims, victims, non_victims, age = load(open(sys.argv[1]))
- alphas = np.arange(1e-3, 5e-1, 1e-2) # parameter of the time component
- # alphas = np.logspace(-4,0,num=20)
- deltas = np.arange(0.01, 0.99, 0.05) # parameter of the structural component
- # deltas = np.logspace(-3,-0.001,num=20)
+ # alphas = np.arange(1e-3, 1e-2, 8e-4) # parameter of the time component
+ alphas = np.logspace(-4,-.8,num=20)
+ # deltas = np.arange(0.001, 0.3, 0.008) # parameter of the structural component
+ deltas = np.logspace(-2,-.0001,num=20)
with open("out.log", "w") as fh:
for alpha, delta in product(alphas, deltas):
beta, roots, ll = ml3(root_victims, victims, non_victims, age, alpha, delta)