-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json
More file actions
68 lines (65 loc) · 1.85 KB
/
Copy pathconfig.json
File metadata and controls
68 lines (65 loc) · 1.85 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
{
"calibration_settings":{
"N_mcmc": 10000,
"burn_in": 1000,
"mh_scale_delta_prior": 0.5,
"theta_initialization":"fixed",
"posterior_predictive_samples": 200,
"allow_singular_covariance": true
},
"input_settings":{
"input_delimiter": "\t",
"input_header": true,
"input_observations_path": "./observationData/",
"input_model_path": "./modelData/"
},
"label_settings":{
"custom_labels": true,
"theta_labels":{
"theta1": "\theta_1",
"theta2": "\theta_2"
},
"kappa_labels":{
"kappa1": "kappa_1",
"kappa2": "kappa_2"
},
"observation_labels":{
"obs1": "y"
},
"application_domain_labels":{
"domain1": "x"
}
},
"cross_validation_settings":{
"conduct_cross_validation": true,
"known_theta_form": "constant",
"known_theta_form_params": {
"constant": {
"values": [1.5,1.75]
},
"trig_funct": {
"functions": ["sin", "cos"]
}
}
},
"output_settings":{
"figures_path": "figures/",
"figure_options":{
"data_priors": true,
"radar_plot": true,
"radar_animation": true,
"posterior_predict_normalized": true,
"posterior_predict_physical": true,
"delta_posterior_normalized": true,
"delta_posterior_physical": true,
"acceptance_trajectory": true,
"step_size_plot": true
},
"results_options":{
"results_path": "results/",
"save_calibrated_parameters": true,
"save_model_csv": true,
"save_model_json": true
}
}
}