-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAllResultsSimulationExperiment.rtf
More file actions
3096 lines (3065 loc) · 252 KB
/
AllResultsSimulationExperiment.rtf
File metadata and controls
3096 lines (3065 loc) · 252 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{\rtf1\ansi\ansicpg1252\cocoartf2867
\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fnil\fcharset0 Menlo-Regular;\f1\fmodern\fcharset0 Courier;\f2\fnil\fcharset0 HelveticaNeue;
}
{\colortbl;\red255\green255\blue255;\red0\green0\blue0;\red0\green0\blue0;\red103\green107\blue114;
\red19\green20\blue21;}
{\*\expandedcolortbl;;\cssrgb\c0\c0\c0\c84706;\cssrgb\c0\c0\c0;\cssrgb\c47843\c49412\c52157;
\cssrgb\c9804\c10196\c10980;}
\paperw11900\paperh16840\margl1440\margr1440\vieww11520\viewh8400\viewkind0
\deftab720
\pard\pardeftab720\partightenfactor0
\f0\fs22 \cf2 \expnd0\expndtw0\kerning0
__________________________________________________\cf0 \
\pard\pardeftab720\partightenfactor0
\f1\fs26\fsmilli13067 \cf4 \cb5 ## Configuration stands for correspondingly s1, s2, nns, recombination rate,\cb1 \
\cb5 ### ploidy (1 = haploid_1000, 2 = diploid_1000, 3=yeast, 4=haploid_500, 5=diploid_500), no_replicates. \cb1 \
\pard\pardeftab720\partightenfactor0
\f2\fs24 \AppleTypeServices\AppleTypeServicesF65539 \cf4 \
\pard\pardeftab720\partightenfactor0
\f0\fs22 \AppleTypeServices \cf2 __________________________________________________\cf0 \
\cf2 Config 0: (Avg. runtime: Missing, but average 15,000 second)\cf0 \
\cf2 Analysing now inferred posterior for 1-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.700438],[0.19150808],[0.10805392]). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 2-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([1.],0,0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 3-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.93610557],[0.06389443],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 4-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([1.],0,0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 5-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([1.],0,0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 6-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.93909247],[0.06090753],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 7-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.96296496],[0.03703504],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 8-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.98559817],[0.01440183],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 9-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.93804469],[0.06195531],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 10-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.95076045],[0.04923955],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 11-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.84049701],0,[0.15950299]). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 12-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.93542721],[0.06457279],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 13-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.97681503],[0.02318497],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 14-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.95082709],[0.04917291],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 15-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.93934991],[0.06065009],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 16-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.97629857],[0.02370143],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 17-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.92619126],[0.07380874],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 18-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.86044957],[0.00986812],[0.12968231]). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 19-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.95692564],[0.04307436],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 20-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.98830181],[0.01169819],0). Inferred nns: 0.0\cf0 \
\cf2 True s1: 0.0, True s2: 0.0, True nns: 0, True rec rate: 0.0, hap/dip-loid: 1.0, number of replicates: 20.0\cf0 \
\cf2 Inferred nns: [0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [[0. 0.]\cf0 \
\cf2 [0. 0.]\cf0 \
\cf2 [0. 0.]\cf0 \
\cf2 [0. 0.]\cf0 \
\cf2 [0. 0.]\cf0 \
\cf2 [0. 0.]\cf0 \
\cf2 [0. 0.]\cf0 \
\cf2 [0. 0.]\cf0 \
\cf2 [0. 0.]\cf0 \
\cf2 [0. 0.]\cf0 \
\cf2 [0. 0.]\cf0 \
\cf2 [0. 0.]\cf0 \
\cf2 [0. 0.]\cf0 \
\cf2 [0. 0.]\cf0 \
\cf2 [0. 0.]\cf0 \
\cf2 [0. 0.]\cf0 \
\cf2 [0. 0.]\cf0 \
\cf2 [0. 0.]\cf0 \
\cf2 [0. 0.]\cf0 \
\cf2 [0. 0.]]\cf0 \
\cf2 _________________________\cf0 \
\cf2 Config 1: (Avg. runtime: 13,454.4)\cf0 \
\cf2 Analysing now inferred posterior for 1-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.4677236],[0.44102781],[0.0912486]). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 2-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.2803573],[0.56859415],[0.15104855]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.01368815 0. ]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.59510258],[0.40489742]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.0196228 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 4-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.67453989],[0.32546011]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.01723614 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 5-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.76931825],[0.23068175]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.0191411 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 6-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.79157225],[0.20842775]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.01680756 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 7-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.01165245],[0.7771086],[0.21123895]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.01828505 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 8-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.09683],[0.73738573],[0.16578427]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.0160798 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 9-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.70185834],[0.29814166]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.02415894 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 10-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.75861582],[0.24138418]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.01749427 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 11-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.45647822],[0.49719229],[0.04632949]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.01353384 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 12-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.10877868],[0.60741358],[0.28380774]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.01964592 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 13-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.90018269],[0.09981731],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 14-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.8554595],[0.1445405]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.01504548 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 15-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.52724562],[0.41484688],[0.0579075]). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 16-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.75849419],[0.24150581]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.01493492 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 17-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.74279391],[0.25720609]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.02505198 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 18-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.85992074],[0.14007926]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.0160281 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 19-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.27762925],[0.59074818],[0.13162258]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.01530495 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 20-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.70287648],[0.29712352]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.02314838 0. ]\cf0 \
\cf2 True s1: 0.02, True s2: 0.0, True nns: 1, True rec rate: 0.0, hap/dip-loid: 1.0, number of replicates: 20.0\cf0 \
\cf2 Inferred nns: [0. 1. 1. 1. 1. 1. 1. 1. 1. 1. 1. 1. 0. 1. 0. 1. 1. 1. 1. 1.]\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [[0. 0. ]\cf0 \
\cf2 [0.01368815 0. ]\cf0 \
\cf2 [0.0196228 0. ]\cf0 \
\cf2 [0.01723614 0. ]\cf0 \
\cf2 [0.0191411 0. ]\cf0 \
\cf2 [0.01680756 0. ]\cf0 \
\cf2 [0.01828505 0. ]\cf0 \
\cf2 [0.0160798 0. ]\cf0 \
\cf2 [0.02415894 0. ]\cf0 \
\cf2 [0.01749427 0. ]\cf0 \
\cf2 [0.01353384 0. ]\cf0 \
\cf2 [0.01964592 0. ]\cf0 \
\cf2 [0. 0. ]\cf0 \
\cf2 [0.01504548 0. ]\cf0 \
\cf2 [0. 0. ]\cf0 \
\cf2 [0.01493492 0. ]\cf0 \
\cf2 [0.02505198 0. ]\cf0 \
\cf2 [0.0160281 0. ]\cf0 \
\cf2 [0.01530495 0. ]\cf0 \
\cf2 [0.02314838 0. ]]\cf0 \
\
\cf2 Runtime: (11528+10659+8943+14258+11598+21030+12664+18672+14636+10556)/10=13,454.4 \cf0 \
\cf2 Inference now running for 10-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 11528.949567079544 seconds\cf0 \
\cf2 Inference now running for 11-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 10659.559743881226 seconds\cf0 \
\cf2 Inference now running for 12-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 8943.141436576843 seconds\cf0 \
\cf2 Inference now running for 13-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 14258.70460319519 seconds\cf0 \
\cf2 Inference now running for 14-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 11598.65063738823 seconds\cf0 \
\cf2 Inference now running for 15-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 21030.665584087372 seconds\cf0 \
\cf2 Inference now running for 16-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 12664.843730211258 seconds\cf0 \
\cf2 Inference now running for 17-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 18672.15573143959 seconds\cf0 \
\cf2 Inference now running for 18-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 14636.564580440521 seconds\cf0 \
\cf2 Inference now running for 19-st/nd/th replicate fakedata of configuration:[0.02, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\
\cf2 Inference completed in 10556.278007268906 seconds\cf0 \
\cf2 _________________________\cf0 \
\cf2 Config 2: (Avg. runtime: 16,384.6)\cf0 \
\cf2 Analysing now inferred posterior for 1-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.69195405],[0.30804595]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.03991222 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 2-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.77927128],[0.22072872]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.06416808 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 3-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.72294367],[0.27705633]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.05296691 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 4-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.62722703],[0.37277297]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.06139319 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 5-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.05357138],[0.80284462],[0.143584]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.01886052 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 6-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.63979736],[0.3136684],[0.04653424]). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 7-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.69808091],[0.30191909]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.05287162 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 8-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.75981619],[0.24018381]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.01828416 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 9-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.70530287],[0.29469713]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.03289295 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 10-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.28897939],[0.71102061]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.04119407 0.03955493]\cf0 \
\cf2 Analysing now inferred posterior for 11-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.54175078],[0.45824922]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.04181767 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 12-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.67542362],[0.32457638]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.04164699 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 13-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.78240189],[0.21759811]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.04362331 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 14-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.74280194],[0.25719806]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.04668277 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 15-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.67409405],[0.32590595]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.04976289 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 16-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.32241519],[0.53397411],[0.14361069]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.04072782 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 17-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.59319411],[0.40680589]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.05227157 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 18-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.69189306],[0.30810694]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.05072322 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 19-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.75717751],[0.24282249]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.04175176 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 20-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.33743475],[0.60700291],[0.05556234]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.03913345 0. ]\cf0 \
\cf2 True s1: 0.05, True s2: 0.0, True nns: 1, True rec rate: 0.0, hap/dip-loid: 1.0, number of replicates: 20.0\cf0 \
\cf2 Inferred nns: [1. 1. 1. 1. 1. 0. 1. 1. 1. 2. 1. 1. 1. 1. 1. 1. 1. 1. 1. 1.]\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [[0.03991222 0. ]\cf0 \
\cf2 [0.06416808 0. ]\cf0 \
\cf2 [0.05296691 0. ]\cf0 \
\cf2 [0.06139319 0. ]\cf0 \
\cf2 [0.01886052 0. ]\cf0 \
\cf2 [0. 0. ]\cf0 \
\cf2 [0.05287162 0. ]\cf0 \
\cf2 [0.01828416 0. ]\cf0 \
\cf2 [0.03289295 0. ]\cf0 \
\cf2 [0.04119407 0.03955493]\cf0 \
\cf2 [0.04181767 0. ]\cf0 \
\cf2 [0.04164699 0. ]\cf0 \
\cf2 [0.04362331 0. ]\cf0 \
\cf2 [0.04668277 0. ]\cf0 \
\cf2 [0.04976289 0. ]\cf0 \
\cf2 [0.04072782 0. ]\cf0 \
\cf2 [0.05227157 0. ]\cf0 \
\cf2 [0.05072322 0. ]\cf0 \
\cf2 [0.04175176 0. ]\cf0 \
\
\cf2 [0.03913345 0. ]]\cf0 \
\
\cf2 Runtime: (11538+11248+16202+24420+27727+15574+11556+22032+13110+10439)/10=16,384.6 \cf0 \
\cf2 Inference now running for 10-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 11538.032838582993 seconds\cf0 \
\cf2 Inference now running for 11-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 11248.606883049011 seconds\cf0 \
\cf2 Inference now running for 12-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 16202.664233207703 seconds\cf0 \
\cf2 Inference now running for 13-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 24420.67117357254 seconds\cf0 \
\cf2 Inference now running for 14-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 27727.195769309998 seconds\cf0 \
\cf2 Inference now running for 15-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 15574.050758600235 seconds\cf0 \
\cf2 Inference now running for 16-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 11556.953183889389 seconds\cf0 \
\cf2 Inference now running for 17-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 22032.63802099228 seconds\cf0 \
\cf2 Inference now running for 18-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 13110.360317707062 seconds\cf0 \
\cf2 Inference now running for 19-st/nd/th replicate fakedata of configuration:[0.05, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\
\cf2 Inference completed in 10439.145028591156 seconds\cf0 \
\cf2 _________________________\cf0 \
\cf2 Config 3: (Avg. runtime: 13,884.7)\cf0 \
\cf2 Analysing now inferred posterior for 1-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.48273718],[0.51726282]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.02754608 0.07683097]\cf0 \
\cf2 Analysing now inferred posterior for 2-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.73605796],[0.26394204]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07387994 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 3-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.70848978],[0.29151022]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07421338 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 4-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.44218451],[0.55781549]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.06100725 0.06252826]\cf0 \
\cf2 Analysing now inferred posterior for 5-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.71693287],[0.28306713]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.03990204 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 6-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.64781997],[0.35218003]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07149071 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 7-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.65145303],[0.34854697]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.05796167 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 8-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.72048291],[0.27951709]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.03735831 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 9-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.66643437],[0.33356563]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07726907 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 10-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.83545323],[0.16454677]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07727926 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 11-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.58850719],[0.41149281]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.06709595 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 12-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.55869141],[0.44130859]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.0563437 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 13-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.01655786],[0.80961438],[0.17382776]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.03920773 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 14-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.79624482],[0.20375518]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.05892242 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 15-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.69564999],[0.30435001]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.0795737 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 16-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.65346421],[0.34653579]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.06451011 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 17-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.5702798],[0.4297202]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07281183 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 18-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.56567313],[0.43432687]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07224657 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 19-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.02216505],[0.75184186],[0.22599309]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.04355935 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 20-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.61562868],[0.38437132]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.05772268 0. ]\cf0 \
\cf2 True s1: 0.07, True s2: 0.0, True nns: 1, True rec rate: 0.0, hap/dip-loid: 1.0, number of replicates: 20.0\cf0 \
\cf2 Inferred nns: [2. 1. 1. 2. 1. 1. 1. 1. 1. 1. 1. 1. 1. 1. 1. 1. 1. 1. 1. 1.]\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [[0.02754608 0.07683097]\cf0 \
\cf2 [0.07387994 0. ]\cf0 \
\cf2 [0.07421338 0. ]\cf0 \
\cf2 [0.06100725 0.06252826]\cf0 \
\cf2 [0.03990204 0. ]\cf0 \
\cf2 [0.07149071 0. ]\cf0 \
\cf2 [0.05796167 0. ]\cf0 \
\cf2 [0.03735831 0. ]\cf0 \
\cf2 [0.07726907 0. ]\cf0 \
\cf2 [0.07727926 0. ]\cf0 \
\cf2 [0.06709595 0. ]\cf0 \
\cf2 [0.0563437 0. ]\cf0 \
\cf2 [0.03920773 0. ]\cf0 \
\cf2 [0.05892242 0. ]\cf0 \
\cf2 [0.0795737 0. ]\cf0 \
\cf2 [0.06451011 0. ]\cf0 \
\cf2 [0.07281183 0. ]\cf0 \
\cf2 [0.07224657 0. ]\cf0 \
\cf2 [0.04355935 0. ]\cf0 \
\cf2 [0.05772268 0. ]]\cf0 \
\
\cf2 Runtime: (14430+20139+9576+10758+11927+15311+14445+10377+15029+16855)/10=13,884.7 \cf0 \
\cf2 Inference now running for 10-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 14430.862497091293 seconds\cf0 \
\cf2 Inference now running for 11-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 20139.265265226364 seconds\cf0 \
\cf2 Inference now running for 12-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 9576.145023107529 seconds\cf0 \
\cf2 Inference now running for 13-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 10758.66426539421 seconds\cf0 \
\cf2 Inference now running for 14-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 11927.351072788239 seconds\cf0 \
\cf2 Inference now running for 15-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 15311.147096633911 seconds\cf0 \
\cf2 Inference now running for 16-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 14445.762083530426 seconds\cf0 \
\cf2 Inference now running for 17-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 10377.470121145248 seconds\cf0 \
\cf2 Inference now running for 18-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 15029.136837244034 seconds\cf0 \
\cf2 Inference now running for 19-st/nd/th replicate fakedata of configuration:[0.07, 0.0, 1, 0.0, 1.0, 20.0]\cf0 \
\
\cf2 Inference completed in 16855.327113628387 seconds\cf0 \
\cf2 _________________________\cf0 \
\cf2 Config 4: (Avg. runtime: 13,626.7)\cf0 \
\cf2 Analysing now inferred posterior for 1-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.62313882],[0.37686118]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.03626295 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 2-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.58645335],[0.41354665]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.02707294 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 3-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.68747086],[0.31252914]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.01952055 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 4-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.36509103],[0.63490897]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.05896745 0.05991647]\cf0 \
\cf2 Analysing now inferred posterior for 5-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.83042051],[0.16957949]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.03794508 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 6-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.69023118],[0.30976882]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.04324185 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 7-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.79054917],[0.20945083]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.03307468 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 8-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.75036378],[0.24963622]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.06977026 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 9-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.6594119],[0.3405881]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.02411704 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 10-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.67613341],[0.32386659]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.05411163 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 11-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.64589057],[0.35410943]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.03979103 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 12-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.5783632],[0.4216368]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.03349065 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 13-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.70741562],[0.29258438]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.0232153 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 14-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.6144954],[0.3855046]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07262453 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 15-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.47594878],[0.52405122]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.08168739 0.02141793]\cf0 \
\cf2 Analysing now inferred posterior for 16-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.66426208],[0.33573792]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.02104003 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 17-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.66357926],[0.33642074]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.03655238 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 18-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.65968195],[0.34031805]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.04169707 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 19-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.57004758],[0.42995242]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.09040848 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 20-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.70257774],[0.29742226]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.02530622 0. ]\cf0 \
\cf2 True s1: 0.05, True s2: 0.02, True nns: 2, True rec rate: 0.0, hap/dip-loid: 1.0, number of replicates: 20.0\cf0 \
\cf2 Inferred nns: [1. 1. 1. 2. 1. 1. 1. 1. 1. 1. 1. 1. 1. 1. 2. 1. 1. 1. 1. 1.]\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [[0.03626295 0. ]\cf0 \
\cf2 [0.02707294 0. ]\cf0 \
\cf2 [0.01952055 0. ]\cf0 \
\cf2 [0.05896745 0.05991647]\cf0 \
\cf2 [0.03794508 0. ]\cf0 \
\cf2 [0.04324185 0. ]\cf0 \
\cf2 [0.03307468 0. ]\cf0 \
\cf2 [0.06977026 0. ]\cf0 \
\cf2 [0.02411704 0. ]\cf0 \
\cf2 [0.05411163 0. ]\cf0 \
\cf2 [0.03979103 0. ]\cf0 \
\cf2 [0.03349065 0. ]\cf0 \
\cf2 [0.0232153 0. ]\cf0 \
\cf2 [0.07262453 0. ]\cf0 \
\cf2 [0.08168739 0.02141793]\cf0 \
\cf2 [0.02104003 0. ]\cf0 \
\cf2 [0.03655238 0. ]\cf0 \
\cf2 [0.04169707 0. ]\cf0 \
\cf2 [0.09040848 0. ]\cf0 \
\cf2 [0.02530622 0. ]]\cf0 \
\
\cf2 Runtime: (6993+15481+13309+20388+18093+11630+13807+18606+11038+6922)/10=13,626.7 \cf0 \
\
\cf2 Inference now running for 10-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 6993.134213209152 seconds\cf0 \
\cf2 Inference now running for 11-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 15481.24206495285 seconds\cf0 \
\cf2 Inference now running for 12-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 13309.821538209915 seconds\cf0 \
\cf2 Inference now running for 13-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 20388.94904923439 seconds\cf0 \
\cf2 Inference now running for 14-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 18093.03662633896 seconds\cf0 \
\cf2 Inference now running for 15-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 11630.258253097534 seconds\cf0 \
\cf2 Inference now running for 16-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 13807.0341360569 seconds\cf0 \
\cf2 Inference now running for 17-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 18606.421221971512 seconds\cf0 \
\cf2 Inference now running for 18-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 11038.355974435806 seconds\cf0 \
\cf2 Inference now running for 19-st/nd/th replicate fakedata of configuration:[0.05, 0.02, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 6922.19408082962 seconds\cf0 \
\pard\pardeftab720\partightenfactor0
\f2\fs24 \AppleTypeServices\AppleTypeServicesF65539 \cf2 \
\
\pard\pardeftab720\partightenfactor0
\f0\fs22 \AppleTypeServices \cf2 _________________________\cf0 \
\cf2 Cpnfig 5: (Avg. runtime: 14,066.0909)\cf0 \
\cf2 Analysing now inferred posterior for 1-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.59615361],[0.40384639]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.11831268 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 2-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.32334761],[0.67665239]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.06316959 0.06056413]\cf0 \
\cf2 Analysing now inferred posterior for 3-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.43179186],[0.56820814]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.02719482 0.05553161]\cf0 \
\cf2 Analysing now inferred posterior for 4-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.31340257],[0.68659743]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.0219106 0.0568793]\cf0 \
\cf2 Analysing now inferred posterior for 5-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.68058784],[0.31941216]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.06090785 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 6-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.27634786],[0.72365214]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.09448944 0.07583569]\cf0 \
\cf2 Analysing now inferred posterior for 7-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.35765652],[0.64234348]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.05337843 0.04142844]\cf0 \
\cf2 Analysing now inferred posterior for 8-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.07826897],[0.92173103]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.14773138 0.09592225]\cf0 \
\cf2 Analysing now inferred posterior for 9-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.51000259],[0.48999741]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.09081448 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 10-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.57435134],[0.42564866]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.09275221 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 11-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.54112525],[0.45887475]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.10749177 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 12-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.36593251],[0.63406749]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.08584135 0.09653674]\cf0 \
\cf2 Analysing now inferred posterior for 13-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.63324232],[0.36675768]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07132333 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 14-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.84800465],[0.0232216],[0.12877376]). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 15-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.60614444],[0.39385556]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.13008721 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 16-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.59543228],[0.40456772]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07175389 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 17-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.6393455],[0.3606545]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07710807 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 18-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.22240437],[0.77759563]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.08417533 0.07134505]\cf0 \
\cf2 Analysing now inferred posterior for 19-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.61622564],[0.38377436]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.06088321 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 20-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.59453343],[0.40546657]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.12580706 0. ]\cf0 \
\cf2 True s1: 0.05, True s2: 0.07, True nns: 2, True rec rate: 0.0, hap/dip-loid: 1.0, number of replicates: 20.0\cf0 \
\cf2 Inferred nns: [1. 2. 2. 2. 1. 2. 2. 2. 1. 1. 1. 2. 1. 0. 1. 1. 1. 2. 1. 1.]\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [[0.11831268 0. ]\cf0 \
\cf2 [0.06316959 0.06056413]\cf0 \
\cf2 [0.02719482 0.05553161]\cf0 \
\cf2 [0.0219106 0.0568793 ]\cf0 \
\cf2 [0.06090785 0. ]\cf0 \
\cf2 [0.09448944 0.07583569]\cf0 \
\cf2 [0.05337843 0.04142844]\cf0 \
\cf2 [0.14773138 0.09592225]\cf0 \
\cf2 [0.09081448 0. ]\cf0 \
\cf2 [0.09275221 0. ]\cf0 \
\cf2 [0.10749177 0. ]\cf0 \
\cf2 [0.08584135 0.09653674]\cf0 \
\cf2 [0.07132333 0. ]\cf0 \
\cf2 [0. 0. ]\cf0 \
\cf2 [0.13008721 0. ]\cf0 \
\cf2 [0.07175389 0. ]\cf0 \
\cf2 [0.07710807 0. ]\cf0 \
\cf2 [0.08417533 0.07134505]\cf0 \
\cf2 [0.06088321 0. ]\cf0 \
\cf2 [0.12580706 0. ]]\cf0 \
\
\cf2 Runtime: (11565+10925+14070+17654+9468+12174+14545+18772+20298+13371+11885)/11=14,066.0909 \cf0 \
\cf2 Inference now running for 9-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 11565.360728740692 seconds\cf0 \
\cf2 Inference now running for 10-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 10925.725972175598 seconds\cf0 \
\cf2 Inference now running for 11-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 14070.311942338943 seconds\cf0 \
\cf2 Inference now running for 12-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 17654.381722927094 seconds\cf0 \
\cf2 Inference now running for 13-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 9468.505710363388 seconds\cf0 \
\cf2 Inference now running for 14-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 12174.73270869255 seconds\cf0 \
\cf2 Inference now running for 15-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 14545.195847034454 seconds\cf0 \
\cf2 Inference now running for 16-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 18772.23673081398 seconds\cf0 \
\cf2 Inference now running for 17-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 20298.03160429001 seconds\cf0 \
\cf2 Inference now running for 18-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 13371.206775188446 seconds\cf0 \
\cf2 Inference now running for 19-st/nd/th replicate fakedata of configuration:[0.05, 0.07, 2, 0.0, 1.0, 20.0]\cf0 \
\
\cf2 Inference completed in 11885.185774326324 seconds\cf0 \
\cf2 _________________________
\f2\fs24 \AppleTypeServices\AppleTypeServicesF65539 \
Config 6:
\f0\fs22 \AppleTypeServices (Avg. runtime: 14412)
\f2\fs24 \AppleTypeServices\AppleTypeServicesF65539 \
\f0\fs22 \AppleTypeServices Analysing now inferred posterior for 1-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.33552471],[0.66447529]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.16183128 0.05433134]\cf0 \
\cf2 Analysing now inferred posterior for 2-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.16940156],[0.83059844]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.08396317 0.10041564]\cf0 \
\cf2 Analysing now inferred posterior for 3-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.61786369],[0.38213631]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.09287889 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 4-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.42367055],[0.57632945]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.14034489 0.02697317]\cf0 \
\cf2 Analysing now inferred posterior for 5-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.65681562],[0.34318438]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.09470974 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 6-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.31565073],[0.68434927]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07219748 0.08194399]\cf0 \
\cf2 Analysing now inferred posterior for 7-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.17575679],[0.82424321]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.08486247 0.08655565]\cf0 \
\cf2 Analysing now inferred posterior for 8-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.53914673],[0.46085327]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.08273909 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 9-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.37640463],[0.62359537]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.06773168 0.06356492]\cf0 \
\cf2 Analysing now inferred posterior for 10-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.26585922],[0.73414078]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.06729722 0.07152602]\cf0 \
\cf2 Analysing now inferred posterior for 11-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.54448026],[0.45551974]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.06190724 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 12-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.5424455],[0.4575545]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.06983904 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 13-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.06762743],[0.71595448],[0.21641809]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.01635779 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 14-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.23434421],[0.76565579]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.09883192 0.11318405]\cf0 \
\cf2 Analysing now inferred posterior for 15-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.63154235],[0.36845765]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.09384612 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 16-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.58421867],[0.41578133]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.09829881 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 17-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.38537723],[0.61462277]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07390313 0.06311371]\cf0 \
\cf2 Analysing now inferred posterior for 18-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.64222514],[0.35777486]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.09405666 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 19-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.41888777],[0.58111223]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.15500646 0.02909799]\cf0 \
\cf2 Analysing now inferred posterior for 20-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.3120568],[0.6879432]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07522195 0.07339275]\cf0 \
\cf2 True s1: 0.07, True s2: 0.09, True nns: 2, True rec rate: 0.0, hap/dip-loid: 1.0, number of replicates: 20.0\cf0 \
\cf2 Inferred nns: [2. 2. 1. 2. 1. 2. 2. 1. 2. 2. 1. 1. 1. 2. 1. 1. 2. 1. 2. 2.]\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [[0.16183128 0.05433134]\cf0 \
\cf2 [0.08396317 0.10041564]\cf0 \
\cf2 [0.09287889 0. ]\cf0 \
\cf2 [0.14034489 0.02697317]\cf0 \
\cf2 [0.09470974 0. ]\cf0 \
\cf2 [0.07219748 0.08194399]\cf0 \
\cf2 [0.08486247 0.08655565]\cf0 \
\cf2 [0.08273909 0. ]\cf0 \
\cf2 [0.06773168 0.06356492]\cf0 \
\cf2 [0.06729722 0.07152602]\cf0 \
\cf2 [0.06190724 0. ]\cf0 \
\cf2 [0.06983904 0. ]\cf0 \
\cf2 [0.01635779 0. ]\cf0 \
\cf2 [0.09883192 0.11318405]\cf0 \
\cf2 [0.09384612 0. ]\cf0 \
\cf2 [0.09829881 0. ]\cf0 \
\cf2 [0.07390313 0.06311371]\cf0 \
\cf2 [0.09405666 0. ]\cf0 \
\cf2 [0.15500646 0.02909799]\cf0 \
\cf2 [0.07522195 0.07339275]]\cf0 \
\
\cf2 Runtime: (11911+22499+13631+9372+13684+12337+15241+18295+17286+16867+7417)/11=14412\cf0 \
\cf2 Inference now running for 9-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 11911.773373126984 seconds\cf0 \
\cf2 Inference now running for 10-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 22499.220893383026 seconds\cf0 \
\cf2 Inference now running for 11-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 13631.988931655884 seconds\cf0 \
\cf2 Inference now running for 12-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 9372.054468393326 seconds\cf0 \
\cf2 Inference now running for 13-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 13684.673771858215 seconds\cf0 \
\cf2 Inference now running for 14-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 12337.54382967949 seconds\cf0 \
\cf2 Inference now running for 15-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 15241.782766580582 seconds\cf0 \
\cf2 Inference now running for 16-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 18295.67093014717 seconds\cf0 \
\cf2 Inference now running for 17-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 17286.484800815582 seconds\cf0 \
\cf2 Inference now running for 18-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\cf2 Inference completed in 16867.58285498619 seconds\cf0 \
\cf2 Inference now running for 19-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 20.0]\cf0 \
\
\cf2 Inference completed in 7417.393377542496 seconds\cf0 \
\pard\pardeftab720\partightenfactor0
\f2\fs24 \AppleTypeServices\AppleTypeServicesF65539 \cf2 \
\pard\pardeftab720\partightenfactor0
\f0\fs22 \AppleTypeServices \cf2 _________________________
\f2\fs24 \AppleTypeServices\AppleTypeServicesF65539 \
Config 7:
\f0\fs22 \AppleTypeServices (Avg. runtime: 16,422.5)
\f2\fs24 \AppleTypeServices\AppleTypeServicesF65539 \
\f0\fs22 \AppleTypeServices Analysing now inferred posterior for 1-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.54373047],[0.45626953]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07100947 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 2-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.53233557],[0.46766443]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.08263501 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 3-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.73205591],[0.26794409]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.09243278 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 4-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.30251857],[0.69748143]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.02787206 0.13600134]\cf0 \
\cf2 Analysing now inferred posterior for 5-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.51096443],[0.48903557]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.10114861 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 6-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.55988932],[0.44011068]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.16299175 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 7-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.4097432],[0.5902568]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.08401469 0.02347803]\cf0 \
\cf2 Analysing now inferred posterior for 8-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.29654289],[0.70345711]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.10001712 0.09138208]\cf0 \
\cf2 Analysing now inferred posterior for 9-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.49657243],[0.50342757]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.01943915 0.06114959]\cf0 \
\cf2 Analysing now inferred posterior for 10-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.66718908],[0.33281092]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.10492569 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 11-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.39003393],[0.60996607]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.055036 0.04752614]\cf0 \
\cf2 Analysing now inferred posterior for 12-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.5832295],[0.4167705]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07384614 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 13-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.70088356],[0.29911644]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.11261295 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 14-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.50614827],[0.49385173]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.10310036 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 15-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.59960865],[0.40039135]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.08999598 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 16-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.52950803],[0.47049197]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.08185041 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 17-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.5637461],[0.4362539]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.10077483 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 18-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.80275035],[0.19724965]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.11456787 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 19-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.60712493],[0.39287507]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.11946143 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 20-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.38355958],[0.61644042]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.04263068 0.17756152]\cf0 \
\cf2 True s1: 0.07, True s2: 0.09, True nns: 2, True rec rate: 0.0, hap/dip-loid: 1.0, number of replicates: 5.0\cf0 \
\cf2 Inferred nns: [1. 1. 1. 2. 1. 1. 2. 2. 2. 1. 2. 1. 1. 1. 1. 1. 1. 1. 1. 2.]\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [[0.07100947 0. ]\cf0 \
\cf2 [0.08263501 0. ]\cf0 \
\cf2 [0.09243278 0. ]\cf0 \
\cf2 [0.02787206 0.13600134]\cf0 \
\cf2 [0.10114861 0. ]\cf0 \
\cf2 [0.16299175 0. ]\cf0 \
\cf2 [0.08401469 0.02347803]\cf0 \
\cf2 [0.10001712 0.09138208]\cf0 \
\cf2 [0.01943915 0.06114959]\cf0 \
\cf2 [0.10492569 0. ]\cf0 \
\cf2 [0.055036 0.04752614]\cf0 \
\cf2 [0.07384614 0. ]\cf0 \
\cf2 [0.11261295 0. ]\cf0 \
\cf2 [0.10310036 0. ]\cf0 \
\cf2 [0.08999598 0. ]\cf0 \
\cf2 [0.08185041 0. ]\cf0 \
\cf2 [0.10077483 0. ]\cf0 \
\cf2 [0.11456787 0. ]\cf0 \
\cf2 [0.11946143 0. ]\cf0 \
\cf2 [0.04263068 0.17756152]]\cf0 \
\
\cf2 Runtime: (11018+21018+21967+22904+16351+16176+21078+10812+9889+13012)/10=16,422.5 \cf0 \
\
\cf2 Inference now running for 10-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 Inference completed in 11018.175228834152 seconds\cf0 \
\cf2 Inference now running for 11-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 Inference completed in 21018.50289940834 seconds\cf0 \
\cf2 Inference now running for 12-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 Inference completed in 21967.658848762512 seconds\cf0 \
\cf2 Inference now running for 13-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 Inference completed in 22904.0688290596 seconds\cf0 \
\cf2 Inference now running for 14-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 Inference completed in 16351.31185889244 seconds\cf0 \
\cf2 Inference now running for 15-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 Inference completed in 16176.41885638237 seconds\cf0 \
\cf2 Inference now running for 16-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 Inference completed in 21078.56308865547 seconds\cf0 \
\cf2 Inference now running for 17-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 Inference completed in 10812.110044240952 seconds\cf0 \
\cf2 Inference now running for 18-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 Inference completed in 9889.896895885468 seconds\cf0 \
\cf2 Inference now running for 19-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 5.0]\cf0 \
\cf2 Inference completed in 13012.451829910278 seconds\cf0 \
\pard\pardeftab720\partightenfactor0
\f2\fs24 \AppleTypeServices\AppleTypeServicesF65539 \cf2 \
\pard\pardeftab720\partightenfactor0
\f0\fs22 \AppleTypeServices \cf2 _________________________
\f2\fs24 \AppleTypeServices\AppleTypeServicesF65539 \
Config 8:
\f0\fs22 \AppleTypeServices (Avg. runtime: 14,553.9)
\f2\fs24 \AppleTypeServices\AppleTypeServicesF65539 \
\f0\fs22 \AppleTypeServices Analysing now inferred posterior for 1-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.49760235],[0.50239765]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.09616699 0.02213413]\cf0 \
\cf2 Analysing now inferred posterior for 2-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.36124868],[0.63875132]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07121141 0.16343786]\cf0 \
\cf2 Analysing now inferred posterior for 3-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.50466431],[0.49533569]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.11548894 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 4-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.64476854],[0.35523146]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.09446843 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 5-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.37210117],[0.62789883]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.08180068 0.09073438]\cf0 \
\cf2 Analysing now inferred posterior for 6-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.5479261],[0.4520739]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.1019608 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 7-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.36575965],[0.63424035]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.06655306 0.05504822]\cf0 \
\cf2 Analysing now inferred posterior for 8-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.52369387],[0.47630613]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07769173 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 9-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.32208469],[0.67791531]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.17246506 0.03288111]\cf0 \
\cf2 Analysing now inferred posterior for 10-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.30491766],[0.69508234]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.09147082 0.09574194]\cf0 \
\cf2 Analysing now inferred posterior for 11-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.70399903],[0.29600097]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.08060516 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 12-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.27549335],[0.72450665]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.10095589 0.0123282 ]\cf0 \
\cf2 Analysing now inferred posterior for 13-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.25698965],[0.74301035]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.03988569 0.07174047]\cf0 \
\cf2 Analysing now inferred posterior for 14-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.57456242],[0.42543758]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.12479883 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 15-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.30749116],[0.69250884]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.03188795 0.07048355]\cf0 \
\cf2 Analysing now inferred posterior for 16-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.41439923],[0.58560077]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.07705558 0.07225867]\cf0 \
\cf2 Analysing now inferred posterior for 17-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.64684152],[0.35315848]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.10596344 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 18-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.66578942],[0.33421058]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.11079189 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 19-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.50458886],[0.49541114]). Inferred nns: 1.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.17681415 0. ]\cf0 \
\cf2 Analysing now inferred posterior for 20-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = (0,[0.48900497],[0.51099503]). Inferred nns: 2.0\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [0.14569701 0.03469148]\cf0 \
\cf2 True s1: 0.07, True s2: 0.09, True nns: 2, True rec rate: 0.0, hap/dip-loid: 1.0, number of replicates: 10.0\cf0 \
\cf2 Inferred nns: [2. 2. 1. 1. 2. 1. 2. 1. 2. 2. 1. 2. 2. 1. 2. 2. 1. 1. 1. 2.]\cf0 \
\cf2 Conditional posterior mode of (s1, s2): [[0.09616699 0.02213413]\cf0 \
\cf2 [0.07121141 0.16343786]\cf0 \
\cf2 [0.11548894 0. ]\cf0 \
\cf2 [0.09446843 0. ]\cf0 \
\cf2 [0.08180068 0.09073438]\cf0 \
\cf2 [0.1019608 0. ]\cf0 \
\cf2 [0.06655306 0.05504822]\cf0 \
\cf2 [0.07769173 0. ]\cf0 \
\cf2 [0.17246506 0.03288111]\cf0 \
\cf2 [0.09147082 0.09574194]\cf0 \
\cf2 [0.08060516 0. ]\cf0 \
\cf2 [0.10095589 0.0123282 ]\cf0 \
\cf2 [0.03988569 0.07174047]\cf0 \
\cf2 [0.12479883 0. ]\cf0 \
\cf2 [0.03188795 0.07048355]\cf0 \
\cf2 [0.07705558 0.07225867]\cf0 \
\cf2 [0.10596344 0. ]\cf0 \
\cf2 [0.11079189 0. ]\cf0 \
\cf2 [0.17681415 0. ]\cf0 \
\cf2 [0.14569701 0.03469148]]\cf0 \
\
\cf2 Runtime: (12162+19495+19208+14456+10334+13872+14175+15152+14798+11887)/10=14,553.9 \cf0 \
\cf2 Inference now running for 10-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 Inference completed in 12162.297696113586 seconds\cf0 \
\cf2 Inference now running for 11-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 Inference completed in 19495.171577692032 seconds\cf0 \
\cf2 Inference now running for 12-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 Inference completed in 19208.611593961716 seconds\cf0 \
\cf2 Inference now running for 13-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 Inference completed in 14456.903369665146 seconds\cf0 \
\cf2 Inference now running for 14-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 Inference completed in 10334.316274881363 seconds\cf0 \
\cf2 Inference now running for 15-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 Inference completed in 13872.173103809357 seconds\cf0 \
\cf2 Inference now running for 16-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 Inference completed in 14175.434895992279 seconds\cf0 \
\cf2 Inference now running for 17-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 Inference completed in 15152.1474173069 seconds\cf0 \
\cf2 Inference now running for 18-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\cf2 Inference completed in 14798.251121520996 seconds\cf0 \
\cf2 Inference now running for 19-st/nd/th replicate fakedata of configuration:[0.07, 0.09, 2, 0.0, 1.0, 10.0]\cf0 \
\
\cf2 Inference completed in 11887.073937654495 seconds\cf0 \
\cf2 _________________________\cf0 \
\cf2 Config 9: (Avg. runtime:
\f2\fs24 15,248.909
\f0\fs22 )\cf0 \
\cf2 Analysing now inferred posterior for 1-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 2.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.98824386],[0.01175614],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 2-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 2.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.98701888],[0.01298112],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 3-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 2.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.97223691],[0.02776309],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 4-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 2.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.9732907],[0.0267093],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 5-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 2.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.95516821],[0.04483179],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 6-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 2.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([1.],0,0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 7-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 2.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([1.],0,0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 8-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 2.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.98751476],[0.01248524],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 9-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 2.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.97526696],[0.02473304],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 10-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 2.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.97589814],[0.02410186],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 11-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 2.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.96952838],[0.03047162],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 12-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 2.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([0.96485986],[0.03514014],0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 13-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 2.0, 20.0]\cf0 \
\cf2 marginal posterior probability: (p0, p1, p2) = ([1.],0,0). Inferred nns: 0.0\cf0 \
\cf2 Analysing now inferred posterior for 14-st/nd/th replicate fakedata of configuration:[0.0, 0.0, 0, 0.0, 2.0, 20.0]\cf0 \