-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.toml
49 lines (43 loc) · 1.63 KB
/
example.toml
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
[components]
model = "die.Die"
time = "pypfilt.Scalar"
sampler = "pypfilt.sampler.LatinHypercube"
summary = "pypfilt.summary.HDF5"
[time]
start = 0
until = 100
steps_per_unit = 1
[filter]
particles = 100
prng_seed = 2001
history_window = -1
resample.threshold = 0.25
regularisation.enabled = true
# NOTE: ensure probabilities are never zero.
regularisation.bounds.p_1 = { min = 1e-3, max = 1 }
regularisation.bounds.p_2 = { min = 1e-3, max = 1 }
regularisation.bounds.p_3 = { min = 1e-3, max = 1 }
regularisation.bounds.p_4 = { min = 1e-3, max = 1 }
regularisation.bounds.p_5 = { min = 1e-3, max = 1 }
regularisation.bounds.p_6 = { min = 1e-3, max = 1 }
[observations.roll]
model = "roll.Roll"
[summary.tables]
model_cints.component = "pypfilt.summary.ModelCIs"
model_cints.credible_intervals = [ 0, 50, 60, 70, 80, 90, 95 ]
[scenario.example]
prior.p_1 = { external = true, table = "prior.ssv", column = "p_1" }
prior.p_2 = { external = true, table = "prior.ssv", column = "p_2" }
prior.p_3 = { external = true, table = "prior.ssv", column = "p_3" }
prior.p_4 = { external = true, table = "prior.ssv", column = "p_4" }
prior.p_5 = { external = true, table = "prior.ssv", column = "p_5" }
prior.p_6 = { external = true, table = "prior.ssv", column = "p_6" }
observations.roll.file = "simulated-rolls.ssv"
[scenario.simulate]
filter.particles = 1
prior.p_1 = { name = "constant", args.value = 0.1 }
prior.p_2 = { name = "constant", args.value = 0.1 }
prior.p_3 = { name = "constant", args.value = 0.1 }
prior.p_4 = { name = "constant", args.value = 0.1 }
prior.p_5 = { name = "constant", args.value = 0.1 }
prior.p_6 = { name = "constant", args.value = 0.5 }