forked from pgmpy/pgmpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.test_durations
1194 lines (1194 loc) · 147 KB
/
.test_durations
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
{
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_edge_nonstring": 0.000921530881896615,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_edge_string": 0.0003037569113075733,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_edge_weight": 0.00024667195975780487,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_edges_from_nonstring": 0.0002379941288381815,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_edges_from_string": 0.00027168518863618374,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_edges_from_weight": 0.00024519278667867184,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_node_nonstring": 0.00024626473896205425,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_node_string": 0.0002632120158523321,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_node_weight": 0.0002606899943202734,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_nodes_from_non_string": 0.0002570028882473707,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_nodes_from_string": 0.0002891151234507561,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_nodes_from_weight": 0.00027460535056889057,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_class_init_with_data_string": 0.0008053423371165991,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_class_init_without_data": 0.00023201201111078262,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_get_ancestral_graph": 0.0003881920129060745,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_get_leaves": 0.00026018498465418816,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_get_roots": 0.0002598280552774668,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_init_with_cycle": 0.0004747379571199417,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_minimal_dseparator": 0.0011196420527994633,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_random_dag": 0.3603406159672886,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_to_daft": 0.19911907892674208,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_update_node_parents": 0.0002833621110767126,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_update_node_parents_bm_constructor": 0.00032471888698637486,
"pgmpy/tests/test_base/test_DAG.py::TestDAGMoralization::test_get_children": 0.00029031396843492985,
"pgmpy/tests/test_base/test_DAG.py::TestDAGMoralization::test_get_parents": 0.00023804325610399246,
"pgmpy/tests/test_base/test_DAG.py::TestDAGMoralization::test_moralize": 0.00031119794584810734,
"pgmpy/tests/test_base/test_DAG.py::TestDAGMoralization::test_moralize_disconnected": 0.0003454531542956829,
"pgmpy/tests/test_base/test_DAG.py::TestDoOperator::test_do": 0.00045205396600067616,
"pgmpy/tests/test_base/test_DAG.py::TestPDAG::test_copy": 0.00037868437357246876,
"pgmpy/tests/test_base/test_DAG.py::TestPDAG::test_init_normal": 0.0005035651847720146,
"pgmpy/tests/test_base/test_DAG.py::TestPDAG::test_pdag_to_dag": 0.0006760952528566122,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_edge_nonstring": 0.00027909991331398487,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_edge_string": 0.00025249109603464603,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_edges_from_nonstring": 0.00023598107509315014,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_edges_from_string": 0.0002555958926677704,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_node_nonstring": 0.00022209086455404758,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_node_string": 0.00022526481188833714,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_node_with_weight": 0.00022061890922486782,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_nodes_from_non_string": 0.00021719792857766151,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_nodes_from_string": 0.00022579776123166084,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_nodes_from_with_weight": 0.00022740289568901062,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_class_init_with_data_string": 0.00024948385544121265,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_class_init_without_data": 0.00021338998340070248,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_number_of_neighbors": 0.00023881113156676292,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphMethods::test_is_clique": 0.0002792521845549345,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphMethods::test_is_triangulated": 0.0006197509355843067,
"pgmpy/tests/test_estimators/test_BaseEstimator.py::TestBaseEstimator::test_missing_data": 0.006814453052356839,
"pgmpy/tests/test_estimators/test_BaseEstimator.py::TestBaseEstimator::test_state_count": 0.004790545208379626,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::TestBayesianEstimator::test_error_latent_model": 0.00980023993179202,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::TestBayesianEstimator::test_estimate_cpd_dirichlet": 0.008035819279029965,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::TestBayesianEstimator::test_estimate_cpd_improper_prior": 0.004103320883587003,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::TestBayesianEstimator::test_estimate_cpd_shortcuts": 0.006426949054002762,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::TestBayesianEstimator::test_get_parameters": 0.009182008216157556,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::TestBayesianEstimator::test_get_parameters2": 0.009037558222189546,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::TestBayesianEstimator::test_get_parameters3": 0.008947961963713169,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::TestBayesianEstimatorTorch::test_error_latent_model": 0.0020570687483996153,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::TestBayesianEstimatorTorch::test_estimate_cpd_dirichlet": 0.007462441921234131,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::TestBayesianEstimatorTorch::test_estimate_cpd_improper_prior": 0.005543893901631236,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::TestBayesianEstimatorTorch::test_estimate_cpd_shortcuts": 0.008373088901862502,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::TestBayesianEstimatorTorch::test_get_parameters": 0.011738048866391182,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::TestBayesianEstimatorTorch::test_get_parameters2": 0.012245425023138523,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::TestBayesianEstimatorTorch::test_get_parameters3": 0.01202101306989789,
"pgmpy/tests/test_estimators/test_CITests.py::TestDiscreteTests::test_chisquare_adult_dataset": 0.49556179507635534,
"pgmpy/tests/test_estimators/test_CITests.py::TestDiscreteTests::test_discrete_tests": 0.49862374691292644,
"pgmpy/tests/test_estimators/test_CITests.py::TestDiscreteTests::test_exactly_same_vars": 0.020041459472849965,
"pgmpy/tests/test_estimators/test_CITests.py::TestPearsonr::test_pearsonr": 0.026824891101568937,
"pgmpy/tests/test_estimators/test_CITests.py::TestResidualMethod::test_pearsonr": 0.01248350995592773,
"pgmpy/tests/test_estimators/test_CITests.py::TestResidualMethod::test_pillai": 1.0781262889504433,
"pgmpy/tests/test_estimators/test_EM.py::TestEM::test_get_parameters": 1.4151881150901318,
"pgmpy/tests/test_estimators/test_EM.py::TestEM::test_get_parameters_initial_cpds": 1.214484864845872,
"pgmpy/tests/test_estimators/test_EM.py::TestEMTorch::test_get_parameters": 1.1660355550702661,
"pgmpy/tests/test_estimators/test_EM.py::TestEMTorch::test_get_parameters_initial_cpds": 1.2528781751170754,
"pgmpy/tests/test_estimators/test_ExhaustiveSearch.py::TestBaseEstimator::test_all_dags": 0.0755464369431138,
"pgmpy/tests/test_estimators/test_ExhaustiveSearch.py::TestBaseEstimator::test_all_scores": 0.017967785242944956,
"pgmpy/tests/test_estimators/test_ExhaustiveSearch.py::TestBaseEstimator::test_estimate_rand": 0.021752864122390747,
"pgmpy/tests/test_estimators/test_ExhaustiveSearch.py::TestBaseEstimator::test_estimate_titanic": 0.018394053215160966,
"pgmpy/tests/test_estimators/test_HillClimbSearch.py::TestHillClimbEstimator::test_estimate": 0.27383765717968345,
"pgmpy/tests/test_estimators/test_HillClimbSearch.py::TestHillClimbEstimator::test_estimate_rand": 0.041169918375089765,
"pgmpy/tests/test_estimators/test_HillClimbSearch.py::TestHillClimbEstimator::test_estimate_titanic": 0.023903262801468372,
"pgmpy/tests/test_estimators/test_HillClimbSearch.py::TestHillClimbEstimator::test_legal_operations": 0.018059943802654743,
"pgmpy/tests/test_estimators/test_HillClimbSearch.py::TestHillClimbEstimator::test_legal_operations_blacklist_whitelist": 0.017743821954354644,
"pgmpy/tests/test_estimators/test_HillClimbSearch.py::TestHillClimbEstimator::test_legal_operations_titanic": 0.11600458924658597,
"pgmpy/tests/test_estimators/test_HillClimbSearch.py::TestHillClimbEstimator::test_no_legal_operation": 0.010126591194421053,
"pgmpy/tests/test_estimators/test_MarginalEstimator.py::TestMarginalEstimator::test_class_init": 0.0031800149008631706,
"pgmpy/tests/test_estimators/test_MarginalEstimator.py::TestMarginalEstimator::test_clique_to_marginal": 0.0010150768794119358,
"pgmpy/tests/test_estimators/test_MarginalEstimator.py::TestMarginalEstimator::test_clique_to_marginal_no_matching_cliques": 0.0009595840238034725,
"pgmpy/tests/test_estimators/test_MarginalEstimator.py::TestMarginalEstimator::test_marginal_loss": 0.0036868469323962927,
"pgmpy/tests/test_estimators/test_MarginalEstimator.py::TestMarginalEstimatorTorch::test_class_init": 0.0028545320965349674,
"pgmpy/tests/test_estimators/test_MarginalEstimator.py::TestMarginalEstimatorTorch::test_clique_to_marginal": 0.002161720534786582,
"pgmpy/tests/test_estimators/test_MarginalEstimator.py::TestMarginalEstimatorTorch::test_clique_to_marginal_no_matching_cliques": 0.0029858851339668036,
"pgmpy/tests/test_estimators/test_MarginalEstimator.py::TestMarginalEstimatorTorch::test_marginal_loss": 0.007070309016853571,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLE::test_class_init": 0.015488233882933855,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLE::test_error_latent_model": 0.007245453307405114,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLE::test_estimate_cpd": 0.0118336312007159,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLE::test_estimate_potentials": 0.009780379943549633,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLE::test_estimate_potentials_smoke_test": 0.011153379920870066,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLE::test_get_parameters_incomplete_data": 0.01570665487088263,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLE::test_missing_data": 0.016699804924428463,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLE::test_nonoccurring_values": 0.015055733267217875,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLE::test_partition_function": 0.011774718994274735,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLE::test_state_names1": 0.010146401124075055,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLE::test_state_names2": 0.010281224036589265,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLETorch::test_class_init": 0.016948542091995478,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLETorch::test_error_latent_model": 0.008142611244693398,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLETorch::test_estimate_cpd": 0.011823003180325031,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLETorch::test_estimate_potentials": 0.010364363202825189,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLETorch::test_estimate_potentials_smoke_test": 0.01434430736117065,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLETorch::test_get_parameters_incomplete_data": 0.01589955505914986,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLETorch::test_missing_data": 0.01645821798592806,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLETorch::test_nonoccurring_values": 0.015976719092577696,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLETorch::test_partition_function": 0.012261669151484966,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLETorch::test_state_names1": 0.009990133810788393,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::TestMLETorch::test_state_names2": 0.012017383938655257,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::TestMarginalEstimator::test_estimate_example_smoke_test": 0.0867193709127605,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::TestMarginalEstimator::test_mirror_descent_estimator_l1": 0.005632049171254039,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::TestMarginalEstimator::test_mirror_descent_estimator_l2": 0.0053289770148694515,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::TestMarginalEstimator::test_mirror_descent_warm_start": 0.009436636697500944,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::TestMarginalEstimator::test_multi_clique_tree": 0.19482631073333323,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::TestMarginalEstimatorTorch::test_estimate_example_smoke_test": 0.14905994082801044,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::TestMarginalEstimatorTorch::test_mirror_descent_estimator_l1": 0.010890589095652103,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::TestMarginalEstimatorTorch::test_mirror_descent_estimator_l2": 0.010569202713668346,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::TestMarginalEstimatorTorch::test_mirror_descent_warm_start": 0.014179755002260208,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::TestMarginalEstimatorTorch::test_multi_clique_tree": 0.38755211094394326,
"pgmpy/tests/test_estimators/test_MmhcEstimator.py::TestMmhcEstimator::test_estimate": 0.8060599002055824,
"pgmpy/tests/test_estimators/test_PC.py::TestPCEstimatorFromContinuousData::test_build_dag": 6.081543629057705,
"pgmpy/tests/test_estimators/test_PC.py::TestPCEstimatorFromContinuousData::test_build_skeleton": 9.140585768967867,
"pgmpy/tests/test_estimators/test_PC.py::TestPCEstimatorFromDiscreteData::test_build_dag": 2.1681118672713637,
"pgmpy/tests/test_estimators/test_PC.py::TestPCEstimatorFromDiscreteData::test_build_skeleton": 3.1135842730291188,
"pgmpy/tests/test_estimators/test_PC.py::TestPCEstimatorFromDiscreteData::test_build_skeleton_chi_square": 4.3189773741178215,
"pgmpy/tests/test_estimators/test_PC.py::TestPCEstimatorFromIndependencies::test_build_skeleton_from_ind": 2.078564254101366,
"pgmpy/tests/test_estimators/test_PC.py::TestPCEstimatorFromIndependencies::test_estimate_dag": 0.008169585140421987,
"pgmpy/tests/test_estimators/test_PC.py::TestPCEstimatorFromIndependencies::test_skeleton_to_pdag": 0.0018353958148509264,
"pgmpy/tests/test_estimators/test_PC.py::TestPCFakeCITest::test_build_skeleton_orig": 0.0025381820742040873,
"pgmpy/tests/test_estimators/test_PC.py::TestPCFakeCITest::test_build_skeleton_stable": 0.0022184867411851883,
"pgmpy/tests/test_estimators/test_PC.py::TestPCRealModels::test_pc_alarm": 282.0687788911164,
"pgmpy/tests/test_estimators/test_PC.py::TestPCRealModels::test_pc_asia": 1.0961428917944431,
"pgmpy/tests/test_estimators/test_ParameterEstimator.py::TestParameterEstimator::test_missing_data": 0.0032852529548108578,
"pgmpy/tests/test_estimators/test_ParameterEstimator.py::TestParameterEstimator::test_state_count": 0.0031501830089837313,
"pgmpy/tests/test_estimators/test_SEMEstimator.py::TestIVEstimator::test_fit": 0.04648669483140111,
"pgmpy/tests/test_estimators/test_SEMEstimator.py::TestSEMEstimator::test_custom_estimator_random_init": 0.00037918705493211746,
"pgmpy/tests/test_estimators/test_SEMEstimator.py::TestSEMEstimator::test_custom_estimator_std_init": 0.0002342460211366415,
"pgmpy/tests/test_estimators/test_SEMEstimator.py::TestSEMEstimator::test_demo_estimator_random_init": 0.0002244811039417982,
"pgmpy/tests/test_estimators/test_SEMEstimator.py::TestSEMEstimator::test_get_init_values": 0.00021687173284590244,
"pgmpy/tests/test_estimators/test_SEMEstimator.py::TestSEMEstimator::test_union_estimator_random_init": 0.00021818513050675392,
"pgmpy/tests/test_estimators/test_SEMEstimator.py::TestSEMEstimator::test_union_estimator_std_init": 0.0002294436562806368,
"pgmpy/tests/test_estimators/test_ScoreCache.py::TestScoreCache::test_caching": 0.0005445473361760378,
"pgmpy/tests/test_estimators/test_ScoreCache.py::TestScoreCache::test_remove_least_recently_used": 0.0005887269508093596,
"pgmpy/tests/test_estimators/test_ScoreCache.py::TestScoreCache::test_score_cache": 0.0015061809681355953,
"pgmpy/tests/test_estimators/test_ScoreCache.py::TestScoreCache::test_score_cache_invalid_scorer": 0.00033940630964934826,
"pgmpy/tests/test_estimators/test_ScoreCache.py::TestScoreCache::test_small_cache": 0.0004528709687292576,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestAICScore::test_score": 0.006139483768492937,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestAICScore::test_score_titanic": 0.008312513120472431,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestBDeuScore::test_score": 0.008349603973329067,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestBDeuScore::test_score_titanic": 0.011939808260649443,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestBDsScore::test_score": 0.007579283090308309,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestBicScore::test_score": 0.01050821808166802,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestBicScore::test_score_titanic": 0.019150754902511835,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestK2Score::test_score": 0.0064240810461342335,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestK2Score::test_score_titanic": 0.008531606988981366,
"pgmpy/tests/test_estimators/test_TreeSearch.py::TestTreeSearch::test_estimate_chow_liu": 0.9118544820230454,
"pgmpy/tests/test_estimators/test_TreeSearch.py::TestTreeSearch::test_estimate_chow_liu_auto_root_node": 1.4596079459879547,
"pgmpy/tests/test_estimators/test_TreeSearch.py::TestTreeSearch::test_estimate_tan": 0.9766176717821509,
"pgmpy/tests/test_estimators/test_TreeSearch.py::TestTreeSearch::test_estimate_tan_auto_class_node": 1.2732903549913317,
"pgmpy/tests/test_estimators/test_TreeSearch.py::TestTreeSearchRealDataSet::test_tan": 3.024205709109083,
"pgmpy/tests/test_factors/test_FactorDict.py::TestFactorDict::test_class_init": 0.0027623691130429506,
"pgmpy/tests/test_factors/test_FactorDict.py::TestFactorDict::test_factor_dict_addition": 0.00183594087138772,
"pgmpy/tests/test_factors/test_FactorDict.py::TestFactorDict::test_factor_dict_addition_scalar": 0.002008720999583602,
"pgmpy/tests/test_factors/test_FactorDict.py::TestFactorDict::test_factor_dict_from_pandas_categorical": 0.006686127046123147,
"pgmpy/tests/test_factors/test_FactorDict.py::TestFactorDict::test_factor_dict_from_pandas_nans": 0.0017949561588466167,
"pgmpy/tests/test_factors/test_FactorDict.py::TestFactorDict::test_factor_dict_from_pandas_numeric": 0.004994913935661316,
"pgmpy/tests/test_factors/test_FactorDict.py::TestFactorDict::test_factor_dict_from_pandas_titanic": 0.008597210980951786,
"pgmpy/tests/test_factors/test_FactorDict.py::TestFactorDict::test_factor_dict_from_pandas_wrong_column": 0.0012665160465985537,
"pgmpy/tests/test_factors/test_FactorDict.py::TestFactorDict::test_factor_dict_multiplication": 0.0010941850487142801,
"pgmpy/tests/test_factors/test_FactorSet.py::TestFactorSet::test_class_init": 0.0006300520617514849,
"pgmpy/tests/test_factors/test_FactorSet.py::TestFactorSet::test_factorset_add_remove_factors": 0.0005130497738718987,
"pgmpy/tests/test_factors/test_FactorSet.py::TestFactorSet::test_factorset_divide": 0.0010498152114450932,
"pgmpy/tests/test_factors/test_FactorSet.py::TestFactorSet::test_factorset_marginalize_inplace": 0.0008552032522857189,
"pgmpy/tests/test_factors/test_FactorSet.py::TestFactorSet::test_factorset_marginalize_not_inplace": 0.000781248090788722,
"pgmpy/tests/test_factors/test_FactorSet.py::TestFactorSet::test_factorset_product": 0.0007656067609786987,
"pgmpy/tests/test_factors/test_continuous/test_Canonical_Factor.py::TestCanonicalFactor::test_class_init": 0.0008632771205157042,
"pgmpy/tests/test_factors/test_continuous/test_Canonical_Factor.py::TestCanonicalFactor::test_class_init_valueerror": 0.0003154019359499216,
"pgmpy/tests/test_factors/test_continuous/test_Canonical_Factor.py::TestJGDMethods::test_assignment": 0.0004531550221145153,
"pgmpy/tests/test_factors/test_continuous/test_Canonical_Factor.py::TestJGDMethods::test_copy": 0.0009312748443335295,
"pgmpy/tests/test_factors/test_continuous/test_Canonical_Factor.py::TestJGDMethods::test_marginalize": 0.002531682839617133,
"pgmpy/tests/test_factors/test_continuous/test_Canonical_Factor.py::TestJGDMethods::test_operate": 0.0008971327915787697,
"pgmpy/tests/test_factors/test_continuous/test_Canonical_Factor.py::TestJGDMethods::test_reduce": 0.0016824852209538221,
"pgmpy/tests/test_factors/test_continuous/test_Canonical_Factor.py::TestJGDMethods::test_to_joint_gaussian": 0.005239256890490651,
"pgmpy/tests/test_factors/test_continuous/test_ContinuousFactor.py::TestContinuousFactor::test_class_init": 0.00045253196731209755,
"pgmpy/tests/test_factors/test_continuous/test_ContinuousFactor.py::TestContinuousFactor::test_class_init_typeerror": 0.0003916509449481964,
"pgmpy/tests/test_factors/test_continuous/test_ContinuousFactor.py::TestContinuousFactor::test_class_init_valueerror": 0.00037657516077160835,
"pgmpy/tests/test_factors/test_continuous/test_ContinuousFactor.py::TestContinuousFactorMethods::test_assignment": 0.0009621831122785807,
"pgmpy/tests/test_factors/test_continuous/test_ContinuousFactor.py::TestContinuousFactorMethods::test_copy": 0.000356805045157671,
"pgmpy/tests/test_factors/test_continuous/test_ContinuousFactor.py::TestContinuousFactorMethods::test_marginalize": 6.092469058698043,
"pgmpy/tests/test_factors/test_continuous/test_ContinuousFactor.py::TestContinuousFactorMethods::test_marginalize_error": 0.0003212790470570326,
"pgmpy/tests/test_factors/test_continuous/test_ContinuousFactor.py::TestContinuousFactorMethods::test_normalize": 5.623116927687079,
"pgmpy/tests/test_factors/test_continuous/test_ContinuousFactor.py::TestContinuousFactorMethods::test_operate": 0.011921880999580026,
"pgmpy/tests/test_factors/test_continuous/test_ContinuousFactor.py::TestContinuousFactorMethods::test_operate_error": 0.0003741991240531206,
"pgmpy/tests/test_factors/test_continuous/test_ContinuousFactor.py::TestContinuousFactorMethods::test_reduce": 0.0035141201224178076,
"pgmpy/tests/test_factors/test_continuous/test_ContinuousFactor.py::TestContinuousFactorMethods::test_reduce_error": 0.00027881632559001446,
"pgmpy/tests/test_factors/test_continuous/test_ContinuousFactor.py::TestContinuousFactorMethods::test_scope": 0.0003540921024978161,
"pgmpy/tests/test_factors/test_continuous/test_CustomDistribution.py::TestCustomDistribution::test_class_init": 0.00027984799817204475,
"pgmpy/tests/test_factors/test_continuous/test_CustomDistribution.py::TestCustomDistribution::test_class_init_typeerror": 0.00025635003112256527,
"pgmpy/tests/test_factors/test_continuous/test_CustomDistribution.py::TestCustomDistribution::test_class_init_valueerror": 0.00025541591458022594,
"pgmpy/tests/test_factors/test_continuous/test_CustomDistribution.py::TestCustomDistributionMethods::test_assignment": 0.0005433980841189623,
"pgmpy/tests/test_factors/test_continuous/test_CustomDistribution.py::TestCustomDistributionMethods::test_copy": 0.00034508458338677883,
"pgmpy/tests/test_factors/test_continuous/test_CustomDistribution.py::TestCustomDistributionMethods::test_marginalize": 5.743956608697772,
"pgmpy/tests/test_factors/test_continuous/test_CustomDistribution.py::TestCustomDistributionMethods::test_marginalize_error": 0.00028123799711465836,
"pgmpy/tests/test_factors/test_continuous/test_CustomDistribution.py::TestCustomDistributionMethods::test_normalize": 5.2544294719118625,
"pgmpy/tests/test_factors/test_continuous/test_CustomDistribution.py::TestCustomDistributionMethods::test_operate": 0.011451045284047723,
"pgmpy/tests/test_factors/test_continuous/test_CustomDistribution.py::TestCustomDistributionMethods::test_operate_error": 0.00035973009653389454,
"pgmpy/tests/test_factors/test_continuous/test_CustomDistribution.py::TestCustomDistributionMethods::test_reduce": 0.003654964966699481,
"pgmpy/tests/test_factors/test_continuous/test_CustomDistribution.py::TestCustomDistributionMethods::test_reduce_error": 0.0002758130431175232,
"pgmpy/tests/test_factors/test_continuous/test_CustomDistribution.py::TestCustomDistributionMethods::test_variables": 0.0002483809366822243,
"pgmpy/tests/test_factors/test_continuous/test_JointGaussianDistribution.py::TestGDInit::test_class_init": 0.0007472939323633909,
"pgmpy/tests/test_factors/test_continuous/test_JointGaussianDistribution.py::TestGDInit::test_class_init_valueerror": 0.0003516250289976597,
"pgmpy/tests/test_factors/test_continuous/test_JointGaussianDistribution.py::TestJGDMethods::test_assignment": 0.0009001919534057379,
"pgmpy/tests/test_factors/test_continuous/test_JointGaussianDistribution.py::TestJGDMethods::test_copy": 0.0005322340875864029,
"pgmpy/tests/test_factors/test_continuous/test_JointGaussianDistribution.py::TestJGDMethods::test_divide": 0.00023987656459212303,
"pgmpy/tests/test_factors/test_continuous/test_JointGaussianDistribution.py::TestJGDMethods::test_eq": 0.0002491897903382778,
"pgmpy/tests/test_factors/test_continuous/test_JointGaussianDistribution.py::TestJGDMethods::test_marginalize": 0.0006600660271942616,
"pgmpy/tests/test_factors/test_continuous/test_JointGaussianDistribution.py::TestJGDMethods::test_normalize": 0.00039643701165914536,
"pgmpy/tests/test_factors/test_continuous/test_JointGaussianDistribution.py::TestJGDMethods::test_precision_matrix": 0.0007322130259126425,
"pgmpy/tests/test_factors/test_continuous/test_JointGaussianDistribution.py::TestJGDMethods::test_product": 0.00035164481960237026,
"pgmpy/tests/test_factors/test_continuous/test_JointGaussianDistribution.py::TestJGDMethods::test_reduce": 0.0010317899286746979,
"pgmpy/tests/test_factors/test_continuous/test_JointGaussianDistribution.py::TestJGDMethods::test_repr": 0.0002674921415746212,
"pgmpy/tests/test_factors/test_continuous/test_Linear_Gaussian_CPD.py::TestLGCPD::test_class_init": 0.0002810349687933922,
"pgmpy/tests/test_factors/test_continuous/test_Linear_Gaussian_CPD.py::TestLGCPD::test_copy": 0.00025325966998934746,
"pgmpy/tests/test_factors/test_continuous/test_Linear_Gaussian_CPD.py::TestLGCPD::test_maximum_likelihood_estimator": 0.011550712864845991,
"pgmpy/tests/test_factors/test_continuous/test_Linear_Gaussian_CPD.py::TestLGCPD::test_pdf": 0.00034259422682225704,
"pgmpy/tests/test_factors/test_continuous/test_Linear_Gaussian_CPD.py::TestLGCPD::test_str": 0.00044927489943802357,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorInit::test_class_init": 0.0008732350543141365,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorInit::test_class_init_int_var": 0.0003636160399764776,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorInit::test_class_init_nonlist_statename": 0.00026404671370983124,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorInit::test_class_init_repeated_statename": 0.00025852187536656857,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorInit::test_class_init_sizeerror": 0.00025276304222643375,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorInit::test_class_init_statenames": 0.000344729982316494,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorInit::test_class_init_typeerror": 0.0002718730829656124,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorInit::test_init_size_var_card_not_equal": 0.0002569009084254503,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_assignment": 0.0007885489612817764,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_assignment_indexerror": 0.0005796756595373154,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_complete_reduce": 0.0007473991718143225,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_eq": 0.0006750777829438448,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_eq1": 0.000673441682010889,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_eq_state_names_order": 0.0005820011720061302,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_divide": 0.0007240390405058861,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_divide_invalid": 0.0005856407806277275,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_divide_no_common_scope": 0.0006002089940011501,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_divide_non_factor_arg": 0.0005017661023885012,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_divide_truediv": 0.0006899421568959951,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_mul": 0.0011781102512031794,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_product": 0.0014286590740084648,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_product_non_factor_arg": 0.000545034883543849,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_sum": 0.0007861717604100704,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_sum_product": 1.0330278642941266,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_get_cardinality": 0.0005299681797623634,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_get_cardinality_scopeerror": 0.00050878687761724,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_get_cardinality_typeerror": 0.0004972859751433134,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_get_value": 0.8879808089695871,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_hash": 0.0007519873324781656,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_identity_factor": 0.0007114498876035213,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_marginalize": 0.000980955082923174,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_marginalize_scopeerror": 0.0005468421149998903,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_marginalize_shape": 0.0007495807949453592,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_marginalize_typeerror": 0.000499253161251545,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_maximize_list": 0.0007173491176217794,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_maximize_scopeerror": 0.0004905429668724537,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_maximize_shape": 0.0007040491327643394,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_maximize_single": 0.0009642429649829865,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_maximize_typeerror": 0.000519398832693696,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_normalize": 0.0007414589636027813,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_product": 0.0008543329313397408,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_reduce": 0.0006276180502027273,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_reduce1": 0.0006274108309298754,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_reduce_scopeerror": 0.0005145769100636244,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_reduce_shape": 0.0006392239592969418,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_reduce_sizeerror": 0.0006686851847916842,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_reduce_typeerror": 0.0005422167014330626,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_sample": 0.12053154897876084,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_scope": 0.0005623281467705965,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_set_value": 0.8617003010585904,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionInit::test_jpd_init": 0.0004379390738904476,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionInit::test_jpd_init_exception": 0.0003330931067466736,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionMethods::test_check_independence": 0.0030812763143330812,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionMethods::test_conditional_distribution_list": 0.0008604251779615879,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionMethods::test_get_independencies": 0.0038075691554695368,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionMethods::test_is_imap": 0.0008779701311141253,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionMethods::test_jpd_marginal_distribution_list": 0.0007899124175310135,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionMethods::test_marginal_distribution_str": 0.0007699769921600819,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionMethods::test_minimal_imap": 0.00623614527285099,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionMethods::test_repr": 0.0005185150075703859,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDInit::test_cpd_init": 0.0016877870075404644,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDInit::test_cpd_init_cardinality_not_specified": 0.00024338695220649242,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDInit::test_cpd_init_event_card_not_int": 0.00022116675972938538,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDInit::test_cpd_init_value_not_2d": 0.0002315291203558445,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDInit::test_too_wide_cdp_table": 0.011887152213603258,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test__repr__": 0.00045824586413800716,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_copy": 0.00041464390233159065,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_copy_original_safe": 0.00042699999175965786,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_copy_state_names": 0.0003414941020309925,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_get_random": 0.001100985100492835,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_get_values": 0.00035222386941313744,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_marginalize_1": 0.000423243036493659,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_marginalize_2": 0.0003045282792299986,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_marginalize_3": 0.0004971239250153303,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_normalize": 0.00040831114165484905,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_normalize_not_in_place": 0.0004440620541572571,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_normalize_original_safe": 0.0004490339197218418,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_reduce_1": 0.00037729297764599323,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_reduce_2": 0.00037944293580949306,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_reduce_3": 0.0003795218653976917,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_reduce_4": 0.00030578277073800564,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_reduce_5": 0.00047236098907887936,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_reorder_parents": 0.00038575707003474236,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_reorder_parents_inplace": 0.00041774800047278404,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_reorder_parents_no_effect": 0.00036928988993167877,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_reorder_parents_warning": 0.00039850990287959576,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorInitTorch::test_class_init": 0.0008698138408362865,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorInitTorch::test_class_init_int_var": 0.0005070820916444063,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorInitTorch::test_class_init_nonlist_statename": 0.000322120962664485,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorInitTorch::test_class_init_repeated_statename": 0.0003138252068310976,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorInitTorch::test_class_init_sizeerror": 0.00030050985515117645,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorInitTorch::test_class_init_statenames": 0.00045515201054513454,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorInitTorch::test_class_init_typeerror": 0.00034886994399130344,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorInitTorch::test_init_size_var_card_not_equal": 0.0003476492129266262,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_assignment": 0.0022574688773602247,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_assignment_indexerror": 0.0012432087678462267,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_complete_reduce": 0.0013484410010278225,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_eq": 0.0011562129948288202,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_eq1": 0.0013134200125932693,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_eq_state_names_order": 0.0009979819878935814,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_divide": 0.0011856472119688988,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_divide_invalid": 0.000970061868429184,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_divide_no_common_scope": 0.0009423112496733665,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_divide_non_factor_arg": 0.0008106480818241835,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_divide_truediv": 0.0012583122588694096,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_mul": 0.0010887261014431715,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_product": 0.0014876110944896936,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_product_non_factor_arg": 0.0008125060703605413,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_sum": 0.0012067381758242846,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_sum_product": 1.027569669764489,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_get_cardinality": 0.0008477137889713049,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_get_cardinality_scopeerror": 0.0008168260101228952,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_get_cardinality_typeerror": 0.0008027870208024979,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_get_value": 0.8445780018810183,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_hash": 0.0014457751531153917,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_identity_factor": 0.0011081877164542675,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_marginalize": 0.0015438930131495,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_marginalize_scopeerror": 0.0008906060829758644,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_marginalize_shape": 0.0010926350951194763,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_marginalize_typeerror": 0.0008059248793870211,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_maximize_list": 0.0010506599210202694,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_maximize_scopeerror": 0.0007997869979590178,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_maximize_shape": 0.0010307659395039082,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_maximize_single": 0.0013298129197210073,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_maximize_typeerror": 0.0008011162281036377,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_normalize": 0.0010978351347148418,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_product": 0.0015504921320825815,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_reduce": 0.0010372770484536886,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_reduce1": 0.0010846590157598257,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_reduce_scopeerror": 0.0008663509506732225,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_reduce_shape": 0.0010506429243832827,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_reduce_sizeerror": 0.0023496821522712708,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_reduce_typeerror": 0.0008099221158772707,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_sample": 0.12145236926153302,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_scope": 0.0008772220462560654,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_set_value": 0.8422312159091234,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDInitTorch::test_cpd_init": 0.0028064746875315905,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDInitTorch::test_cpd_init_cardinality_not_specified": 0.00026142015121877193,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDInitTorch::test_cpd_init_event_card_not_int": 0.00023192306980490685,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDInitTorch::test_cpd_init_value_not_2d": 0.0002658290322870016,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDInitTorch::test_too_wide_cpd_table": 0.012966519920155406,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test__repr__": 0.0006725641433149576,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_copy": 0.0005173939280211926,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_copy_original_safe": 0.0006466051563620567,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_copy_state_names": 0.00044179800897836685,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_get_random": 0.0014239412266761065,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_get_values": 0.00047419220209121704,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_marginalize_1": 0.0005649533122777939,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_marginalize_2": 0.0003884637262672186,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_marginalize_3": 0.0006573651917278767,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_normalize": 0.000555515056475997,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_normalize_not_in_place": 0.0006073629483580589,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_normalize_original_safe": 0.000643701059743762,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_reduce_1": 0.0005266591906547546,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_reduce_2": 0.0005224780179560184,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_reduce_3": 0.000511593883857131,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_reduce_4": 0.0003861973527818918,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_reduce_5": 0.000626624096184969,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_reorder_parents": 0.0005433931946754456,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_reorder_parents_inplace": 0.0006083706393837929,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_reorder_parents_no_effect": 0.0005217648576945066,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDMethodsTorch::test_reorder_parents_warning": 0.0005307919345796108,
"pgmpy/tests/test_global_vars.py::TestConfig::test_defaults": 0.00027848687022924423,
"pgmpy/tests/test_global_vars.py::TestConfig::test_no_progress": 0.00021799677051603794,
"pgmpy/tests/test_global_vars.py::TestConfig::test_torch_cpu": 0.00022955471649765968,
"pgmpy/tests/test_global_vars.py::TestConfig::test_torch_gpu": 0.0002398979850113392,
"pgmpy/tests/test_independencies/test_Independencies.py::TestIndependeciesAssertionEq::test_eq1": 0.0002625477500259876,
"pgmpy/tests/test_independencies/test_Independencies.py::TestIndependeciesAssertionEq::test_eq2": 0.00022864900529384613,
"pgmpy/tests/test_independencies/test_Independencies.py::TestIndependeciesAssertionEq::test_eq3": 0.0002510598860681057,
"pgmpy/tests/test_independencies/test_Independencies.py::TestIndependenceAssertion::test_get_assertion": 0.00042121694423258305,
"pgmpy/tests/test_independencies/test_Independencies.py::TestIndependenceAssertion::test_init": 0.0002196070272475481,
"pgmpy/tests/test_independencies/test_Independencies.py::TestIndependenceAssertion::test_init_exceptions": 0.00023977900855243206,
"pgmpy/tests/test_independencies/test_Independencies.py::TestIndependenceAssertion::test_return_list_if_not_collection": 0.00023324694484472275,
"pgmpy/tests/test_independencies/test_Independencies.py::TestIndependencies::test_add_assertions": 0.0002906220033764839,
"pgmpy/tests/test_independencies/test_Independencies.py::TestIndependencies::test_closure": 0.02592969313263893,
"pgmpy/tests/test_independencies/test_Independencies.py::TestIndependencies::test_entails": 0.008058808045461774,
"pgmpy/tests/test_independencies/test_Independencies.py::TestIndependencies::test_eq": 0.0002578059211373329,
"pgmpy/tests/test_independencies/test_Independencies.py::TestIndependencies::test_get_all_variables": 0.0002636818680912256,
"pgmpy/tests/test_independencies/test_Independencies.py::TestIndependencies::test_get_assertions": 0.0002408260479569435,
"pgmpy/tests/test_independencies/test_Independencies.py::TestIndependencies::test_init": 0.00023643113672733307,
"pgmpy/tests/test_independencies/test_Independencies.py::TestIndependencies::test_is_equivalent": 0.0006099231541156769,
"pgmpy/tests/test_inference/test_ApproxInference.py::TestApproxInferenceBN::test_query_evidence": 1.8369565289467573,
"pgmpy/tests/test_inference/test_ApproxInference.py::TestApproxInferenceBN::test_query_marg": 1.624217679956928,
"pgmpy/tests/test_inference/test_ApproxInference.py::TestApproxInferenceBN::test_virtual_evidence": 2.6053164100740105,
"pgmpy/tests/test_inference/test_ApproxInference.py::TestApproxInferenceBNTorch::test_query_evidence": 2.0308735980652273,
"pgmpy/tests/test_inference/test_ApproxInference.py::TestApproxInferenceBNTorch::test_query_marg": 1.7451618039049208,
"pgmpy/tests/test_inference/test_ApproxInference.py::TestApproxInferenceBNTorch::test_virtual_evidence": 2.679629231803119,
"pgmpy/tests/test_inference/test_ApproxInference.py::TestApproxInferenceDBN::test_evidence": 0.14317489508539438,
"pgmpy/tests/test_inference/test_ApproxInference.py::TestApproxInferenceDBN::test_inference": 0.15837365994229913,
"pgmpy/tests/test_inference/test_ApproxInference.py::TestApproxInferenceDBN::test_virtual_evidence": 0.12596939806826413,
"pgmpy/tests/test_inference/test_CausalInference.py::TestAdjustmentSet::test_get_minimal_adjustment_set": 0.0017478521913290024,
"pgmpy/tests/test_inference/test_CausalInference.py::TestAdjustmentSet::test_is_valid_adjustment_set": 0.0006134060677140951,
"pgmpy/tests/test_inference/test_CausalInference.py::TestAdjustmentSet::test_issue_1710": 0.00048058992251753807,
"pgmpy/tests/test_inference/test_CausalInference.py::TestAdjustmentSet::test_proper_backdoor_graph": 0.0004106326960027218,
"pgmpy/tests/test_inference/test_CausalInference.py::TestAdjustmentSet::test_proper_backdoor_graph_error": 0.0003290546592324972,
"pgmpy/tests/test_inference/test_CausalInference.py::TestBackdoorPaths::test_game1": 0.0003241079393774271,
"pgmpy/tests/test_inference/test_CausalInference.py::TestBackdoorPaths::test_game2": 0.00035804067738354206,
"pgmpy/tests/test_inference/test_CausalInference.py::TestBackdoorPaths::test_game3": 0.0003702179528772831,
"pgmpy/tests/test_inference/test_CausalInference.py::TestBackdoorPaths::test_game4": 0.0003139099571853876,
"pgmpy/tests/test_inference/test_CausalInference.py::TestBackdoorPaths::test_game5": 0.0004967427812516689,
"pgmpy/tests/test_inference/test_CausalInference.py::TestBackdoorPaths::test_game6": 0.0007297610864043236,
"pgmpy/tests/test_inference/test_CausalInference.py::TestCausalGraphMethods::test_backdoor_validation": 0.0005891083274036646,
"pgmpy/tests/test_inference/test_CausalInference.py::TestCausalGraphMethods::test_is_d_separated": 0.0004833519924432039,
"pgmpy/tests/test_inference/test_CausalInference.py::TestDoQuery::test_adjustment_query": 0.02054461184889078,
"pgmpy/tests/test_inference/test_CausalInference.py::TestDoQuery::test_issue_1459": 0.0033078747801482677,
"pgmpy/tests/test_inference/test_CausalInference.py::TestDoQuery::test_query": 0.0240228867623955,
"pgmpy/tests/test_inference/test_CausalInference.py::TestDoQuery::test_query_error": 0.000831768149510026,
"pgmpy/tests/test_inference/test_CausalInference.py::TestEstimator::test_create_estimator": 0.003090354148298502,
"pgmpy/tests/test_inference/test_CausalInference.py::TestEstimator::test_estimate_fail_no_adjustment": 0.0011858828365802765,
"pgmpy/tests/test_inference/test_CausalInference.py::TestEstimator::test_estimate_frontdoor": 0.004347798880189657,
"pgmpy/tests/test_inference/test_CausalInference.py::TestEstimator::test_estimate_multiple_paths": 0.007195810787379742,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagation::test_calibrate_clique_belief": 0.00174873904325068,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagation::test_calibrate_sepset_belief": 0.0016364138573408127,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagation::test_issue_1048": 0.025055996840819716,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagation::test_map_query": 0.003990716300904751,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagation::test_map_query_common_var": 0.0016250268090516329,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagation::test_map_query_with_evidence": 0.003926660167053342,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagation::test_max_calibrate_clique_belief": 0.0017269628588110209,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagation::test_max_calibrate_sepset_belief": 0.001671366160735488,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagation::test_query_common_var": 0.002002556109800935,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagation::test_query_multiple_variable": 0.003924044081941247,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagation::test_query_multiple_variable_with_evidence": 0.00421644002199173,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagation::test_query_single_variable": 0.003947904100641608,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagation::test_query_single_variable_with_evidence": 0.003976136911660433,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagationWithMessagePassing::test_query_allows_multiple_virtual_evidence_per_variable": 0.0035811199340969324,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagationWithMessagePassing::test_query_error_obs_var_has_evidence": 0.0028628569561988115,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagationWithMessagePassing::test_query_multiple_variable": 0.003842785954475403,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagationWithMessagePassing::test_query_multiple_variable_returns_each_message_once": 0.003475148929283023,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagationWithMessagePassing::test_query_multiple_variable_with_evidence": 0.003259154036641121,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagationWithMessagePassing::test_query_multiple_variable_with_multiple_evidence_and_virtual_evidence": 0.003487909911200404,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagationWithMessagePassing::test_query_single_variable": 0.003081020200625062,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagationWithMessagePassing::test_query_single_variable_can_return_all_computed_messages": 0.0032519011292606592,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagationWithMessagePassing::test_query_single_variable_with_evidence": 0.00320273800753057,
"pgmpy/tests/test_inference/test_ExactInference.py::TestBeliefPropagationWithMessagePassing::test_query_single_variable_with_virtual_evidence": 0.003178945044055581,
"pgmpy/tests/test_inference/test_ExactInference.py::TestSnowNetwork::test_elimination_order": 0.013607431901618838,
"pgmpy/tests/test_inference/test_ExactInference.py::TestSnowNetwork::test_joint_distribution": 0.008127472130581737,
"pgmpy/tests/test_inference/test_ExactInference.py::TestSnowNetwork::test_queries": 0.0076417988166213036,
"pgmpy/tests/test_inference/test_ExactInference.py::TestSnowNetwork::test_virt_evidence": 0.2833723919466138,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableElimination::test_elimination_order": 0.006363977212458849,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableElimination::test_induced_graph": 0.0011059162206947803,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableElimination::test_induced_width": 0.0009503415785729885,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableElimination::test_map_query": 0.004480022005736828,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableElimination::test_map_query_common_var": 0.0008994110394269228,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableElimination::test_map_query_with_evidence": 0.0021490140352398157,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableElimination::test_max_marginal": 0.001611714018508792,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableElimination::test_max_marginal_common_var": 0.0008761459030210972,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableElimination::test_max_marginal_var": 0.001412025187164545,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableElimination::test_max_marginal_var1": 0.001515307230874896,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableElimination::test_max_marginal_var2": 0.001813523005694151,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableElimination::test_query_common_var": 0.0008683388587087393,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableElimination::test_query_multiple_times": 0.03196071274578571,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableElimination::test_query_multiple_variable": 0.005559799959883094,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableElimination::test_query_multiple_variable_with_evidence": 0.006664292188361287,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableElimination::test_query_single_variable": 0.004602150991559029,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableElimination::test_query_single_variable_with_evidence": 0.004224545089527965,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableEliminationDuplicatedFactors::test_duplicated_factors": 0.0005561758298426867,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableEliminationMarkov::test_induced_graph": 0.0005653677508234978,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableEliminationMarkov::test_induced_width": 0.0005317158065736294,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableEliminationMarkov::test_issue_1421": 0.001207906985655427,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableEliminationMarkov::test_map_query": 0.0006837649270892143,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableEliminationMarkov::test_map_query_with_evidence": 0.0007796492427587509,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableEliminationMarkov::test_max_marginal": 0.0006592771969735622,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableEliminationMarkov::test_max_marginal_var": 0.0017652329988777637,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableEliminationMarkov::test_max_marginal_var1": 0.0013951559085398912,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableEliminationMarkov::test_max_marginal_var2": 0.0011191281955689192,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableEliminationMarkov::test_query_multiple_times": 0.002473026979714632,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableEliminationMarkov::test_query_multiple_variable": 0.0007544441614300013,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableEliminationMarkov::test_query_multiple_variable_with_evidence": 0.0006994071882218122,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableEliminationMarkov::test_query_single_variable": 0.0007374330889433622,
"pgmpy/tests/test_inference/test_ExactInference.py::TestVariableEliminationMarkov::test_query_single_variable_with_evidence": 0.0007176736835390329,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestBeliefPropagation::test_calibrate_clique_belief": 0.003222221042960882,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestBeliefPropagation::test_calibrate_sepset_belief": 0.00333538674749434,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestBeliefPropagation::test_issue_1048": 0.05031612329185009,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestBeliefPropagation::test_map_query": 0.007160646608099341,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestBeliefPropagation::test_map_query_common_var": 0.0026946670841425657,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestBeliefPropagation::test_map_query_with_evidence": 0.007260572165250778,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestBeliefPropagation::test_max_calibrate_clique_belief": 0.0027182241901755333,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestBeliefPropagation::test_max_calibrate_sepset_belief": 0.0028572010342031717,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestBeliefPropagation::test_query_common_var": 0.0033248402178287506,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestBeliefPropagation::test_query_multiple_variable": 0.007077847607433796,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestBeliefPropagation::test_query_multiple_variable_with_evidence": 0.007014050148427486,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestBeliefPropagation::test_query_single_variable": 0.007061582058668137,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestBeliefPropagation::test_query_single_variable_with_evidence": 0.006915193051099777,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestSnowNetworkTorch::test_elimination_order": 0.021273738937452435,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestSnowNetworkTorch::test_joint_distribution": 0.011033541988581419,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestSnowNetworkTorch::test_queries": 0.011722570983693004,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestSnowNetworkTorch::test_virt_evidence": 0.15736004919745028,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationDuplicatedFactors::test_duplicated_factors": 0.0007746999617666006,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationMarkov::test_induced_graph": 0.0007780662272125483,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationMarkov::test_induced_width": 0.0007682149298489094,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationMarkov::test_issue_1421": 0.0018269401043653488,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationMarkov::test_map_query": 0.0012881129514425993,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationMarkov::test_map_query_with_evidence": 0.0017313039861619473,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationMarkov::test_max_marginal": 0.0011423618998378515,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationMarkov::test_max_marginal_var": 0.0019694550428539515,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationMarkov::test_max_marginal_var1": 0.002938942052423954,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationMarkov::test_max_marginal_var2": 0.002372931921854615,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationMarkov::test_query_multiple_times": 0.0040647839196026325,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationMarkov::test_query_multiple_variable": 0.0011402738746255636,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationMarkov::test_query_multiple_variable_with_evidence": 0.0011398843489587307,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationMarkov::test_query_single_variable": 0.0012210567947477102,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationMarkov::test_query_single_variable_with_evidence": 0.0011266367509961128,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationTorch::test_elimination_order": 0.00990106980316341,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationTorch::test_induced_graph": 0.001320800045505166,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationTorch::test_induced_width": 0.0013040478806942701,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationTorch::test_map_query": 0.007845340063795447,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationTorch::test_map_query_common_var": 0.0012369519099593163,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationTorch::test_map_query_with_evidence": 0.003575804177671671,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationTorch::test_max_marginal": 0.0023385798558592796,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationTorch::test_max_marginal_common_var": 0.0012080359738320112,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationTorch::test_max_marginal_var": 0.0018421069253236055,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationTorch::test_max_marginal_var1": 0.002039209008216858,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationTorch::test_max_marginal_var2": 0.002359844045713544,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationTorch::test_query_common_var": 0.0012059728614985943,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationTorch::test_query_multiple_times": 0.05310876714065671,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationTorch::test_query_multiple_variable": 0.008179804077371955,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationTorch::test_query_multiple_variable_with_evidence": 0.010146629298105836,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationTorch::test_query_single_variable": 0.006909264018759131,
"pgmpy/tests/test_inference/test_ExactInferenceTorch.py::TestVariableEliminationTorch::test_query_single_variable_with_evidence": 0.006197878159582615,
"pgmpy/tests/test_inference/test_Inference.py::TestInferenceBase::test_bayesian_inference_init": 0.0016681659035384655,
"pgmpy/tests/test_inference/test_Inference.py::TestInferenceBase::test_markov_inference_init": 0.0009609411936253309,
"pgmpy/tests/test_inference/test_bn_inference.py::TestBnInference::test_bn_probability": 0.010724984109401703,
"pgmpy/tests/test_inference/test_dbn_inference.py::TestDBNInference::test_backward_inf_multiple_variables": 0.011827047914266586,
"pgmpy/tests/test_inference/test_dbn_inference.py::TestDBNInference::test_backward_inf_multiple_variables_with_evidence": 0.0179581290576607,
"pgmpy/tests/test_inference/test_dbn_inference.py::TestDBNInference::test_backward_inf_single_variable": 0.012019936228170991,
"pgmpy/tests/test_inference/test_dbn_inference.py::TestDBNInference::test_backward_inf_single_variable_with_evidence": 0.022689223056659102,
"pgmpy/tests/test_inference/test_dbn_inference.py::TestDBNInference::test_forward_inf_multiple_variable": 0.01137700374238193,
"pgmpy/tests/test_inference/test_dbn_inference.py::TestDBNInference::test_forward_inf_multiple_variable_with_evidence": 0.0113495416007936,
"pgmpy/tests/test_inference/test_dbn_inference.py::TestDBNInference::test_forward_inf_single_variable": 0.010528424987569451,
"pgmpy/tests/test_inference/test_dbn_inference.py::TestDBNInference::test_forward_inf_single_variable_with_evidence": 0.014408235205337405,
"pgmpy/tests/test_inference/test_dbn_inference.py::TestDBNInference::test_super_connected_network": 0.011611338937655091,
"pgmpy/tests/test_inference/test_elimination_order.py::TestBaseElimination::test_cost": 0.007096623070538044,
"pgmpy/tests/test_inference/test_elimination_order.py::TestBaseElimination::test_fill_in_edges": 0.006608079187572002,
"pgmpy/tests/test_inference/test_elimination_order.py::TestMinFill::test_cost": 0.007041047094389796,
"pgmpy/tests/test_inference/test_elimination_order.py::TestMinFill::test_elimination_order": 0.0065010241232812405,
"pgmpy/tests/test_inference/test_elimination_order.py::TestMinFill::test_elimination_order_given_nodes": 0.006822660099714994,
"pgmpy/tests/test_inference/test_elimination_order.py::TestMinNeighbors::test_cost": 0.0065650001633912325,
"pgmpy/tests/test_inference/test_elimination_order.py::TestMinNeighbors::test_elimination_order": 0.006953564938157797,
"pgmpy/tests/test_inference/test_elimination_order.py::TestMinNeighbors::test_elimination_order_given_nodes": 0.006937883095815778,
"pgmpy/tests/test_inference/test_elimination_order.py::TestMinWeight::test_cost": 0.0070794387720525265,
"pgmpy/tests/test_inference/test_elimination_order.py::TestMinWeight::test_elimination_order": 0.007330853026360273,
"pgmpy/tests/test_inference/test_elimination_order.py::TestMinWeight::test_elimination_order_given_nodes": 0.006530950777232647,
"pgmpy/tests/test_inference/test_elimination_order.py::TestWeightedMinFill::test_cost": 0.006707490887492895,
"pgmpy/tests/test_inference/test_elimination_order.py::TestWeightedMinFill::test_elimination_order": 0.006679638056084514,
"pgmpy/tests/test_inference/test_elimination_order.py::TestWeightedMinFill::test_elimination_order_given_nodes": 0.0067195468582212925,
"pgmpy/tests/test_inference/test_mplp.py::TightenTripletOff::test_query_tighten_triplet_off": 1.405311336973682,
"pgmpy/tests/test_inference/test_mplp.py::TightenTripletOn::test_query_tighten_triplet_on": 1.299274506047368,
"pgmpy/tests/test_metrics/test_metrics.py::TestCorrelationScore::test_discrete_network": 28.848190620308742,
"pgmpy/tests/test_metrics/test_metrics.py::TestCorrelationScore::test_input": 1.4786663888953626,
"pgmpy/tests/test_metrics/test_metrics.py::TestImpliedCI::test_fisher_c": 32.322927724104375,
"pgmpy/tests/test_metrics/test_metrics.py::TestImpliedCI::test_implied_cis": 9.28535774582997,
"pgmpy/tests/test_metrics/test_metrics.py::TestLogLikelihoodScore::test_discrete_network": 1.4991977370809764,
"pgmpy/tests/test_metrics/test_metrics.py::TestLogLikelihoodScore::test_input": 1.226853583008051,
"pgmpy/tests/test_metrics/test_metrics.py::TestStructureScore::test_discrete_network": 2.1834044109564275,
"pgmpy/tests/test_metrics/test_metrics.py::TestStructureScore::test_input": 1.2752224309369922,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBaseModelCreation::test_add_edge_nonstring": 0.0005272144917398691,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBaseModelCreation::test_add_edge_result_cycle": 0.00031102215871214867,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBaseModelCreation::test_add_edge_selfloop": 0.0002784228418022394,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBaseModelCreation::test_add_edge_string": 0.00031939311884343624,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBaseModelCreation::test_add_edges_from_nonstring": 0.0005398180801421404,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBaseModelCreation::test_add_edges_from_result_cycle": 0.0006993738934397697,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBaseModelCreation::test_add_edges_from_self_loop": 0.0004106629639863968,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBaseModelCreation::test_add_edges_from_string": 0.0003682700917124748,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBaseModelCreation::test_add_node_nonstring": 0.00029814010486006737,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBaseModelCreation::test_add_node_string": 0.0002761990763247013,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBaseModelCreation::test_add_nodes_from_non_string": 0.0002788449637591839,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBaseModelCreation::test_add_nodes_from_string": 0.00027860491536557674,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBaseModelCreation::test_class_init_with_data_nonstring": 0.00036702421493828297,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBaseModelCreation::test_class_init_with_data_string": 0.0003636307083070278,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBaseModelCreation::test_class_init_without_data": 0.00027235085144639015,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBaseModelCreation::test_update_node_parents": 0.0003104293718934059,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBaseModelCreation::test_update_node_parents_bm_constructor": 0.0003818219993263483,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelCPD::test_active_trail_nodes": 0.0005372241139411926,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelCPD::test_active_trail_nodes_args": 0.0006810501217842102,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelCPD::test_add_multiple_cpds": 0.001000015065073967,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelCPD::test_add_single_cpd": 0.0005164642352610826,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelCPD::test_check_model": 0.0009422190487384796,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelCPD::test_check_model1": 0.0007179779931902885,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelCPD::test_check_model2": 0.0006791581399738789,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelCPD::test_get_cpds": 0.0006290818564593792,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelCPD::test_get_cpds1": 0.0006586960516870022,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelCPD::test_is_dconnected": 0.00047217216342687607,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelCPD::test_is_dconnected_args": 0.00047636101953685284,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelCPD::test_is_dconnected_triplets": 0.00058312201872468,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelFitPredict::test_bayesian_fit": 0.007496347185224295,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelFitPredict::test_connected_predict": 3.0217510701622814,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelFitPredict::test_connected_predict_probability": 0.020030152052640915,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelFitPredict::test_disconnected_fit": 0.009578391909599304,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelFitPredict::test_do": 0.004104691790416837,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelFitPredict::test_fit_missing_data": 0.007153821876272559,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelFitPredict::test_fit_update": 0.9806155227124691,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelFitPredict::test_predict": 0.05857380572706461,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelFitPredict::test_predict_probability_errors": 0.01902903732843697,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelFitPredict::test_predict_stochastic": 0.07648551394231617,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelFitPredict::test_simulate": 0.9340697852894664,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelMethods::test_copy": 0.001202670857310295,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelMethods::test_get_ancestors_of_failure": 0.0009063028264790773,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelMethods::test_get_ancestors_of_success": 0.0007794168777763844,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelMethods::test_get_cardinality": 0.0007729220669716597,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelMethods::test_get_cardinality_with_node": 0.0008652517572045326,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelMethods::test_get_immoralities": 0.0010773721151053905,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelMethods::test_get_independencies": 0.001494870986789465,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelMethods::test_get_random": 0.003772901138290763,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelMethods::test_is_iequivalent": 0.0014554779045283794,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelMethods::test_is_imap": 0.0010657040402293205,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelMethods::test_local_independencies": 0.0012207657564431429,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelMethods::test_markov_blanket": 0.0010803558398038149,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelMethods::test_markov_blanket_G3": 0.0008262926712632179,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelMethods::test_moral_graph": 0.0008691721595823765,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelMethods::test_moral_graph_with_edge_present_over_parents": 0.001044596079736948,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelMethods::test_remove_node": 0.0008725840598344803,
"pgmpy/tests/test_models/test_BayesianModel.py::TestBayesianModelMethods::test_remove_nodes_from": 0.0009045789483934641,
"pgmpy/tests/test_models/test_BayesianModel.py::TestDAGCPDOperations::test_add_multiple_cpds": 0.0004954829346388578,
"pgmpy/tests/test_models/test_BayesianModel.py::TestDAGCPDOperations::test_add_single_cpd": 0.0003352330531924963,
"pgmpy/tests/test_models/test_BayesianModel.py::TestDAGCPDOperations::test_get_values_for_node": 0.0006035871338099241,
"pgmpy/tests/test_models/test_BayesianModel.py::TestDAGCPDOperations::test_get_values_raises_error": 0.00038934405893087387,
"pgmpy/tests/test_models/test_BayesianModel.py::TestDAGCPDOperations::test_remove_multiple_cpds": 0.0003777176607400179,
"pgmpy/tests/test_models/test_BayesianModel.py::TestDAGCPDOperations::test_remove_multiple_cpds_string": 0.00040779029950499535,
"pgmpy/tests/test_models/test_BayesianModel.py::TestDAGCPDOperations::test_remove_single_cpd": 0.00038654590025544167,
"pgmpy/tests/test_models/test_BayesianModel.py::TestDAGCPDOperations::test_remove_single_cpd_string": 0.0004158399533480406,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBaseModelCreation::test_add_edge_nonstring": 0.0003196729812771082,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBaseModelCreation::test_add_edge_result_cycle": 0.00027524284087121487,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBaseModelCreation::test_add_edge_selfloop": 0.00025115511380136013,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBaseModelCreation::test_add_edge_string": 0.0002829493023455143,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBaseModelCreation::test_add_edges_from_nonstring": 0.00025562779046595097,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBaseModelCreation::test_add_edges_from_result_cycle": 0.0002661400940269232,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBaseModelCreation::test_add_edges_from_self_loop": 0.0002452272456139326,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBaseModelCreation::test_add_edges_from_string": 0.0002908830065280199,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBaseModelCreation::test_add_node_nonstring": 0.0002458249218761921,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBaseModelCreation::test_add_node_string": 0.00024294806644320488,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBaseModelCreation::test_add_nodes_from_non_string": 0.00024359207600355148,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBaseModelCreation::test_add_nodes_from_string": 0.0002485488075762987,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBaseModelCreation::test_class_init_with_data_nonstring": 0.0003045240882784128,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBaseModelCreation::test_class_init_with_data_string": 0.00028813001699745655,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBaseModelCreation::test_class_init_without_data": 0.0002377477940171957,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBaseModelCreation::test_update_node_parents": 0.00035667605698108673,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBaseModelCreation::test_update_node_parents_bm_constructor": 0.0006618311163038015,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelCPD::test_active_trail_nodes": 0.0005023358389735222,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelCPD::test_active_trail_nodes_args": 0.00046061817556619644,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelCPD::test_add_multiple_cpds": 0.0009379081893712282,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelCPD::test_add_single_cpd": 0.0005865087732672691,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelCPD::test_check_model": 0.0009072588291019201,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelCPD::test_check_model1": 0.0006647161208093166,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelCPD::test_check_model2": 0.0005482062697410583,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelCPD::test_check_model3": 0.002092975191771984,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelCPD::test_get_cpds": 0.0007161411922425032,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelCPD::test_get_cpds1": 0.0005423598922789097,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelCPD::test_is_dconnected": 0.0007796040736138821,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelCPD::test_is_dconnected_args": 0.00046237395144999027,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelCPD::test_is_dconnected_triplets": 0.00045863003470003605,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelFitPredict::test_bayesian_fit": 0.008218239760026336,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelFitPredict::test_connected_predict": 0.02594841062091291,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelFitPredict::test_connected_predict_probability": 0.015099412994459271,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelFitPredict::test_disconnected_fit": 0.009816296864300966,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelFitPredict::test_fit_missing_data": 0.007333469111472368,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelFitPredict::test_fit_update": 1.0385098471306264,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelFitPredict::test_predict": 0.05176849104464054,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelFitPredict::test_predict_probability_errors": 0.009782752953469753,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelFitPredict::test_predict_stochastic": 0.05739165912382305,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_copy": 0.0014482471160590649,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_do": 0.0013695417437702417,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_get_ancestors_of_failure": 0.0006531861145049334,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_get_ancestors_of_success": 0.0007315929979085922,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_get_cardinality": 0.0006323740817606449,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_get_cardinality_with_node": 0.000632918905466795,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_get_immoralities": 0.0009128618985414505,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_get_independencies": 0.001014303881675005,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_get_random": 0.003105896059423685,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_get_random_cpds": 0.004488748265430331,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_is_iequivalent": 0.0018116568680852652,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_is_imap": 0.0008638054132461548,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_load_save": 16.120614666957408,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_local_independencies": 0.0007765020709484816,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_markov_blanket": 0.0008524821605533361,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_markov_blanket_G3": 0.0006453562527894974,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_moral_graph": 0.0007107129786163568,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_moral_graph_with_edge_present_over_parents": 0.0008428860455751419,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_remove_node": 0.0007042377255856991,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_remove_nodes_from": 0.0007146000862121582,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_simulate": 19.722444768995047,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelMethods::test_states": 0.00076147704385221,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestBayesianModelSampleProb::test_prob_values": 1.409806763054803,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestDAGCPDOperations::test_add_multiple_cpds": 0.00042037805542349815,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestDAGCPDOperations::test_add_single_cpd": 0.00028875074349343777,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestDAGCPDOperations::test_get_values_for_node": 0.0005598999559879303,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestDAGCPDOperations::test_get_values_raises_error": 0.0003778750542551279,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestDAGCPDOperations::test_remove_multiple_cpds": 0.0003362302668392658,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestDAGCPDOperations::test_remove_multiple_cpds_string": 0.00035157310776412487,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestDAGCPDOperations::test_remove_single_cpd": 0.0003307813312858343,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestDAGCPDOperations::test_remove_single_cpd_string": 0.0003561200574040413,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestSimulation::test_simulate": 1.2995121402200311,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestSimulation::test_simulate_evidence": 6.228110086871311,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestSimulation::test_simulate_intervention": 1.9897767959628254,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestSimulation::test_simulate_virtual_evidence": 5.9707741709426045,
"pgmpy/tests/test_models/test_BayesianNetwork.py::TestSimulation::test_simulate_virtual_intervention": 1.9769625910557806,
"pgmpy/tests/test_models/test_ClusterGraph.py::TestClusterGraphCreation::test_add_multiple_nodes": 0.00033269799314439297,
"pgmpy/tests/test_models/test_ClusterGraph.py::TestClusterGraphCreation::test_add_single_edge": 0.0002595079131424427,
"pgmpy/tests/test_models/test_ClusterGraph.py::TestClusterGraphCreation::test_add_single_edge_raises_error": 0.0002533418592065573,
"pgmpy/tests/test_models/test_ClusterGraph.py::TestClusterGraphCreation::test_add_single_node": 0.00023929285816848278,
"pgmpy/tests/test_models/test_ClusterGraph.py::TestClusterGraphCreation::test_add_single_node_raises_error": 0.00027164584025740623,
"pgmpy/tests/test_models/test_ClusterGraph.py::TestClusterGraphFactorOperations::test_add_multiple_factors": 0.0004250248894095421,
"pgmpy/tests/test_models/test_ClusterGraph.py::TestClusterGraphFactorOperations::test_add_single_factor": 0.00033768382854759693,
"pgmpy/tests/test_models/test_ClusterGraph.py::TestClusterGraphFactorOperations::test_add_single_factor_raises_error": 0.0002845821436494589,
"pgmpy/tests/test_models/test_ClusterGraph.py::TestClusterGraphFactorOperations::test_get_factors": 0.0005164409521967173,
"pgmpy/tests/test_models/test_ClusterGraph.py::TestClusterGraphFactorOperations::test_get_partition_function": 0.00037268688902258873,
"pgmpy/tests/test_models/test_ClusterGraph.py::TestClusterGraphFactorOperations::test_remove_factors": 0.0004730371292680502,
"pgmpy/tests/test_models/test_ClusterGraph.py::TestClusterGraphMethods::test_check_model": 0.0010156561620533466,
"pgmpy/tests/test_models/test_ClusterGraph.py::TestClusterGraphMethods::test_check_model1": 0.00043720402754843235,
"pgmpy/tests/test_models/test_ClusterGraph.py::TestClusterGraphMethods::test_check_model2": 0.0004846800584346056,
"pgmpy/tests/test_models/test_ClusterGraph.py::TestClusterGraphMethods::test_copy_with_factors": 0.000742295989766717,
"pgmpy/tests/test_models/test_ClusterGraph.py::TestClusterGraphMethods::test_copy_without_factors": 0.0002849721349775791,
"pgmpy/tests/test_models/test_ClusterGraph.py::TestClusterGraphMethods::test_get_cardinality": 0.00037198420614004135,
"pgmpy/tests/test_models/test_ClusterGraph.py::TestClusterGraphMethods::test_get_cardinality_with_node": 0.0003503661137074232,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDBNSampling::test_simulate_evidence_more_than_two_slices": 6.771689979359508,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDBNSampling::test_simulate_evidence_two_slices": 3.7340122887399048,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDBNSampling::test_simulate_intervention": 1.087555875070393,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDBNSampling::test_simulate_more_than_two_slices": 0.44130539684556425,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDBNSampling::test_simulate_two_slices": 0.28752212482504547,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDBNSampling::test_simulate_virtual_evidence": 1.3693847712129354,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDBNSampling::test_simulate_virtual_intervention": 1.513501392211765,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkCreation::test_add_edge_going_backward": 0.00033445912413299084,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkCreation::test_add_edge_with_closed_path": 0.0002938830293715,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkCreation::test_add_edge_with_different_number_timeslice": 0.0002559409476816654,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkCreation::test_add_edge_with_farther_timeslice": 0.00022929301485419273,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkCreation::test_add_edge_with_self_loop": 0.00023484299890697002,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkCreation::test_add_edge_with_varying_length": 0.00023333309218287468,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkCreation::test_add_multiple_edges": 0.00029893708415329456,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkCreation::test_add_multiple_nodes": 0.0002542720176279545,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkCreation::test_add_single_edge_with_incorrect_timeslice": 0.00024151173420250416,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkCreation::test_add_single_edge_with_timeslice": 0.0002524482551962137,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkCreation::test_add_single_edge_without_timeslice": 0.00023825094103813171,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkCreation::test_add_single_node": 0.0002606138586997986,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods2::test_check_model": 0.0011381600052118301,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods2::test_check_model1": 0.0006768368184566498,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods2::test_check_model2": 0.0011250018142163754,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods3::test_initialize_and_infer1": 0.013152689207345247,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods3::test_initialize_and_infer2": 0.0238701228518039,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods3::test_initialize_and_infer3": 0.042003493290394545,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods::test_active_trail_nodes": 0.0005347291007637978,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods::test_add_multiple_cpds": 0.0005058569367974997,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods::test_add_single_cpds": 0.0004631767515093088,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods::test_copy": 0.0015596291050314903,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods::test_fit": 0.06507528899237514,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods::test_get_constant_bn": 0.0036619878374040127,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods::test_get_cpds": 0.0033834432251751423,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods::test_get_interface_nodes": 0.0005056781228631735,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods::test_get_interface_nodes_1node2edges_divergent_edges": 0.00047535100020468235,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods::test_get_interface_nodes_convergent_edges": 0.00048539508134126663,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods::test_get_intra_and_inter_edges": 0.0005015409551560879,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods::test_get_markov_blanket": 0.0012056422419846058,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods::test_get_slice_nodes": 0.000568905845284462,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods::test_initialize_initial_state": 0.0030699169728904963,
"pgmpy/tests/test_models/test_DynamicBayesianNetwork.py::TestDynamicBayesianNetworkMethods::test_moralize": 0.0005245271604508162,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphCreation::test_add_multiple_edges": 0.0003106817603111267,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphCreation::test_add_multiple_nodes": 0.00023452402092516422,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphCreation::test_add_self_loop_raises_error": 0.0002890508621931076,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphCreation::test_add_single_edge": 0.000297419261187315,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphCreation::test_add_single_node": 0.00022199307568371296,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphCreation::test_class_init_data_string": 0.0002477101515978575,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphCreation::test_class_init_without_data": 0.00022770464420318604,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphFactorOperations::test_add_multiple_factors": 0.0005384969990700483,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphFactorOperations::test_add_single_factor": 0.000308566028252244,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphFactorOperations::test_get_factors": 0.00613401597365737,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphFactorOperations::test_get_partition_function": 0.0023287220392376184,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphFactorOperations::test_get_point_mass_message": 0.0003559100441634655,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphFactorOperations::test_get_uniform_message": 0.00033589801751077175,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphFactorOperations::test_remove_factors": 0.0005225441418588161,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphMethods::test_check_model": 0.003238606033846736,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphMethods::test_check_model1": 0.0018858800176531076,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphMethods::test_check_model2": 0.0018469050992280245,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphMethods::test_check_model3": 0.0029469819273799658,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphMethods::test_check_model4": 0.0039518726989626884,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphMethods::test_copy": 0.0022440177854150534,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphMethods::test_get_cardinality": 0.00041783321648836136,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphMethods::test_get_cardinality_with_node": 0.00045676901936531067,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphMethods::test_get_factor_nodes": 0.0030075297690927982,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphMethods::test_get_variable_nodes": 0.0018220290075987577,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphMethods::test_get_variable_nodes_raises_error": 0.0002710286062210798,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphMethods::test_to_junction_tree": 0.0020148069597780704,
"pgmpy/tests/test_models/test_FactorGraph.py::TestFactorGraphMethods::test_to_markov_model": 0.00202085985802114,
"pgmpy/tests/test_models/test_JunctionTree.py::TestJunctionTreeCopy::test_copy_with_factorchanges": 0.0004008072428405285,
"pgmpy/tests/test_models/test_JunctionTree.py::TestJunctionTreeCopy::test_copy_with_factors": 0.0006437720730900764,
"pgmpy/tests/test_models/test_JunctionTree.py::TestJunctionTreeCopy::test_copy_with_nodes": 0.0003375087399035692,
"pgmpy/tests/test_models/test_JunctionTree.py::TestJunctionTreeCreation::test_add_cyclic_path_raises_error": 0.00036527891643345356,
"pgmpy/tests/test_models/test_JunctionTree.py::TestJunctionTreeCreation::test_add_multiple_nodes": 0.0002495956141501665,
"pgmpy/tests/test_models/test_JunctionTree.py::TestJunctionTreeCreation::test_add_single_edge": 0.0002559148706495762,
"pgmpy/tests/test_models/test_JunctionTree.py::TestJunctionTreeCreation::test_add_single_edge_raises_error": 0.0002464619465172291,
"pgmpy/tests/test_models/test_JunctionTree.py::TestJunctionTreeCreation::test_add_single_node": 0.00023742788471281528,
"pgmpy/tests/test_models/test_JunctionTree.py::TestJunctionTreeCreation::test_add_single_node_raises_error": 0.0002627789508551359,
"pgmpy/tests/test_models/test_JunctionTree.py::TestJunctionTreeMethods::test_check_model": 0.0005296820309013128,
"pgmpy/tests/test_models/test_JunctionTree.py::TestJunctionTreeMethods::test_states": 0.0004282069858163595,
"pgmpy/tests/test_models/test_LinearGaussianBayesianNetwork.py::TestLGBNMethods::test_add_cpds": 0.0004619129467755556,
"pgmpy/tests/test_models/test_LinearGaussianBayesianNetwork.py::TestLGBNMethods::test_check_model": 0.00034039816819131374,
"pgmpy/tests/test_models/test_LinearGaussianBayesianNetwork.py::TestLGBNMethods::test_cpds_simple": 0.0003148629330098629,
"pgmpy/tests/test_models/test_LinearGaussianBayesianNetwork.py::TestLGBNMethods::test_get_random_cpds": 1.094618600094691,
"pgmpy/tests/test_models/test_LinearGaussianBayesianNetwork.py::TestLGBNMethods::test_not_implemented_methods": 0.00032645324245095253,
"pgmpy/tests/test_models/test_LinearGaussianBayesianNetwork.py::TestLGBNMethods::test_simulate": 0.0039173460099846125,
"pgmpy/tests/test_models/test_LinearGaussianBayesianNetwork.py::TestLGBNMethods::test_to_joint_gaussian": 0.0007404857315123081,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_add_transition_model_bad_probability": 0.0013391650281846523,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_add_transition_model_bad_probability_sum": 0.001153427641838789,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_add_transition_model_bad_states": 0.001081170979887247,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_add_transition_model_bad_transition": 0.001151334960013628,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_add_transition_model_bad_type": 0.0011180457659065723,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_add_transition_model_success": 0.001215124037116766,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_add_variable_new": 0.0015384587459266186,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_add_variables_from": 0.002308916999027133,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_check_state_bad_type": 0.0012535080313682556,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_check_state_bad_var_value": 0.0011111290659755468,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_check_state_bad_vars": 0.0011055551003664732,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_check_state_success": 0.0010929631534963846,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_copy": 0.001420790795236826,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_generate_sample": 0.001394391991198063,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_generate_sample_less_arg": 0.002181749092414975,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_init": 0.002155281137675047,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_init_bad_card_type": 0.0011160771828144789,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_init_bad_variables_type": 0.0010983601678162813,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_init_less_args": 0.0010884839575737715,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_is_stationarity_failure": 1.835131763247773,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_is_stationarity_success": 0.0010729250498116016,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_prob_from_sample": 0.0030531990341842175,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_random_state": 0.0018734799232333899,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_sample": 0.0016915940213948488,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_sample_less_arg": 0.0016672809142619371,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_set_start_state_list": 0.0016253581270575523,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_set_start_state_none": 0.0007650700863450766,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_transition_model_bad_matrix_dimension": 0.0007886169478297234,
"pgmpy/tests/test_models/test_MarkovChain.py::TestMarkovChain::test_transition_model_dict_to_matrix": 0.0009261867962777615,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelCreation::test_add_edge_nonstring": 0.0003412580117583275,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelCreation::test_add_edge_selfloop": 0.00026825605891644955,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelCreation::test_add_edge_string": 0.00029236706905066967,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelCreation::test_add_edges_from_nonstring": 0.0002758544869720936,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelCreation::test_add_edges_from_self_loop": 0.00026717688888311386,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelCreation::test_add_edges_from_string": 0.00028730789199471474,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelCreation::test_add_node_nonstring": 0.00025578076019883156,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelCreation::test_add_node_string": 0.0002586771734058857,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelCreation::test_add_nodes_from_non_string": 0.0002727340906858444,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelCreation::test_add_nodes_from_string": 0.00027133990079164505,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelCreation::test_class_init_with_data_nonstring": 0.00033652596175670624,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelCreation::test_class_init_with_data_string": 0.0003204860258847475,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelCreation::test_class_init_without_data": 0.0002692097332328558,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelCreation::test_number_of_neighbors": 0.00029137381352484226,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelMethods::test_bayesian_model": 0.001824007835239172,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelMethods::test_check_model": 0.0003597347531467676,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelMethods::test_check_model1": 0.0003990810364484787,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelMethods::test_check_model2": 0.0004627620801329613,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelMethods::test_check_model3": 0.0004577350337058306,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelMethods::test_factor_graph": 0.0003625946119427681,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelMethods::test_factor_graph_raises_error": 0.0002751089632511139,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelMethods::test_get_cardinality": 0.00038715475238859653,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelMethods::test_get_cardinality_with_node": 0.0003245919942855835,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelMethods::test_junction_tree": 0.001800397876650095,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelMethods::test_junction_tree_single_clique": 0.0006463620811700821,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelMethods::test_local_independencies": 0.0002992881927639246,
"pgmpy/tests/test_models/test_MarkovModel.py::TestMarkovModelMethods::test_markov_blanket": 0.00028060306794941425,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphFactorOperations::test_add_factor_raises_error": 0.0003508592490106821,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphFactorOperations::test_add_multiple_factors": 0.0003997189924120903,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphFactorOperations::test_add_single_factor": 0.00034746783785521984,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphFactorOperations::test_get_factors": 0.0004273117519915104,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphFactorOperations::test_partition_function": 0.0003686572890728712,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphFactorOperations::test_partition_function_raises_error": 0.00034776213578879833,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphFactorOperations::test_remove_multiple_factors": 0.0003180180210620165,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphFactorOperations::test_remove_single_factor": 0.000545112881809473,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphTriangulation::test_cardinality_mismatch_raises_error": 0.0005091354250907898,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphTriangulation::test_check_clique": 0.00031083403155207634,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphTriangulation::test_copy": 0.000699521042406559,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphTriangulation::test_is_triangulated": 0.0002800298389047384,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphTriangulation::test_triangulation_h1_create_new": 0.001303114928305149,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphTriangulation::test_triangulation_h1_inplace": 0.0014221679884940386,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphTriangulation::test_triangulation_h2_create_new": 0.0014077299274504185,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphTriangulation::test_triangulation_h2_inplace": 0.0014869407750666142,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphTriangulation::test_triangulation_h3_create_new": 0.0012738208752125502,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphTriangulation::test_triangulation_h3_inplace": 0.0014184361789375544,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphTriangulation::test_triangulation_h4_create_new": 0.0012361949775367975,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphTriangulation::test_triangulation_h4_inplace": 0.001466468209400773,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphTriangulation::test_triangulation_h5_create_new": 0.0020226638298481703,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphTriangulation::test_triangulation_h5_inplace": 0.001824796898290515,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphTriangulation::test_triangulation_h6_create_new": 0.0012853930238634348,
"pgmpy/tests/test_models/test_MarkovModel.py::TestUndirectedGraphTriangulation::test_triangulation_h6_inplace": 0.0014395741745829582,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkCreation::test_add_edge_nonstring": 0.00029490399174392223,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkCreation::test_add_edge_selfloop": 0.00024629896506667137,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkCreation::test_add_edge_string": 0.00025244313292205334,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkCreation::test_add_edges_from_nonstring": 0.00023769098334014416,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkCreation::test_add_edges_from_self_loop": 0.0002570149954408407,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkCreation::test_add_edges_from_string": 0.0002706728409975767,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkCreation::test_add_node_nonstring": 0.00022575096227228642,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkCreation::test_add_node_string": 0.0002277032472193241,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkCreation::test_add_nodes_from_non_string": 0.00022835633717477322,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkCreation::test_add_nodes_from_string": 0.00022880989126861095,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkCreation::test_class_init_with_data_nonstring": 0.00023235613480210304,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkCreation::test_class_init_with_data_string": 0.00023966794833540916,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkCreation::test_class_init_without_data": 0.00022044312208890915,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkCreation::test_number_of_neighbors": 0.00025137211196124554,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkMethods::test_bayesian_model": 0.001806176034733653,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkMethods::test_check_model": 0.0005942471325397491,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkMethods::test_check_model1": 0.0005432539619505405,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkMethods::test_check_model2": 0.00048808101564645767,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkMethods::test_check_model3": 0.00043126801028847694,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkMethods::test_factor_graph": 0.00034430972300469875,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkMethods::test_factor_graph_raises_error": 0.00023102154955267906,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkMethods::test_get_cardinality": 0.0003348069731146097,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkMethods::test_get_cardinality_with_node": 0.0002825530245900154,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkMethods::test_junction_tree": 0.0014897915534675121,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkMethods::test_junction_tree_single_clique": 0.000598725862801075,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkMethods::test_local_independencies": 0.0002528899349272251,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkMethods::test_markov_blanket": 0.00022568111307919025,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestMarkovNetworkMethods::test_states": 0.00037517608143389225,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphFactorOperations::test_add_factor_raises_error": 0.0003091862890869379,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphFactorOperations::test_add_multiple_factors": 0.0003569850232452154,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphFactorOperations::test_add_single_factor": 0.00031311390921473503,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphFactorOperations::test_get_factors": 0.00040575815364718437,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphFactorOperations::test_partition_function": 0.00033913878723978996,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphFactorOperations::test_partition_function_raises_error": 0.00032534124329686165,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphFactorOperations::test_remove_multiple_factors": 0.0003776156809180975,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphFactorOperations::test_remove_single_factor": 0.0004711712244898081,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphTriangulation::test_cardinality_mismatch_raises_error": 0.0005212919786572456,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphTriangulation::test_check_clique": 0.0003162883222103119,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphTriangulation::test_copy": 0.0008011490572243929,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphTriangulation::test_is_triangulated": 0.0003725290298461914,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphTriangulation::test_triangulation_h1_create_new": 0.00148553098551929,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphTriangulation::test_triangulation_h1_inplace": 0.0012463931925594807,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphTriangulation::test_triangulation_h2_create_new": 0.0011289319954812527,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphTriangulation::test_triangulation_h2_inplace": 0.001201804494485259,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphTriangulation::test_triangulation_h3_create_new": 0.0011107188183814287,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphTriangulation::test_triangulation_h3_inplace": 0.0011995716486126184,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphTriangulation::test_triangulation_h4_create_new": 0.0012201692443341017,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphTriangulation::test_triangulation_h4_inplace": 0.0012048459611833096,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphTriangulation::test_triangulation_h5_create_new": 0.0011300388723611832,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphTriangulation::test_triangulation_h5_inplace": 0.0011918300297111273,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphTriangulation::test_triangulation_h6_create_new": 0.0011026158463209867,
"pgmpy/tests/test_models/test_MarkovNetwork.py::TestUndirectedGraphTriangulation::test_triangulation_h6_inplace": 0.0019023618660867214,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestBaseModelCreation::test_add_edge_nonstring": 0.0004424590151757002,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestBaseModelCreation::test_add_edge_selfloop": 0.00026335311122238636,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestBaseModelCreation::test_add_edge_string": 0.0004410028923302889,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestBaseModelCreation::test_add_edges_from_self_loop": 0.0002465432044118643,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestBaseModelCreation::test_add_node_nonstring": 0.00023761391639709473,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestBaseModelCreation::test_add_node_string": 0.00025613768957555294,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestBaseModelCreation::test_add_nodes_from_non_string": 0.0002484861761331558,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestBaseModelCreation::test_add_nodes_from_string": 0.00025352579541504383,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestBaseModelCreation::test_class_init_with_data_nonstring": 0.00030955299735069275,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestBaseModelCreation::test_class_init_with_data_string": 0.00031537702307105064,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestBaseModelCreation::test_class_init_without_data": 0.0002360781654715538,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestBaseModelCreation::test_update_node_parents": 0.00027422583661973476,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestBaseModelCreation::test_update_node_parents_bm_constructor": 0.0003287151921540499,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestNaiveBayesFit::test_fit_model_creation": 0.016416613943874836,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestNaiveBayesFit::test_fit_model_creation_exception": 0.0005781289655715227,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestNaiveBayesMethods::test_active_trail_nodes": 0.00040337792597711086,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestNaiveBayesMethods::test_active_trail_nodes_args": 0.00035915523767471313,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestNaiveBayesMethods::test_get_ancestors_of": 0.00035697221755981445,
"pgmpy/tests/test_models/test_NaiveBayes.py::TestNaiveBayesMethods::test_local_independencies": 0.00041328719817101955,
"pgmpy/tests/test_models/test_NoisyOrModels.py::TestNoisyOrModelInit::test_exceptions": 0.00034112483263015747,
"pgmpy/tests/test_models/test_NoisyOrModels.py::TestNoisyOrModelInit::test_init": 0.00034414115361869335,
"pgmpy/tests/test_models/test_NoisyOrModels.py::TestNoisyOrModelMethods::test_add_variables": 0.00041384180076420307,
"pgmpy/tests/test_models/test_NoisyOrModels.py::TestNoisyOrModelMethods::test_del_multiple_variables": 0.00034901523031294346,
"pgmpy/tests/test_models/test_NoisyOrModels.py::TestNoisyOrModelMethods::test_del_variables": 0.0003493819385766983,
"pgmpy/tests/test_models/test_SEM.py::TestSEM::test_from_graph": 0.0005845630075782537,
"pgmpy/tests/test_models/test_SEM.py::TestSEM::test_from_lavaan": 0.010214259149506688,
"pgmpy/tests/test_models/test_SEM.py::TestSEM::test_from_lisrel": 0.0003177130129188299,
"pgmpy/tests/test_models/test_SEM.py::TestSEM::test_from_ram": 0.00033826311118900776,
"pgmpy/tests/test_models/test_SEM.py::TestSEMAlg::test_generate_samples": 0.0014846550766378641,
"pgmpy/tests/test_models/test_SEM.py::TestSEMGraph::test_active_trail_nodes": 0.0014326300006359816,
"pgmpy/tests/test_models/test_SEM.py::TestSEMGraph::test_demo_init": 0.0010621920228004456,
"pgmpy/tests/test_models/test_SEM.py::TestSEMGraph::test_demo_param_init": 0.0011206930503249168,
"pgmpy/tests/test_models/test_SEM.py::TestSEMGraph::test_get_conditional_ivs_demo": 0.23221701779402792,
"pgmpy/tests/test_models/test_SEM.py::TestSEMGraph::test_get_conditional_ivs_union": 0.004111686954274774,
"pgmpy/tests/test_models/test_SEM.py::TestSEMGraph::test_get_full_graph_struct": 0.0009850850328803062,
"pgmpy/tests/test_models/test_SEM.py::TestSEMGraph::test_get_ivs_custom": 0.0011325790546834469,
"pgmpy/tests/test_models/test_SEM.py::TestSEMGraph::test_get_ivs_demo": 0.0015448189806193113,
"pgmpy/tests/test_models/test_SEM.py::TestSEMGraph::test_get_ivs_union": 0.0008485072758048773,
"pgmpy/tests/test_models/test_SEM.py::TestSEMGraph::test_get_scaling_indicators": 0.0006959820166230202,