File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ def run_example(
205
205
"""
206
206
Set up and run multiple simulations
207
207
"""
208
- n_realisations = 1
208
+ n_realisations = 100
209
209
ln_evidence_inv_summary = np .zeros ((n_realisations , 5 ))
210
210
for i_realisation in range (n_realisations ):
211
211
if n_realisations > 1 :
@@ -453,7 +453,7 @@ def run_example(
453
453
if n_realisations > 1 :
454
454
save_name = (
455
455
save_name_start
456
- + "_rosenbrock_evidence_inv_T "
456
+ + "_rosenbrock_evidence_log_inv_T "
457
457
+ str (temperature )
458
458
+ "_realisations.dat"
459
459
)
@@ -464,8 +464,8 @@ def run_example(
464
464
465
465
if ndim == 2 :
466
466
evidence_inv_analytic_summary = np .zeros (1 )
467
- evidence_inv_analytic_summary [0 ] = 1.0 / evidence_numerical_integration
468
- save_name = save_name_start + "_rosenbrock_evidence_inv " + "_analytic.dat"
467
+ evidence_inv_analytic_summary [0 ] = - np . log ( evidence_numerical_integration )
468
+ save_name = save_name_start + "_rosenbrock_evidence_log_inv " + "_analytic.dat"
469
469
np .savetxt (
470
470
save_name ,
471
471
evidence_inv_analytic_summary ,
You can’t perform that action at this time.
0 commit comments