forked from pgmpy/pgmpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.test_durations
More file actions
3137 lines (3137 loc) · 577 KB
/
.test_durations
File metadata and controls
3137 lines (3137 loc) · 577 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"pgmpy/tests/test_base/test_ADMG.py::TestADMGEdgeOperations::test_add_bidirected_edges": 0.00040071700001931276,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGEdgeOperations::test_add_bidirected_edgess_batch": 0.0004107169999940652,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGEdgeOperations::test_add_directed_edges": 0.0004816989999767429,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGEdgeOperations::test_add_edge_not_implemented": 0.00040926399998397756,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGEdgeOperations::test_cycle_detection": 0.0005872259999648577,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGEdgeOperations::test_none_node_rejection": 0.0005448870000179795,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGEdgeOperations::test_self_bidirected_edge_rejection": 0.0004831009999577418,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGEdgeOperations::testadd_directed_edgess_batch": 0.0004668209999749706,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGGraphOperations::test_admg_equality": 0.0014516190000222196,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGGraphOperations::test_get_ancestral_graph": 0.0007450710000114213,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGGraphOperations::test_get_ancestral_graph_invalid_nodes": 0.0006631979999838222,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGGraphOperations::test_get_markov_blanket": 0.0006079949999673318,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGGraphOperations::test_to_dag": 0.0006998749999809206,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGInitialization::test_empty_initialization": 0.0012381509999954687,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGInitialization::test_initialization_with_bidirected_edges": 0.00038952700001004814,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGInitialization::test_initialization_with_directed_edges": 0.0011002340000345612,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGInitialization::test_initialization_with_latents": 0.00039265200001636913,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGInitialization::test_initialization_with_roles": 0.00045701200005510145,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGInitialization::test_latents_with_role": 0.000601171999988992,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGInitialization::test_latents_without_role": 0.0006577780000327493,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGNodeOperations::test_add_node": 0.0004146240000011403,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGNodeOperations::test_add_nodes_from": 0.00040658999998299805,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGRelationships::test_get_ancestors": 0.0013018390000070212,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGRelationships::test_get_bidirected_parents": 0.0006961580000108825,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGRelationships::test_get_children": 0.0006494810000106099,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGRelationships::test_get_descendants": 0.0008882289999974091,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGRelationships::test_get_directed_parents": 0.0007341899999744328,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGRelationships::test_get_district": 0.0006469559999970897,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGRelationships::test_get_spouses": 0.0006548910000105934,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGRelationships::test_nonexistent_node_error": 0.0007480260000249928,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGSeparation::test_is_m_connected": 0.0007310840000229746,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGSeparation::test_is_m_separated": 0.0008185369999864633,
"pgmpy/tests/test_base/test_ADMG.py::TestADMGSeparation::test_mconnected_nodes": 0.0007808969999700821,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_add_edge_invalid_marks_error": 0.00046342400000298767,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_add_edge_same_node_error": 0.00047309299995390575,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_add_edges_from": 0.00039818199994101633,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_adjacency_matrix": 0.0004280889999961346,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_adjacency_matrix_empty_graph": 0.000370041999985915,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_adjacency_matrix_setter": 0.00039518799999882503,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_copy_preserves_exposures_and_outcomes": 0.00042578399998660643,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_copy_preserves_roles": 0.00041882200002874015,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_equality_with_roles": 0.00045982699998603493,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_exposures_outcomes_empty_when_no_role": 0.00034719699999641307,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_exposures_property_getter": 0.00041552400000455236,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_exposures_property_setter": 0.00036333699998181146,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_get_ancestors": 0.00046939600002815496,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_get_children": 0.0004375979999906576,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_get_descendants": 0.00048437399996714703,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_get_neighbors_basic": 0.0004827010000099108,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_get_neighbors_nonexistent_node": 0.00044976899997095643,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_get_parents": 0.0004424460000223007,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_get_reachable_nodes": 0.0005078279999963797,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_get_spouses": 0.0004674420000299051,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_init_empty": 0.0003947480000192627,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_init_with_edges": 0.0003979609999760214,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_init_with_exposures_and_outcomes": 0.00039829099998200945,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_init_with_roles": 0.00036248699998964184,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_outcomes_property_getter": 0.00041671799996834125,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_outcomes_property_setter": 0.00038742200001706806,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_replacing_exposures_removes_old_ones": 0.0005575600000042868,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_replacing_outcomes_removes_old_ones": 0.0004901659999916319,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_to_dagitty_complex": 0.00042121500001712775,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_to_dagitty_empty": 0.0003682070000081694,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_to_dagitty_simple": 0.0004343499999777123,
"pgmpy/tests/test_base/test_AncestralBase.py::TestAncestralBase::test_with_role_method": 0.0004074200000161454,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_complex_dagitty_model": 0.1164520100000459,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_complex_multi_parent_structure": 0.0008219150000172704,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_deterministic_output": 0.000745018999992908,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_empty_string_vs_empty_structure": 0.0005645640000295771,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_large_dag": 0.0007076009999877897,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_mixed_node_name_types": 0.0005927059999919493,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_numeric_node_names": 0.0005760850000342543,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_r_compatibility_note": 0.0005440360000079636,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_round_trip_dagitty_conversion": 0.018757723000021542,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_round_trip_node_preservation": 0.0006220309999775964,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_sebastiani_round_trip_comparison": 0.1538397260000295,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_self_loops_prevention": 0.0007254930000328841,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_single_node_no_edges": 0.000514680999998518,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_special_character_node_names": 0.0006162009999854945,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_to_dagitty_chain_dag": 0.000563941999985218,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_to_dagitty_complex_dag": 0.000581906000007848,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_to_dagitty_disconnected_components": 0.0005369620000124087,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_to_dagitty_empty_dag": 0.000467091999951208,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_to_dagitty_isolated_nodes": 0.00045022000003314133,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_to_dagitty_only_isolated_nodes": 0.00046764299997903436,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_to_dagitty_simple_dag": 0.0005253289999984645,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_to_lavaan_chain_dag": 0.0004935210000098778,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_to_lavaan_complex_dag": 0.0005481430000031651,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_to_lavaan_disconnected_components": 0.0005387940000218805,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_to_lavaan_empty_dag": 0.0004250030000321203,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_to_lavaan_isolated_nodes": 0.00042709699999932127,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_to_lavaan_simple_dag": 0.0005129779999606399,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_tuple_node_names": 0.0005219839999881515,
"pgmpy/tests/test_base/test_DAG.py::TestDAGConversion::test_unicode_support": 0.0005569700000194189,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_edge_nonstring": 0.0006595309999966048,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_edge_string": 0.0005057439999802682,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_edge_weight": 0.0004570329999751266,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_edges_from_nonstring": 0.00046771200001671787,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_edges_from_string": 0.0005068959999618983,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_edges_from_weight": 0.00048547599999437807,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_node_nonstring": 0.0005017969999698835,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_node_string": 0.0004692360000433382,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_node_weight": 0.0004716010000151982,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_nodes_from_non_string": 0.0004697270000235676,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_add_nodes_from_string": 0.00048294100000134677,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_class_init_with_adj_matrix_dict_of_dict": 0.0008247789999984434,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_class_init_with_adj_matrix_dict_of_list": 0.0007736749999480708,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_class_init_with_data_string": 0.0006334819999551655,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_class_init_with_pd_adj_df": 0.0018491089999770338,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_class_init_without_data": 0.00046215300000085335,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_edge_strength_basic": 0.21476057499998547,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_edge_strength_invalid_edges": 0.0010378160000072967,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_edge_strength_multiple_edges": 0.19564657699999088,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_edge_strength_plotting_to_daft": 1.5104345200000182,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_edge_strength_plotting_with_existing_labels": 0.0008714559999987159,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_edge_strength_skip_latent_edges": 0.2130059190000111,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_edge_strength_specific_edge": 0.09942690199997628,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_edge_strength_stored_in_graph": 0.19402948999999126,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_get_ancestral_graph": 0.0009163299999954688,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_get_leaves": 0.0005359890000136147,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_get_roots": 0.0005199610000374832,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_get_stats": 0.9568460019999634,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_hash": 0.06042606499997305,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_init_with_cycle": 0.0007929109999906814,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_latents_with_role": 0.0008485640000230887,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_latents_without_role": 0.0009714329999894744,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_minimal_dseparator": 0.002628786000002492,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_random_dag": 0.016754582999993772,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_to_daft": 0.013490573000041195,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_to_pdag": 0.0008801220000123067,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_to_pdag_multiple_edges_1": 0.0008449569999982032,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_to_pdag_multiple_edges_2": 0.0007322470000303838,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_to_pdag_single_edge": 0.0006915599999786082,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_to_pdag_v_structure": 0.0007002360000285535,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_update_node_parents": 0.0004913770000030127,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_update_node_parents_bm_constructor": 0.0005869839999661508,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_variable_name_contains_non_string_adj_matrix": 0.0011060240000233534,
"pgmpy/tests/test_base/test_DAG.py::TestDAGCreation::test_variable_name_contains_non_string_mixed_types": 0.0006336420000252474,
"pgmpy/tests/test_base/test_DAG.py::TestDAGMoralization::test_get_children": 0.0006198260000189748,
"pgmpy/tests/test_base/test_DAG.py::TestDAGMoralization::test_get_parents": 0.0005045819999907053,
"pgmpy/tests/test_base/test_DAG.py::TestDAGMoralization::test_moralize": 0.0006364779999898929,
"pgmpy/tests/test_base/test_DAG.py::TestDAGMoralization::test_moralize_disconnected": 0.0007402509999963058,
"pgmpy/tests/test_base/test_DAG.py::TestDAGParser::test_from_daggitty_single_line_with_group_of_vars": 0.009648515000009183,
"pgmpy/tests/test_base/test_DAG.py::TestDAGParser::test_from_dagitty": 0.018894317000018646,
"pgmpy/tests/test_base/test_DAG.py::TestDAGParser::test_from_dagitty_empty": 0.003933410000001913,
"pgmpy/tests/test_base/test_DAG.py::TestDAGParser::test_from_dagitty_isolated_nodes": 0.007949592999977995,
"pgmpy/tests/test_base/test_DAG.py::TestDAGParser::test_from_dagitty_multiline_with_display_info": 0.015012893000005079,
"pgmpy/tests/test_base/test_DAG.py::TestDAGParser::test_from_lavaan": 0.008109953999962727,
"pgmpy/tests/test_base/test_DAG.py::TestDAGParser::test_from_lavaan_with_residual_correlation": 0.002938503999985187,
"pgmpy/tests/test_base/test_DAG.py::TestDoOperator::test_do": 0.001045231000006197,
"pgmpy/tests/test_base/test_MAG.py::TestMAG::test_empty_init": 0.0003945159999716452,
"pgmpy/tests/test_base/test_MAG.py::TestMAG::test_from_dagitty": 0.02158676100000889,
"pgmpy/tests/test_base/test_MAG.py::TestMAG::test_from_dagitty_disconnected_graphs": 0.007726757999989786,
"pgmpy/tests/test_base/test_MAG.py::TestMAG::test_graph_properties": 0.0004364639999607789,
"pgmpy/tests/test_base/test_MAG.py::TestMAG::test_has_inducing_path": 0.0013600289999828874,
"pgmpy/tests/test_base/test_MAG.py::TestMAG::test_is_collider": 0.0004769800000303803,
"pgmpy/tests/test_base/test_MAG.py::TestMAG::test_is_visible_edge": 0.0007188009999765654,
"pgmpy/tests/test_base/test_MAG.py::TestMAG::test_lower_manipulation": 0.0008368320000329277,
"pgmpy/tests/test_base/test_MAG.py::TestMAG::test_roles_and_equality": 0.0007485869999754868,
"pgmpy/tests/test_base/test_MAG.py::TestMAG::test_upper_manipulation": 0.0007446900000047663,
"pgmpy/tests/test_base/test_PDAG.py::TestPDAG::test_all_neighrors": 0.0010395990000233724,
"pgmpy/tests/test_base/test_PDAG.py::TestPDAG::test_copy": 0.001185281000005034,
"pgmpy/tests/test_base/test_PDAG.py::TestPDAG::test_directed_children": 0.0008323830000165344,
"pgmpy/tests/test_base/test_PDAG.py::TestPDAG::test_directed_parents": 0.0008080069999891748,
"pgmpy/tests/test_base/test_PDAG.py::TestPDAG::test_has_directed_edge": 0.000740000999996937,
"pgmpy/tests/test_base/test_PDAG.py::TestPDAG::test_has_undirected_edge": 0.0007356029999812108,
"pgmpy/tests/test_base/test_PDAG.py::TestPDAG::test_init_normal": 0.0010661999999683758,
"pgmpy/tests/test_base/test_PDAG.py::TestPDAG::test_latents_with_role": 0.0009028329999978268,
"pgmpy/tests/test_base/test_PDAG.py::TestPDAG::test_latnets_without_role": 0.0009286620000068524,
"pgmpy/tests/test_base/test_PDAG.py::TestPDAG::test_orient_undirected_edge": 0.0007985710000184554,
"pgmpy/tests/test_base/test_PDAG.py::TestPDAG::test_pdag_equality": 0.0012344929999983378,
"pgmpy/tests/test_base/test_PDAG.py::TestPDAG::test_pdag_to_cpdag": 0.0027061890000084077,
"pgmpy/tests/test_base/test_PDAG.py::TestPDAG::test_pdag_to_dag": 0.0020129669999846556,
"pgmpy/tests/test_base/test_PDAG.py::TestPDAG::test_undirected_neighbors": 0.0007932610000125351,
"pgmpy/tests/test_base/test_SimpleCausalModel.py::test_empty_confounders_mediators_instruments": 0.0004631239999923764,
"pgmpy/tests/test_base/test_SimpleCausalModel.py::test_integer_variables": 0.0010388679999948636,
"pgmpy/tests/test_base/test_SimpleCausalModel.py::test_is_dag": 0.0005258900000342237,
"pgmpy/tests/test_base/test_SimpleCausalModel.py::test_latents": 0.0005879869999887433,
"pgmpy/tests/test_base/test_SimpleCausalModel.py::test_list_variables": 0.0005703429999641685,
"pgmpy/tests/test_base/test_SimpleCausalModel.py::test_missing_optional_args": 0.0004386700000225119,
"pgmpy/tests/test_base/test_SimpleCausalModel.py::test_multiple_exposures_outcomes": 0.000506825000002209,
"pgmpy/tests/test_base/test_SimpleCausalModel.py::test_simple_string_variables": 0.0006146480000097654,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_edge_nonstring": 0.0005401280000114639,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_edge_string": 0.0004505699999981516,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_edges_from_nonstring": 0.0004070890000207328,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_edges_from_string": 0.0004470750000109547,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_node_nonstring": 0.00043455000002268207,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_node_string": 0.00043297000001985,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_node_with_weight": 0.0004045349999728387,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_nodes_from_non_string": 0.00040353200000708966,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_add_nodes_from_string": 0.00039948500000264175,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_class_init_with_data_string": 0.000474274999987756,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_class_init_without_data": 0.0004183910000108426,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphCreation::test_number_of_neighbors": 0.0004607989999954043,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphMethods::test_is_clique": 0.0005400370000074872,
"pgmpy/tests/test_base/test_UndirectedGraph.py::TestUndirectedGraphMethods::test_is_triangulated": 0.001303984000003311,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_add_bidirected_edge": 0.0004022509999970225,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_add_bidirected_edges_from": 0.00042181499998150684,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_add_directed_edge": 0.0004345910000154163,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_add_directed_edges_from": 0.00039936400003171,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_add_edge_fails": 0.00040926399998397756,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_add_edge_with_kwargs": 0.00038555800000494855,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_add_edges_from_fails": 0.00047463699999639175,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_add_multiedges": 0.0004410619999930532,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_add_multiedges_from": 0.00040049699998689903,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_add_undirected_edge": 0.000413431000026776,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_add_undirected_edges_from": 0.000431264000013698,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_add_unknown_edge": 0.00043137400001569404,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_add_unknown_edges_from": 0.0004225980000001073,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_add_various_edges_from": 0.0004207470000210378,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_copy_empty": 0.0004180089999863412,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_copy_fails": 0.00036456000000839595,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_copy_with_all_values": 0.0005924849999985327,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_copy_with_attributes": 0.0006054999999776101,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_copy_with_ebunch1": 0.000589488999992227,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_copy_with_ebunch2": 0.0005193390000499676,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_copy_with_nodes": 0.00043984999999224783,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_copy_with_roles": 0.000578690000025972,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_equality_different_graphs": 0.0010868379999919853,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_equality_empty": 0.00043374000000540036,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_equality_fails": 0.0006081940000228769,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_equality_with_values": 0.0006085359999872253,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_from_api_edge_type_cases": 0.00041928299998517105,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_from_api_edge_type_fails": 0.00038899599999808743,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_ancestors_fails": 0.0005212930000197957,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_ancestors_with_bidirect_edges": 0.000518869000018185,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_ancestors_with_direct_edges": 0.000627971000000116,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_ancestors_with_multiedges": 0.0005132379999963632,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_ancestors_with_undirect_edges": 0.0004871000000150616,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_ancestors_with_unknown_edges": 0.0009553630000027624,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_children_fails": 0.0005000850000271839,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_children_with_bidirect_edges": 0.0005138500000043678,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_children_with_direct_edges": 0.0006122029999744427,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_children_with_multiedges": 0.00048064699996075433,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_children_with_undirect_edges": 0.0004837219999842546,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_children_with_unknown_edges": 0.0009300870000288342,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_descendants_fails": 0.0005123459999936131,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_descendants_with_bidirect_edges": 0.0004897129999790195,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_descendants_with_direct_edges": 0.0006530790000169873,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_descendants_with_multiedges": 0.0005148599999813541,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_descendants_with_undirect_edges": 0.0005098420000138049,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_descendants_with_unknown_edges": 0.0009664139999756571,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_edge_type": 0.0003630570000154876,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_edges": 0.0004646270000137065,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_neighbors_fails": 0.0006160009999689464,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_neighbors_with_bidirect_edges": 0.0004799650000109068,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_neighbors_with_direct_edges": 0.0005786699999816847,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_neighbors_with_edge_type_values": 0.0008589929999800461,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_neighbors_with_multiedges": 0.0004725809999968078,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_neighbors_with_undirect_edges": 0.0004901050000114537,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_neighbors_with_unknown_edges": 0.0008776689999763221,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_parents_fails": 0.0004995309999742403,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_parents_with_bidirect_edges": 0.00047153999997817664,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_parents_with_direct_edges": 0.0006112800000153129,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_parents_with_multiedges": 0.0004848449999883542,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_parents_with_undirect_edges": 0.0004706869999893115,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_parents_with_unknown_edges": 0.0009478589999787346,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_reachable_nodes_fails": 0.0004935010000224338,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_reachable_nodes_with_bidirect_edges": 0.0005259420000243153,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_reachable_nodes_with_direct_edges": 0.0006599310000012792,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_reachable_nodes_with_multiedges": 0.0005595439999694918,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_reachable_nodes_with_undirect_edges": 0.0004982289999873046,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_reachable_nodes_with_unknown_edges": 0.0010298719999752848,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_spouses_fails": 0.0004953449999902659,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_spouses_with_bidirect_edges": 0.0004713589999880696,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_spouses_with_direct_edges": 0.0006083850000209168,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_spouses_with_multiedges": 0.0005016270000055556,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_spouses_with_undirect_edges": 0.0004722620000450206,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_get_spouses_with_unknown_edges": 0.0009878639999953975,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_init_empty": 0.0006241549999970175,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_init_fails": 0.0006813910000005308,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_init_with_all_values": 0.00048666899999716406,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_init_with_edges": 0.000441252999991093,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_init_with_exposures": 0.00040507599999273225,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_init_with_latents": 0.00040100000001075387,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_init_with_nodes": 0.0004614910000100281,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_init_with_outcomes": 0.00040483500001187167,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_init_with_roles": 0.00041615699998942546,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_remove_bidirected_edge": 0.00040996499998868785,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_remove_bidirected_edges_from": 0.0004279890000020714,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_remove_directed_edge": 0.0004397010000332102,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_remove_directed_edges_from": 0.00039780199998062926,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_remove_edge_fails": 0.0005887989999848742,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_remove_edges_from_fails": 0.0006280820000199583,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_remove_multiedges": 0.0004059769999571472,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_remove_multiedges_from": 0.0003991549999966537,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_remove_no_edge_type": 0.0004026020000083008,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_remove_undirected_edge": 0.0004215569999814761,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_remove_undirected_edges_from": 0.00040042700001663434,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_remove_unknown_edge": 0.00041757899998629,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_remove_unknown_edges_from": 0.00045516000000134227,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_remove_various_edges_from": 0.0004301020000241351,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_to_api_edge_type_cases": 0.0004456019999850014,
"pgmpy/tests/test_base/test_base.py::TestCoreGraph::test_to_api_edge_type_fails": 0.00039015700002664744,
"pgmpy/tests/test_base/test_causal_graph.py::TestDAG::test_copy_and_equality": 0.000799091000004637,
"pgmpy/tests/test_base/test_causal_graph.py::TestDAG::test_get_role_dict": 0.0005332359999954406,
"pgmpy/tests/test_base/test_causal_graph.py::TestDAG::test_get_role_dict2": 0.0005408989999580172,
"pgmpy/tests/test_base/test_causal_graph.py::TestDAG::test_get_roles": 0.000567308000029243,
"pgmpy/tests/test_base/test_causal_graph.py::TestDAG::test_hash": 0.0008121159999916472,
"pgmpy/tests/test_base/test_causal_graph.py::TestDAG::test_init_with_edges_and_roles": 0.0006136549999951058,
"pgmpy/tests/test_base/test_causal_graph.py::TestDAG::test_is_valid_causal_structure": 0.0006629669999824728,
"pgmpy/tests/test_base/test_causal_graph.py::TestDAG::test_roles_dict_and_kwargs": 0.0005800619999831724,
"pgmpy/tests/test_base/test_causal_graph.py::TestDAG::test_with_role_and_without_role": 0.0008322410000118907,
"pgmpy/tests/test_base/test_causal_graph.py::TestDAG::test_with_role_invalid_variable": 0.0007137410000268574,
"pgmpy/tests/test_base/test_mixin_roles.py::test_exposures_and_outcomes_properties": 0.0004498589999570868,
"pgmpy/tests/test_base/test_mixin_roles.py::test_get_roles_and_get_role_dict": 0.0005265140000005886,
"pgmpy/tests/test_base/test_mixin_roles.py::test_inplace_argument": 0.000753537000008464,
"pgmpy/tests/test_base/test_mixin_roles.py::test_is_valid_causal_structure_passes_with_exposures_and_outcomes": 0.00044199499998853753,
"pgmpy/tests/test_base/test_mixin_roles.py::test_is_valid_causal_structure_raises_when_missing_roles": 0.0005508279999730803,
"pgmpy/tests/test_base/test_mixin_roles.py::test_latents_property_and_observed": 0.0005028580000043803,
"pgmpy/tests/test_base/test_mixin_roles.py::test_observed_when_no_latents": 0.0004180290000022069,
"pgmpy/tests/test_base/test_mixin_roles.py::test_with_role_adds_without_overwriting_existing_roles": 0.0005090889999621595,
"pgmpy/tests/test_base/test_mixin_roles.py::test_with_role_inplace_false_returns_new_graph": 0.0006473089999872172,
"pgmpy/tests/test_base/test_mixin_roles.py::test_with_role_multiple_variables": 0.0005218940000020211,
"pgmpy/tests/test_base/test_mixin_roles.py::test_with_role_raises_for_missing_variable": 0.0005482630000130939,
"pgmpy/tests/test_base/test_mixin_roles.py::test_with_role_single_variable": 0.0005631600000128856,
"pgmpy/tests/test_base/test_mixin_roles.py::test_without_role_all_variables_when_variables_none": 0.0005204400000025089,
"pgmpy/tests/test_base/test_mixin_roles.py::test_without_role_inplace_false_returns_new_graph": 0.0006590700000117522,
"pgmpy/tests/test_base/test_mixin_roles.py::test_without_role_removes_roles_attr_when_last_role_removed": 0.0005217830000106005,
"pgmpy/tests/test_base/test_mixin_roles.py::test_without_role_specific_variables": 0.0005268319999913729,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESCore::test_adjacency_matrix": 0.030319958000006864,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESCore::test_estimate_rand": 0.031192557999986548,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESCore::test_estimate_titanic": 0.029934048000001212,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESCore::test_feature_names": 0.030451432999996086,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESCore::test_return_type_dag": 0.03059516100000792,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESCore::test_return_type_pdag": 0.03033639900002072,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESExpertKnowledge::test_forbidden_edges": 0.023800743999998986,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESExpertKnowledge::test_required_edges": 0.03018864300003088,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESExpertKnowledge::test_search_space": 0.17201873500002307,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESExpertKnowledge::test_temporal_order": 0.02167057699998054,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESScoringMethods::test_discrete_scores[aic-d]": 0.030685490999985632,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESScoringMethods::test_discrete_scores[bdeu]": 0.030596694000024627,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESScoringMethods::test_discrete_scores[bds]": 0.030325629000003573,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESScoringMethods::test_discrete_scores[bic-d]": 0.03325957399999879,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESScoringMethods::test_discrete_scores[k2]": 0.030924937000008867,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESScoringMethods::test_gaussian_scores[aic-g]": 0.6988064079999958,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESScoringMethods::test_gaussian_scores[bic-g]": 0.5721162879999895,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESScoringMethods::test_mixed_scores[aic-cg]": 0.5255377180000096,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESScoringMethods::test_mixed_scores[bic-cg]": 0.2935875499999838,
"pgmpy/tests/test_causal_discovery/test_GES.py::TestGESScoringMethods::test_mixed_scores[ll-cg]": 0.5234005810000042,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_complex_data]": 0.0015781660000016018,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_dict_unchanged]": 0.044335732999996935,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_do_not_raise_errors_in_init_or_set_params]": 0.0009050479999928029,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_dont_overwrite_parameters]": 0.04429400499998337,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_dtype_object]": 0.4460275100000217,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_estimator_cloneable0]": 0.0008689909999759493,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_estimator_cloneable1]": 0.0007020209999950566,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_estimator_repr]": 0.0008690519999845492,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_estimator_sparse_array]": 0.0036059890000217365,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_estimator_sparse_matrix]": 0.0029704419999916354,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_estimator_sparse_tag]": 0.001426132000005964,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_estimator_tags_renamed]": 0.0005943890000139618,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_estimators_dtypes]": 0.7486093830000016,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_estimators_empty_data_messages]": 0.0010555689999875995,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_estimators_fit_returns_self]": 0.021123167000013154,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_estimators_nan_inf]": 0.0881243849999862,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_estimators_overwrite_params]": 0.02249239200003217,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_estimators_pickle(readonly_memmap=True)]": 0.06044828999998231,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_estimators_pickle]": 0.05806918000001815,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_estimators_unfitted]": 0.0018995550000227013,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_f_contiguous_array_estimator]": 0.04447255699997754,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_fit1d]": 0.0009640199999978449,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_fit2d_1feature]": 0.0026191990000086207,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_fit2d_1sample]": 0.0012161289999994551,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_fit2d_predict1d]": 0.04413940700001717,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_fit_check_is_fitted]": 0.02082230600001367,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_fit_idempotent]": 0.0404005689999849,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_fit_score_takes_y]": 0.05837159400002179,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_get_params_invariance]": 0.0007501599999955033,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_methods_sample_order_invariance]": 0.044205419999997275,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_methods_subset_invariance]": 0.21371773800004235,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_mixin_order]": 0.0006694499999753134,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_n_features_in]": 0.020486798999996836,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_n_features_in_after_fitting]": 0.07832040099998494,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_no_attributes_set_in_init]": 0.0030944540000348297,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_parameters_default_constructible]": 0.0009585880000315683,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_pipeline_consistency]": 0.1271699979999994,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_positive_only_tag_during_fit]": 0.10692200100001514,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_readonly_memmap_input]": 0.021950941000000057,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_set_params]": 0.0014736299999640323,
"pgmpy/tests/test_causal_discovery/test_GES.py::test_ges_compatibility[GES(return_type='dag')-check_valid_tag_types]": 0.0006030659999964882,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_estimate_discrete[aic-d]": 0.03035486400000309,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_estimate_discrete[bdeu]": 0.030542805000010276,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_estimate_discrete[bds]": 0.030548735999985865,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_estimate_discrete[bic-d]": 0.03058201799998983,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_estimate_discrete[k2]": 0.030353923000006944,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_estimate_gaussian[aic-g]": 0.6390178500000161,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_estimate_gaussian[bic-g]": 0.5254573540000251,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_estimate_mixed[aic-cg]": 0.46826078200001575,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_estimate_mixed[bic-cg]": 0.2772412900000063,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_estimate_mixed[ll-cg]": 0.46962366600001815,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_estimate_mixed_data": 8.73610906799999,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_estimate_rand": 0.08567033799997148,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_estimate_titanic": 0.05952400699999316,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_complex_data]": 0.0014556060000074922,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_dict_unchanged]": 0.055517721000029496,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_do_not_raise_errors_in_init_or_set_params]": 0.000984696999978496,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_dont_overwrite_parameters]": 0.04453919199997358,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_dtype_object]": 0.4458303519999731,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_estimator_cloneable0]": 0.0008260320000204047,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_estimator_cloneable1]": 0.0007174889999816969,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_estimator_repr]": 0.0007877399999642876,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_estimator_sparse_array]": 0.003210881000001109,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_estimator_sparse_matrix]": 0.003166107000026841,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_estimator_sparse_tag]": 0.001293934000017316,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_estimator_tags_renamed]": 0.0005645749999700911,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_estimators_dtypes]": 0.7782503630000122,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_estimators_empty_data_messages]": 0.0008354990000043472,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_estimators_fit_returns_self]": 0.020908456000000797,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_estimators_nan_inf]": 0.08787441999999146,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_estimators_overwrite_params]": 0.02202833600000531,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_estimators_pickle(readonly_memmap=True)]": 0.05976855200000841,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_estimators_pickle]": 0.05808270699998275,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_estimators_unfitted]": 0.0006861909999713589,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_f_contiguous_array_estimator]": 0.044588290999968194,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_fit1d]": 0.0010108969999862438,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_fit2d_1feature]": 0.0025938290000055986,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_fit2d_1sample]": 0.0010750760000064474,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_fit2d_predict1d]": 0.04409003099999609,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_fit_check_is_fitted]": 0.020553798999998207,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_fit_idempotent]": 0.04046639999998547,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_fit_score_takes_y]": 0.051836789000020644,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_get_params_invariance]": 0.0007829910000225482,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_methods_sample_order_invariance]": 0.04502827999996839,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_methods_subset_invariance]": 0.04415463199998726,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_mixin_order]": 0.000640035000003536,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_n_features_in]": 0.02052264999997533,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_n_features_in_after_fitting]": 0.0786691509999855,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_no_attributes_set_in_init]": 0.0019235189999733393,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_parameters_default_constructible]": 0.0011039799999821298,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_pipeline_consistency]": 0.12648749999996767,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_positive_only_tag_during_fit]": 0.11346667400002275,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_readonly_memmap_input]": 0.02198284199999989,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_set_params]": 0.0028087009999637758,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_hillclimb_compatibility[HillClimbSearch(return_type='dag',show_progress=False)-check_valid_tag_types]": 0.0005732609999995475,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_legal_operations": 0.026516202999999905,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_legal_operations_forbidden_required": 0.02499753900002588,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_legal_operations_titanic": 0.1883248350000315,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_no_legal_operation": 0.011981875000032005,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_score": 1.0436723189999952,
"pgmpy/tests/test_causal_discovery/test_HillClimbSearch.py::test_search_space": 0.16778741700002797,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_dag_continuous[orig-gcm]": 0.07025518999995484,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_dag_continuous[orig-pearsonr]": 0.03390239299994846,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_dag_continuous[orig-pillai]": 1.3774346830001036,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_dag_continuous[parallel-gcm]": 0.09869055499996193,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_dag_continuous[parallel-pearsonr]": 0.19932815700002493,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_dag_continuous[parallel-pillai]": 1.2924649359999307,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_dag_continuous[stable-gcm]": 0.06811175700011063,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_dag_continuous[stable-pearsonr]": 0.033358661000022494,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_dag_continuous[stable-pillai]": 1.3683809650000285,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_dag_discrete[orig]": 0.06802218900003254,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_dag_discrete[parallel]": 0.08941404600000169,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_dag_discrete[stable]": 0.06665372499998057,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton[orig]": 0.0016577830000130689,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton[stable]": 0.0014817249999907744,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton_chi_square[orig]": 0.08416415500002472,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton_chi_square[parallel]": 5.863853653000007,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton_chi_square[stable]": 0.08356332499997166,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton_continuous[orig-gcm]": 0.10980860099999745,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton_continuous[orig-pearsonr]": 0.05412687699998742,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton_continuous[orig-pillai]": 1.748479525999926,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton_continuous[parallel-gcm]": 0.14590573699996412,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton_continuous[parallel-pearsonr]": 3.409893823999994,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton_continuous[parallel-pillai]": 1.5298912300000325,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton_continuous[stable-gcm]": 0.10816888699997662,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton_continuous[stable-pearsonr]": 0.052773462000004656,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton_continuous[stable-pillai]": 1.7538563260000046,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton_discrete[orig]": 0.2925973750000139,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton_discrete[parallel]": 4.605397900000014,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton_discrete[stable]": 0.29126020799998287,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton_from_ind[orig]": 0.007848876999986487,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton_from_ind[parallel]": 4.305620102999995,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_build_skeleton_from_ind[stable]": 0.007468017000007876,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_estimate_dag[orig]": 0.008097730000002912,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_estimate_dag[parallel]": 0.007577109000010296,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_estimate_dag[stable]": 0.00793531599998687,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_alarm": 42.689836455999966,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_asia": 11.317942671000026,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_asia_expert": 10.859509102000004,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_complex_data]": 0.0014047020000020893,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_dict_unchanged]": 0.013834376999994902,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_do_not_raise_errors_in_init_or_set_params]": 0.0010238410000340536,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_dont_overwrite_parameters]": 0.01498696799998811,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_dtype_object]": 0.20098748399999522,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_estimator_cloneable0]": 0.0008025180000004184,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_estimator_cloneable1]": 0.0006792979999943327,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_estimator_repr]": 0.0008164340000007542,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_estimator_sparse_array]": 0.003278056999988621,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_estimator_sparse_matrix]": 0.0031284679999998843,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_estimator_sparse_tag]": 0.0012895760000048995,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_estimator_tags_renamed]": 0.0005731290000312583,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_estimators_dtypes]": 0.05605740200002174,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_estimators_empty_data_messages]": 0.0008365620000176932,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_estimators_fit_returns_self]": 0.1562116249999974,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_estimators_nan_inf]": 0.02777591399998869,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_estimators_overwrite_params]": 2.810441405000006,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_estimators_pickle(readonly_memmap=True)]": 0.03876553300000296,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_estimators_pickle]": 0.0369807620000131,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_estimators_unfitted]": 0.0008481730000085008,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_f_contiguous_array_estimator]": 0.014271852000007357,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_fit1d]": 0.0009579200000189303,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_fit2d_1feature]": 0.0029859920000205875,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_fit2d_1sample]": 0.0010505609999711396,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_fit2d_predict1d]": 0.014042815999999902,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_fit_check_is_fitted]": 0.0136343229999909,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_fit_idempotent]": 0.026317212999998674,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_fit_score_takes_y]": 4.4775519270000075,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_get_params_invariance]": 0.000723229999977093,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_methods_sample_order_invariance]": 0.0143454709999844,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_methods_subset_invariance]": 0.014271582999981547,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_mixin_order]": 0.0006750200000169571,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_n_features_in]": 0.013619185000010248,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_n_features_in_after_fitting]": 0.014992658999972264,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_no_attributes_set_in_init]": 0.0018762199999855511,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_parameters_default_constructible]": 0.0009515750000161916,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_pipeline_consistency]": 0.08308454999996684,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_positive_only_tag_during_fit]": 0.0376648179999961,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_readonly_memmap_input]": 0.01781615499999134,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_set_params]": 0.002591064999990067,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_pc_compatibility[PC(return_type='dag',show_progress=False)-check_valid_tag_types]": 0.0005950700000028064,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_score": 1.5785682979999933,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_search_space": 0.8107458399999814,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_skeleton_to_pdag": 0.0017236299999865423,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_temporal_ordering_sepsets_and_skeleton[BaseConstraintEstimator]": 0.0023596950000523975,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_temporal_ordering_sepsets_and_skeleton[PC]": 0.0009915200000136792,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_temporal_pc_cancer": 1.1239095070000644,
"pgmpy/tests/test_causal_discovery/test_PC.py::test_temporal_pc_sachs": 9.214853749999918,
"pgmpy/tests/test_ci_tests/test_base.py::test_auto_detect_continuous": 0.001462338000010277,
"pgmpy/tests/test_ci_tests/test_base.py::test_auto_detect_discrete": 0.001881941000021925,
"pgmpy/tests/test_ci_tests/test_base.py::test_by_name": 0.0009719429999677232,
"pgmpy/tests/test_ci_tests/test_base.py::test_by_name_case_insensitive": 0.0009329000000093401,
"pgmpy/tests/test_ci_tests/test_base.py::test_by_name_fisher_z": 0.0007860269999468983,
"pgmpy/tests/test_ci_tests/test_base.py::test_ci_registry": 0.0008056720000126916,
"pgmpy/tests/test_ci_tests/test_base.py::test_invalid_type": 0.00034514399999352463,
"pgmpy/tests/test_ci_tests/test_base.py::test_no_data_requires_data": 0.000552962000028856,
"pgmpy/tests/test_ci_tests/test_base.py::test_none_test_none_data": 0.0003439819999471183,
"pgmpy/tests/test_ci_tests/test_base.py::test_pass_through_callable": 0.00038590999997722975,
"pgmpy/tests/test_ci_tests/test_base.py::test_pass_through_instance": 0.0007101150000039524,
"pgmpy/tests/test_ci_tests/test_base.py::test_requires_data_false": 0.0005147010000428054,
"pgmpy/tests/test_ci_tests/test_base.py::test_unknown_name": 0.0008671579999486312,
"pgmpy/tests/test_ci_tests/test_chi_square.py::TestChiSquare::test_chisquare_adult_dataset": 0.3871355680000761,
"pgmpy/tests/test_ci_tests/test_chi_square.py::TestChiSquare::test_discrete_tests": 0.1198203929999977,
"pgmpy/tests/test_ci_tests/test_chi_square.py::TestChiSquare::test_exactly_same_vars": 0.022325915000010355,
"pgmpy/tests/test_ci_tests/test_fisher_z.py::TestFisherZ::test_fisher_z": 0.014893189000019902,
"pgmpy/tests/test_ci_tests/test_fisher_z.py::TestFisherZ::test_fisher_z_uses_pearsonr_partial_correlation": 0.007097912999995515,
"pgmpy/tests/test_ci_tests/test_fisher_z.py::TestFisherZResidual::test_fisher_z": 0.0004661090000013246,
"pgmpy/tests/test_ci_tests/test_g_sq.py::TestGSq::test_discrete_tests": 0.12404861200002415,
"pgmpy/tests/test_ci_tests/test_g_sq.py::TestGSq::test_exactly_same_vars": 0.022455690000015238,
"pgmpy/tests/test_ci_tests/test_gcm.py::TestGCM::test_gcm": 0.0005040499999608983,
"pgmpy/tests/test_ci_tests/test_log_likelihood.py::TestLogLikelihood::test_discrete_tests": 0.12346535399996128,
"pgmpy/tests/test_ci_tests/test_log_likelihood.py::TestLogLikelihood::test_exactly_same_vars": 0.021276418000013564,
"pgmpy/tests/test_ci_tests/test_modified_log_likelihood.py::TestModifiedLogLikelihood::test_discrete_tests": 0.12305275500000334,
"pgmpy/tests/test_ci_tests/test_modified_log_likelihood.py::TestModifiedLogLikelihood::test_exactly_same_vars": 0.022566414999971585,
"pgmpy/tests/test_ci_tests/test_pearsonr.py::TestPearsonr::test_pearsonr": 0.014441706000070553,
"pgmpy/tests/test_ci_tests/test_pearsonr.py::TestPearsonrResidual::test_pearsonr": 0.0004652279999959319,
"pgmpy/tests/test_ci_tests/test_pearsonr_equivalence.py::TestPearsonrEquivalence::test_pearsonr_equivalence": 0.0004127600000742859,
"pgmpy/tests/test_ci_tests/test_pillai_trace.py::TestPillaiTrace::test_pillai_dependent": 0.00039532900001404414,
"pgmpy/tests/test_ci_tests/test_pillai_trace.py::TestPillaiTrace::test_pillai_indep": 0.0003698299999541632,
"pgmpy/tests/test_ci_tests/test_pillai_trace.py::TestPillaiTrace::test_pillai_no_cond": 0.00038235300002043004,
"pgmpy/tests/test_datasets/test_datasets.py::test_invalid_input": 0.0007608790000404042,
"pgmpy/tests/test_datasets/test_datasets.py::test_invalid_tag": 0.0004632949999745506,
"pgmpy/tests/test_datasets/test_datasets.py::test_list_datasets": 0.03064178200003198,
"pgmpy/tests/test_datasets/test_datasets.py::test_load_covariance_dataset": 0.08713909600010084,
"pgmpy/tests/test_datasets/test_datasets.py::test_load_dataset": 0.5541261569999847,
"pgmpy/tests/test_datasets/test_datasets.py::test_load_tubingen_dataset": 0.24464241600003334,
"pgmpy/tests/test_datasets/test_datasets.py::test_tubingen_invalid_format": 0.000706578000006175,
"pgmpy/tests/test_devtools/test_lgbn_schema.py::test_lgbn_schema": 0.038039063999917744,
"pgmpy/tests/test_estimators/test_BaseEstimator.py::test_missing_data": 0.0054468740000857,
"pgmpy/tests/test_estimators/test_BaseEstimator.py::test_state_count": 0.006712403999983962,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::test_error_latent_model": 0.9831026859999952,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::test_error_latent_model_torch": 0.006122542999946745,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::test_estimate_cpd_dirichlet": 0.013042886000050657,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::test_estimate_cpd_dirichlet_torch": 0.013750196000046344,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::test_estimate_cpd_improper_prior": 0.00930331900008241,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::test_estimate_cpd_improper_prior_torch": 0.009442338999974709,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::test_estimate_cpd_shortcuts": 0.012906300999986797,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::test_estimate_cpd_shortcuts_torch": 0.013283704000002672,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::test_get_parameters": 0.017886784999973315,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::test_get_parameters2": 0.017708349999963957,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::test_get_parameters2_torch": 0.018938595999998142,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::test_get_parameters3": 0.01775482599998668,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::test_get_parameters3_torch": 0.018944907999980387,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::test_get_parameters_torch": 0.01843235899997353,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::test_node_specific_equivalent_sample_size": 0.017850764999934654,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::test_node_specific_ess_matches_uniform_ess": 0.017889639000088664,
"pgmpy/tests/test_estimators/test_BayesianEstimator.py::test_node_specific_ess_partial_dict": 0.017414071000018794,
"pgmpy/tests/test_estimators/test_CITests.py::TestCIRegistry::test_ci_registry": 0.0006885850000344362,
"pgmpy/tests/test_estimators/test_CITests.py::TestDiscreteTests::test_chisquare_adult_dataset": 0.39197049700004527,
"pgmpy/tests/test_estimators/test_CITests.py::TestDiscreteTests::test_discrete_tests": 0.4238431459999674,
"pgmpy/tests/test_estimators/test_CITests.py::TestDiscreteTests::test_exactly_same_vars": 0.026894491000007292,
"pgmpy/tests/test_estimators/test_CITests.py::TestPearsonr::test_pearsonr": 0.021776331000012306,
"pgmpy/tests/test_estimators/test_CITests.py::TestResidualMethods::test_gcm": 0.0005128569999328647,
"pgmpy/tests/test_estimators/test_CITests.py::TestResidualMethods::test_pearsonr": 0.00042124500004092624,
"pgmpy/tests/test_estimators/test_CITests.py::TestResidualMethods::test_pearsonr_equivalence": 0.0004300610000314009,
"pgmpy/tests/test_estimators/test_CITests.py::TestResidualMethods::test_pillai_dependent": 0.0004171289999703731,
"pgmpy/tests/test_estimators/test_CITests.py::TestResidualMethods::test_pillai_indep": 0.000428198000008706,
"pgmpy/tests/test_estimators/test_CITests.py::TestResidualMethods::test_pillai_no_cond": 0.00043330900001592454,
"pgmpy/tests/test_estimators/test_EM.py::TestEM::test_em_init_missing_data_handling": 0.5388468919999809,
"pgmpy/tests/test_estimators/test_EM.py::TestEM::test_get_parameters": 0.8446166560000279,
"pgmpy/tests/test_estimators/test_EM.py::TestEM::test_get_parameters_ess_dict_vs_scalar": 0.6811141890000272,
"pgmpy/tests/test_estimators/test_EM.py::TestEM::test_get_parameters_initial_cpds": 0.9972551630000339,
"pgmpy/tests/test_estimators/test_EM.py::TestEM::test_get_parameters_node_specific_ess_bdeu": 3.9756664290000003,
"pgmpy/tests/test_estimators/test_EM.py::TestEM::test_get_parameters_random_init_cpds": 0.72092717299995,
"pgmpy/tests/test_estimators/test_EM.py::TestEM::test_get_parameters_smoothing_bdeu": 3.9620452820000196,
"pgmpy/tests/test_estimators/test_EM.py::TestEM::test_get_parameters_smoothing_k2": 3.9426439979999373,
"pgmpy/tests/test_estimators/test_EM.py::TestEM::test_get_parameters_uniform_init_cpds": 0.6850068009999859,
"pgmpy/tests/test_estimators/test_EM.py::TestEMTorch::test_em_init_missing_data_handling": 0.5615806499999962,
"pgmpy/tests/test_estimators/test_EM.py::TestEMTorch::test_get_parameters": 0.8570569169999658,
"pgmpy/tests/test_estimators/test_EM.py::TestEMTorch::test_get_parameters_ess_dict_vs_scalar": 0.6922061380000173,
"pgmpy/tests/test_estimators/test_EM.py::TestEMTorch::test_get_parameters_initial_cpds": 1.0106499719999533,
"pgmpy/tests/test_estimators/test_EM.py::TestEMTorch::test_get_parameters_node_specific_ess_bdeu": 4.242045791999999,
"pgmpy/tests/test_estimators/test_EM.py::TestEMTorch::test_get_parameters_random_init_cpds": 0.6890890919999606,
"pgmpy/tests/test_estimators/test_EM.py::TestEMTorch::test_get_parameters_smoothing_bdeu": 4.248089385000014,
"pgmpy/tests/test_estimators/test_EM.py::TestEMTorch::test_get_parameters_smoothing_k2": 4.929264723000017,
"pgmpy/tests/test_estimators/test_EM.py::TestEMTorch::test_get_parameters_uniform_init_cpds": 0.6836792490000221,
"pgmpy/tests/test_estimators/test_ExhaustiveSearch.py::test_all_dags": 0.2907773439999346,
"pgmpy/tests/test_estimators/test_ExhaustiveSearch.py::test_all_scores": 0.04713977400001568,
"pgmpy/tests/test_estimators/test_ExhaustiveSearch.py::test_estimate_rand": 0.09266557700004796,
"pgmpy/tests/test_estimators/test_ExhaustiveSearch.py::test_estimate_rand_bic_default": 0.044267035000018495,
"pgmpy/tests/test_estimators/test_ExhaustiveSearch.py::test_estimate_titanic": 0.04739074299999402,
"pgmpy/tests/test_estimators/test_ExhaustiveSearch.py::test_estimate_titanic_bic_default": 0.042165692000025956,
"pgmpy/tests/test_estimators/test_GES.py::test_estimate_discrete": 2.5184795389999977,
"pgmpy/tests/test_estimators/test_GES.py::test_estimate_gaussian": 1.2347835819999204,
"pgmpy/tests/test_estimators/test_GES.py::test_estimate_mixed": 9.74213943500007,
"pgmpy/tests/test_estimators/test_GES.py::test_search_space": 0.08202655100001266,
"pgmpy/tests/test_estimators/test_HillClimbSearch.py::TestHillClimbEstimatorDiscrete::test_estimate": 1.5161036060000015,
"pgmpy/tests/test_estimators/test_HillClimbSearch.py::TestHillClimbEstimatorDiscrete::test_estimate_rand": 0.0726470740000309,
"pgmpy/tests/test_estimators/test_HillClimbSearch.py::TestHillClimbEstimatorDiscrete::test_estimate_titanic": 0.06402995499996678,
"pgmpy/tests/test_estimators/test_HillClimbSearch.py::TestHillClimbEstimatorDiscrete::test_legal_operations": 0.03693941499994935,
"pgmpy/tests/test_estimators/test_HillClimbSearch.py::TestHillClimbEstimatorDiscrete::test_legal_operations_forbidden_required": 0.035701004999964425,
"pgmpy/tests/test_estimators/test_HillClimbSearch.py::TestHillClimbEstimatorDiscrete::test_legal_operations_titanic": 0.19467200200000434,
"pgmpy/tests/test_estimators/test_HillClimbSearch.py::TestHillClimbEstimatorDiscrete::test_no_legal_operation": 0.028109823999955097,
"pgmpy/tests/test_estimators/test_HillClimbSearch.py::TestHillClimbEstimatorDiscrete::test_search_space": 0.09145568299993556,
"pgmpy/tests/test_estimators/test_HillClimbSearch.py::TestHillClimbEstimatorGaussian::test_estimate": 1.1444276700000273,
"pgmpy/tests/test_estimators/test_HillClimbSearch.py::TestHillClimbEstimatorMixed::test_estimate": 8.431196710999984,
"pgmpy/tests/test_estimators/test_MarginalEstimator.py::test_class_init": 0.0019802150000600705,
"pgmpy/tests/test_estimators/test_MarginalEstimator.py::test_clique_to_marginal": 0.0004803259999448528,
"pgmpy/tests/test_estimators/test_MarginalEstimator.py::test_clique_to_marginal_no_matching_cliques": 0.00046068900002183,
"pgmpy/tests/test_estimators/test_MarginalEstimator.py::test_marginal_loss": 0.006773119999991195,
"pgmpy/tests/test_estimators/test_MarginalEstimator.py::test_torch_class_init": 0.0007583450000083758,
"pgmpy/tests/test_estimators/test_MarginalEstimator.py::test_torch_clique_to_marginal": 0.0004548699999418204,
"pgmpy/tests/test_estimators/test_MarginalEstimator.py::test_torch_clique_to_marginal_no_matching_cliques": 0.0004951340000047821,
"pgmpy/tests/test_estimators/test_MarginalEstimator.py::test_torch_marginal_loss": 0.010080832000028295,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_class_init[numpy]": 0.02230145899989111,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_class_init[torch]": 0.02326266300002544,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_error_latent_model[numpy]": 0.013210764000064046,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_error_latent_model[torch]": 0.013151755000023968,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_estimate_cpd[numpy]": 0.017371917999980724,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_estimate_cpd[torch]": 0.017770292999955473,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_estimate_potentials[numpy]": 0.01507693699994661,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_estimate_potentials[torch]": 0.015400851999970655,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_estimate_potentials_smoke_test[numpy]": 0.018019246999983807,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_estimate_potentials_smoke_test[torch]": 0.018658079000033467,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_get_parameters_incomplete_data[numpy]": 0.02188737400001628,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_get_parameters_incomplete_data[torch]": 0.02303263400006017,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_missing_data[numpy]": 0.022861563999981627,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_missing_data[torch]": 0.024053156999968905,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_nonoccurring_values[numpy]": 0.02231126599997424,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_nonoccurring_values[torch]": 0.02366699599997446,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_partition_function[numpy]": 0.017856544999972357,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_partition_function[torch]": 0.01836592400002246,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_state_names1[numpy]": 0.0046939020000422715,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_state_names1[torch]": 0.004970135000007758,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_state_names2[numpy]": 0.006926086000021314,
"pgmpy/tests/test_estimators/test_MaximumLikelihoodEstimator.py::test_state_names2[torch]": 0.007104548000086197,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::test_estimate_example_smoke_test[numpy]": 0.10997675700002674,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::test_estimate_example_smoke_test[torch]": 0.21910942699997804,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::test_mirror_descent_estimator_l1[numpy]": 0.007939546999921276,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::test_mirror_descent_estimator_l1[torch]": 0.013021248999962154,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::test_mirror_descent_estimator_l2[numpy]": 0.008896182000000863,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::test_mirror_descent_estimator_l2[torch]": 0.013009297999985847,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::test_mirror_descent_warm_start[numpy]": 0.013591142999985095,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::test_mirror_descent_warm_start[torch]": 0.018396520999999666,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::test_multi_clique_tree[numpy]": 0.23682095100002698,
"pgmpy/tests/test_estimators/test_MirrorDescentEstimator.py::test_multi_clique_tree[torch]": 0.53476157099999,
"pgmpy/tests/test_estimators/test_MmhcEstimator.py::test_estimate": 0.9368120319999207,
"pgmpy/tests/test_estimators/test_PC.py::test_build_dag_continuous[gcm-orig]": 0.07398665100004109,
"pgmpy/tests/test_estimators/test_PC.py::test_build_dag_continuous[gcm-parallel]": 5.38390197199999,
"pgmpy/tests/test_estimators/test_PC.py::test_build_dag_continuous[gcm-stable]": 0.07236103699995056,
"pgmpy/tests/test_estimators/test_PC.py::test_build_dag_continuous[pearsonr-orig]": 0.051205772999992405,
"pgmpy/tests/test_estimators/test_PC.py::test_build_dag_continuous[pearsonr-parallel]": 5.233319263999988,
"pgmpy/tests/test_estimators/test_PC.py::test_build_dag_continuous[pearsonr-stable]": 0.04956953999999314,
"pgmpy/tests/test_estimators/test_PC.py::test_build_dag_continuous[pillai-orig]": 1.3253853749999962,
"pgmpy/tests/test_estimators/test_PC.py::test_build_dag_continuous[pillai-parallel]": 6.3361223760000485,
"pgmpy/tests/test_estimators/test_PC.py::test_build_dag_continuous[pillai-stable]": 1.3227572690001352,
"pgmpy/tests/test_estimators/test_PC.py::test_build_dag_discrete[orig]": 0.05957642299995314,
"pgmpy/tests/test_estimators/test_PC.py::test_build_dag_discrete[parallel]": 4.086992160999898,
"pgmpy/tests/test_estimators/test_PC.py::test_build_dag_discrete[stable]": 0.058503241000096295,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_chi_square[orig]": 0.06327240699999948,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_chi_square[parallel]": 6.052249362999987,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_chi_square[stable]": 0.06323369400013235,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_ci_tests[g_sq-orig]": 0.06377540200003295,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_ci_tests[g_sq-parallel]": 4.0635560629999645,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_ci_tests[g_sq-stable]": 0.06242936000001009,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_ci_tests[log_likelihood-orig]": 0.06396250199992437,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_ci_tests[log_likelihood-parallel]": 4.0825434440000095,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_ci_tests[log_likelihood-stable]": 0.06243676300005063,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_ci_tests[modified_log_likelihood-orig]": 0.06552956099994844,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_ci_tests[modified_log_likelihood-parallel]": 4.122084228000119,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_ci_tests[modified_log_likelihood-stable]": 0.06313457200002404,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_ci_tests[power_divergence-orig]": 0.06313506200001484,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_ci_tests[power_divergence-parallel]": 4.084472970999968,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_ci_tests[power_divergence-stable]": 0.06222540399994614,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_continuous[gcm-orig]": 0.1067154050000454,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_continuous[gcm-parallel]": 7.134561510000083,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_continuous[gcm-stable]": 0.1045459839999694,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_continuous[pearsonr-orig]": 0.06195359899993491,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_continuous[pearsonr-parallel]": 7.1118139729999825,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_continuous[pearsonr-stable]": 0.06177486600000748,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_continuous[pillai-orig]": 1.6988542969999685,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_continuous[pillai-parallel]": 8.22055748400004,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_continuous[pillai-stable]": 1.690342500999975,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_continuous_fake_ci[gcm-orig]": 0.013903189000018301,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_continuous_fake_ci[gcm-parallel]": 4.390814521000038,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_continuous_fake_ci[gcm-stable]": 0.012773290999973597,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_continuous_fake_ci[pearsonr-orig]": 0.014240568000047915,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_continuous_fake_ci[pearsonr-parallel]": 4.5131035549999865,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_continuous_fake_ci[pearsonr-stable]": 0.013359799999989264,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_continuous_fake_ci[pillai-orig]": 0.014021217000049546,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_continuous_fake_ci[pillai-parallel]": 4.508899842000005,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_continuous_fake_ci[pillai-stable]": 0.01290798000002269,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_fake_ci[orig]": 0.004811599000049682,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_fake_ci[stable]": 0.0043908050000140975,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_fake_ci_discrete[orig]": 0.004041663999942102,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_fake_ci_discrete[parallel]": 8.46167825000009,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_fake_ci_discrete[stable]": 0.003349820999972053,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_from_ind[orig]": 0.003209229000049163,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_from_ind[parallel]": 3.9780196209999303,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_from_ind[stable]": 0.0031742839999537864,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_from_model_ind[orig]": 0.004378461000044354,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_from_model_ind[parallel]": 4.030006337000032,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_from_model_ind[stable]": 0.003914835000045969,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_max_cond_vars_0[orig]": 0.004000597000015205,
"pgmpy/tests/test_estimators/test_PC.py::test_build_skeleton_max_cond_vars_0[stable]": 0.004005675000087194,
"pgmpy/tests/test_estimators/test_PC.py::test_estimate_dag[orig]": 0.003531339999994998,
"pgmpy/tests/test_estimators/test_PC.py::test_estimate_dag[parallel]": 4.017677634999927,
"pgmpy/tests/test_estimators/test_PC.py::test_estimate_dag[stable]": 0.003442925000001651,
"pgmpy/tests/test_estimators/test_PC.py::test_estimate_dag_from_model[orig]": 0.004426259999945614,
"pgmpy/tests/test_estimators/test_PC.py::test_estimate_dag_from_model[parallel]": 3.999619909000046,
"pgmpy/tests/test_estimators/test_PC.py::test_estimate_dag_from_model[stable]": 0.00420097099998884,
"pgmpy/tests/test_estimators/test_PC.py::test_pc_alarm": 36.180676018999975,
"pgmpy/tests/test_estimators/test_PC.py::test_pc_asia": 10.910107016999973,
"pgmpy/tests/test_estimators/test_PC.py::test_pc_asia_expert": 10.593143043000055,
"pgmpy/tests/test_estimators/test_PC.py::test_search_space": 0.0459751330000131,
"pgmpy/tests/test_estimators/test_PC.py::test_skeleton_to_pdag[skel0-sep_sets0-expected_edges0]": 0.0021491810000497935,
"pgmpy/tests/test_estimators/test_PC.py::test_skeleton_to_pdag[skel1-sep_sets1-expected_edges1]": 0.0018771119999883012,
"pgmpy/tests/test_estimators/test_PC.py::test_skeleton_to_pdag[skel2-sep_sets2-expected_edges2]": 0.0018556329999910304,
"pgmpy/tests/test_estimators/test_PC.py::test_skeleton_to_pdag[skel3-sep_sets3-expected_edges3]": 0.0019603669999810336,
"pgmpy/tests/test_estimators/test_PC.py::test_skeleton_to_pdag[skel4-sep_sets4-expected_edges4]": 0.0019106049999777497,
"pgmpy/tests/test_estimators/test_PC.py::test_skeleton_to_pdag[skel5-sep_sets5-expected_edges5]": 0.0019880609999631815,
"pgmpy/tests/test_estimators/test_PC.py::test_temporal_pc_cancer": 1.0277884419999737,
"pgmpy/tests/test_estimators/test_PC.py::test_temporal_pc_sachs": 9.56328482799995,
"pgmpy/tests/test_estimators/test_ParameterEstimator.py::test_missing_data": 0.005591911000010441,
"pgmpy/tests/test_estimators/test_ParameterEstimator.py::test_state_count": 0.006810364000102709,
"pgmpy/tests/test_estimators/test_SEMEstimator.py::test_custom_estimator_random_init": 4.211775239000076,
"pgmpy/tests/test_estimators/test_SEMEstimator.py::test_custom_estimator_std_init": 4.7418015160000095,
"pgmpy/tests/test_estimators/test_SEMEstimator.py::test_get_init_values": 0.04516036599989093,
"pgmpy/tests/test_estimators/test_SEMEstimator.py::test_iv_fit": 0.04044398200005617,
"pgmpy/tests/test_estimators/test_SEMEstimator.py::test_union_estimator_random_init": 38.318707735999965,
"pgmpy/tests/test_estimators/test_SEMEstimator.py::test_union_estimator_std_init": 0.07666528999993716,
"pgmpy/tests/test_estimators/test_ScoreCache.py::test_caching": 0.0005250889998933417,
"pgmpy/tests/test_estimators/test_ScoreCache.py::test_remove_least_recently_used": 0.0005446559999882084,
"pgmpy/tests/test_estimators/test_ScoreCache.py::test_score_cache": 0.00248649199988904,
"pgmpy/tests/test_estimators/test_ScoreCache.py::test_score_cache_invalid_scorer": 0.0004247429998258667,
"pgmpy/tests/test_estimators/test_ScoreCache.py::test_small_cache": 0.000552060000018173,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestAIC::test_score": 0.012617347999935191,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestAIC::test_score_titanic": 0.014597916000184341,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestAICCondGauss::test_score_bnlearn_categorical_parent": 0.02165912699990713,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestAICCondGauss::test_score_bnlearn_continuous_to_categorical": 0.20090748300003725,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestAICCondGauss::test_score_bnlearn_many_parents": 0.032441285999880165,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestAICCondGauss::test_score_bnlearn_mixed_parents": 0.016662943000028463,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestAICCondGauss::test_score_bnlearn_no_parents": 0.01052872700017815,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestAICGauss::test_local_score_no_parents": 0.013514348000057907,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestAICGauss::test_local_score_with_parents": 0.01647281899988684,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestAICGauss::test_score": 0.02935967700011588,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestBDeu::test_score": 0.01616499199997179,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestBDeu::test_score_titanic": 0.018043379000118875,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestBDs::test_score": 0.011251285999946958,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestBIC::test_score": 0.015221820999954616,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestBIC::test_score_titanic": 0.018027178000124877,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestBICCondGauss::test_score_bnlearn_categorical_parent": 0.021942265000006955,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestBICCondGauss::test_score_bnlearn_continuous_to_categorical": 0.2029408789999252,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestBICCondGauss::test_score_bnlearn_many_parents": 0.03288322200000948,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestBICCondGauss::test_score_bnlearn_mixed_parents": 0.01706941299994469,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestBICCondGauss::test_score_bnlearn_no_parents": 0.010762082999917766,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestBICGauss::test_local_score_no_parents": 0.01005023400000482,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestBICGauss::test_local_score_with_parents": 0.009287861000075281,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestBICGauss::test_score": 0.029903391999937412,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestK2::test_score": 0.014309136000065337,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestK2::test_score_titanic": 0.014677025000082722,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestLogLikeGauss::test_local_score_no_parents": 0.014029634000053193,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestLogLikeGauss::test_local_score_with_parents": 0.016525975000035942,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestLogLikeGauss::test_score": 0.0295276610000883,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestLogLikelihoodCondGauss::test_score_bnlearn_categorical_parent": 0.021348437000028753,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestLogLikelihoodCondGauss::test_score_bnlearn_continuous_parent": 0.006914763000054336,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestLogLikelihoodCondGauss::test_score_bnlearn_continuous_to_categorical": 0.2002440649999926,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestLogLikelihoodCondGauss::test_score_bnlearn_many_parents": 0.032200477000060346,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestLogLikelihoodCondGauss::test_score_bnlearn_mixed_parents": 0.01652101800004857,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestLogLikelihoodCondGauss::test_score_bnlearn_no_parents": 0.011455106000084925,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestLogLikelihoodCondGauss::test_score_manual_categorical": 0.03459732000010263,
"pgmpy/tests/test_estimators/test_StructureScore.py::TestLogLikelihoodCondGauss::test_score_manual_continuous": 0.015918365000061385,
"pgmpy/tests/test_estimators/test_TreeSearch.py::test_estimate_chow_liu[1-adjusted_mutual_info]": 0.11092016099985358,
"pgmpy/tests/test_estimators/test_TreeSearch.py::test_estimate_chow_liu[1-mutual_info]": 0.07698006400005397,
"pgmpy/tests/test_estimators/test_TreeSearch.py::test_estimate_chow_liu[1-normalized_mutual_info]": 0.08929557499993734,
"pgmpy/tests/test_estimators/test_TreeSearch.py::test_estimate_chow_liu[2-adjusted_mutual_info]": 1.4841423249999934,
"pgmpy/tests/test_estimators/test_TreeSearch.py::test_estimate_chow_liu[2-mutual_info]": 1.4630293110000139,
"pgmpy/tests/test_estimators/test_TreeSearch.py::test_estimate_chow_liu[2-normalized_mutual_info]": 1.5067394339998827,
"pgmpy/tests/test_estimators/test_TreeSearch.py::test_estimate_chow_liu_auto_root_node": 2.114573532999998,
"pgmpy/tests/test_estimators/test_TreeSearch.py::test_estimate_tan[1-adjusted_mutual_info]": 0.12351026699991507,
"pgmpy/tests/test_estimators/test_TreeSearch.py::test_estimate_tan[1-mutual_info]": 0.10778299599996899,
"pgmpy/tests/test_estimators/test_TreeSearch.py::test_estimate_tan[1-normalized_mutual_info]": 0.1203826979999576,
"pgmpy/tests/test_estimators/test_TreeSearch.py::test_estimate_tan[2-adjusted_mutual_info]": 1.485556494999969,
"pgmpy/tests/test_estimators/test_TreeSearch.py::test_estimate_tan[2-mutual_info]": 1.5250685469999326,
"pgmpy/tests/test_estimators/test_TreeSearch.py::test_estimate_tan[2-normalized_mutual_info]": 1.4745729850000089,
"pgmpy/tests/test_estimators/test_TreeSearch.py::test_estimate_tan_auto_class_node": 2.368096127000058,
"pgmpy/tests/test_estimators/test_TreeSearch.py::test_tan_real_dataset": 4.615909176999935,
"pgmpy/tests/test_estimators/test_expert.py::TestExpertInLoop::test_combined_expert_knowledge": 3.334549490999848,
"pgmpy/tests/test_estimators/test_expert.py::TestExpertInLoop::test_edge_orientation_priority": 2.105721033000009,
"pgmpy/tests/test_estimators/test_expert.py::TestExpertInLoop::test_estimate": 71.50488369499988,
"pgmpy/tests/test_estimators/test_expert.py::TestExpertInLoop::test_estimate_with_custom_orient_fn": 0.7014695039999879,
"pgmpy/tests/test_estimators/test_expert.py::TestExpertInLoop::test_estimate_with_orient_fn_kwargs": 0.8434329859999252,
"pgmpy/tests/test_estimators/test_expert.py::TestFakeCI::test_all_strong_edges_kept": 0.0024300249999669177,
"pgmpy/tests/test_estimators/test_expert.py::TestFakeCI::test_all_weak_edges_removed": 0.003155767999942327,
"pgmpy/tests/test_estimators/test_expert.py::TestFakeCI::test_conditioning_set": 0.00226886400002968,
"pgmpy/tests/test_estimators/test_expert.py::TestFakeCI::test_longer_cycle": 0.0022341889999779596,
"pgmpy/tests/test_estimators/test_expert.py::TestFakeCI::test_multiple_cycles": 0.0023051719999784837,
"pgmpy/tests/test_estimators/test_expert.py::TestFakeCI::test_new_edge_never_in_result": 0.0022482050000007803,
"pgmpy/tests/test_estimators/test_expert.py::TestFakeCI::test_original_dag_not_modified": 0.002268502999982047,
"pgmpy/tests/test_estimators/test_expert.py::TestFakeCI::test_selective_removal": 0.002291453999987425,
"pgmpy/tests/test_example_models/test_example_models.py::test_invalid_tag": 0.0003957870001158881,
"pgmpy/tests/test_example_models/test_example_models.py::test_list_models": 0.01982092399987323,
"pgmpy/tests/test_example_models/test_example_models.py::test_load_model": 3.407171902000073,
"pgmpy/tests/test_example_models/test_example_models.py::test_load_model_invalid_name": 0.0028234269999529715,
"pgmpy/tests/test_example_models/test_example_models.py::test_tags": 0.5297549609999805,
"pgmpy/tests/test_factors/test_FactorDict.py::TestFactorDict::test_class_init": 0.0010953039999321845,
"pgmpy/tests/test_factors/test_FactorDict.py::TestFactorDict::test_factor_dict_addition": 0.0006376809999437683,
"pgmpy/tests/test_factors/test_FactorDict.py::TestFactorDict::test_factor_dict_addition_scalar": 0.0006317300000091564,
"pgmpy/tests/test_factors/test_FactorDict.py::TestFactorDict::test_factor_dict_from_pandas_categorical": 0.003826809999964098,
"pgmpy/tests/test_factors/test_FactorDict.py::TestFactorDict::test_factor_dict_from_pandas_nans": 0.0009612539998897773,
"pgmpy/tests/test_factors/test_FactorDict.py::TestFactorDict::test_factor_dict_from_pandas_numeric": 0.003957935000016732,
"pgmpy/tests/test_factors/test_FactorDict.py::TestFactorDict::test_factor_dict_from_pandas_titanic": 0.009119656999928338,
"pgmpy/tests/test_factors/test_FactorDict.py::TestFactorDict::test_factor_dict_from_pandas_wrong_column": 0.0011794199999712873,
"pgmpy/tests/test_factors/test_FactorDict.py::TestFactorDict::test_factor_dict_multiplication": 0.0005886489999511468,
"pgmpy/tests/test_factors/test_FactorSet.py::TestFactorSet::test_class_init": 0.0007969269998966411,
"pgmpy/tests/test_factors/test_FactorSet.py::TestFactorSet::test_factorset_add_remove_factors": 0.000659330999951635,
"pgmpy/tests/test_factors/test_FactorSet.py::TestFactorSet::test_factorset_divide": 0.000976541999989422,
"pgmpy/tests/test_factors/test_FactorSet.py::TestFactorSet::test_factorset_marginalize_inplace": 0.0011646630000541336,
"pgmpy/tests/test_factors/test_FactorSet.py::TestFactorSet::test_factorset_marginalize_not_inplace": 0.0013135619999502524,
"pgmpy/tests/test_factors/test_FactorSet.py::TestFactorSet::test_factorset_product": 0.001097536999964177,
"pgmpy/tests/test_factors/test_continuous/test_Linear_Gaussian_CPD.py::test_class_init": 0.000648560000058751,
"pgmpy/tests/test_factors/test_continuous/test_Linear_Gaussian_CPD.py::test_get_random": 0.0005056840000179363,
"pgmpy/tests/test_factors/test_continuous/test_Linear_Gaussian_CPD.py::test_str": 0.0004625930000656808,
"pgmpy/tests/test_factors/test_continuous/test_Linear_Gaussian_CPD.py::test_variable_hashable": 0.0004812580000361777,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorInit::test_class_init": 0.0010123780000412808,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorInit::test_class_init_int_var": 0.0006128219999936846,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorInit::test_class_init_nonlist_statename": 0.0005219739999802187,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorInit::test_class_init_repeated_statename": 0.0005268140000680432,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorInit::test_class_init_sizeerror": 0.0004926579999846581,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorInit::test_class_init_statenames": 0.0005930550000812218,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorInit::test_class_init_typeerror": 0.00048303999994914193,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorInit::test_init_size_var_card_not_equal": 0.0004914270000426768,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_assignment": 0.0011919040001657777,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_assignment_indexerror": 0.0009115600000768609,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_complete_reduce": 0.0011010339999302232,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_eq": 0.0010336590000861179,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_eq1": 0.001052193999953488,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_eq_state_names_order": 0.0009038970000574409,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_divide": 0.0010123690000227725,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_divide_invalid": 0.0009350549998998758,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_divide_no_common_scope": 0.0008984460000647232,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_divide_non_factor_arg": 0.0007867470001201582,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_divide_truediv": 0.0010974690000011833,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_mul": 0.0009682070000280874,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_product": 0.001298573999861219,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_product_non_factor_arg": 0.0007940310000549289,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_sum": 0.0010631230001081349,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_factor_sum_product": 0.6623731230000658,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_get_cardinality": 0.0008978149999165908,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_get_cardinality_scopeerror": 0.0008356600001206971,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_get_cardinality_typeerror": 0.0008097209999959887,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_get_value": 0.5002256120000084,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_hash": 0.0011880069999961052,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_identity_factor": 0.0010659380001243335,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_marginalize": 0.0013448099998640828,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_marginalize_scopeerror": 0.000851398000008885,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_marginalize_shape": 0.0010153250000257685,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_marginalize_typeerror": 0.0007635849999587663,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_maximize_list": 0.0010050859999637396,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_maximize_scopeerror": 0.0007865169999377031,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_maximize_shape": 0.0010020390001272972,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_maximize_single": 0.0012378089999174335,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_maximize_typeerror": 0.000777050000010604,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_normalize": 0.0010340289999248853,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_product": 0.0012524270000540128,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_reduce": 0.0009408360000406901,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_reduce1": 0.0009346040000082212,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_reduce_scopeerror": 0.0008071170001358041,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_reduce_shape": 0.0009550620001164134,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_reduce_sizeerror": 0.0009770129998969423,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_reduce_typeerror": 0.0007804059998761659,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_sample": 0.4241758949998484,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_scope": 0.0008650749999787877,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_set_value": 0.48419799700013755,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_str_representation": 0.0012421980001136035,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_str_representation_different_cardinalities": 0.0012584979999701318,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_str_representation_different_values": 0.0011251499998934378,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_str_representation_single_variable": 0.0010124990000122125,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_str_representation_three_variables": 0.001324751999959517,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestFactorMethods::test_to_dataframe": 0.5391147939998291,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionInit::test_jpd_init": 0.0007855469999640263,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionInit::test_jpd_init_exception": 0.0005510080000021844,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionMethods::test_check_independence": 0.00371517100006713,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionMethods::test_conditional_distribution_list": 0.0011026969999647918,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionMethods::test_get_independencies": 0.00389517800010708,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionMethods::test_is_imap": 0.0012513559998978963,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionMethods::test_jpd_marginal_distribution_list": 0.0010618409999096912,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionMethods::test_marginal_distribution_str": 0.0010443280000345112,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionMethods::test_minimal_imap": 0.0070857610000985005,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestJointProbabilityDistributionMethods::test_repr": 0.0007686830000466216,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDInit::test_cpd_init": 0.0023536620000186304,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDInit::test_cpd_init_cardinality_not_specified": 0.0005303990001266357,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDInit::test_cpd_init_event_card_not_int": 0.0004923100000269187,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDInit::test_cpd_init_value_not_2d": 0.00048070700006519473,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDInit::test_too_wide_cdp_table": 0.01796099100010906,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test__repr__": 0.0008740519998582386,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_copy": 0.0007267969998565604,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_copy_original_safe": 0.0007393979998369105,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_copy_state_names": 0.0006280310000192912,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_get_random": 0.001638658000047144,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_get_uniform": 0.0012588780000442057,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_get_values": 0.0006527079999614216,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_marginalize_1": 0.000716375999900265,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_marginalize_2": 0.0005590819999952146,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_marginalize_3": 0.0008010059998468932,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_normalize": 0.0006883550000793548,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_normalize_not_in_place": 0.0007168460000457344,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_normalize_original_safe": 0.0007260239999595797,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_reduce_1": 0.0006698509999978342,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_reduce_2": 0.0006589880000547055,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_reduce_3": 0.0006667639999022867,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_reduce_4": 0.0005756739999469573,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_reduce_5": 0.0007589069999767162,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_reorder_parents": 0.0006842559998858633,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_reorder_parents_inplace": 0.000710947000015949,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_reorder_parents_no_effect": 0.0006639890000315063,
"pgmpy/tests/test_factors/test_discrete/test_Factor.py::TestTabularCPDMethods::test_reorder_parents_warning": 0.0007598380001354599,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorInitTorch::test_class_init": 0.0010817880000786317,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorInitTorch::test_class_init_int_var": 0.0008612560000074154,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorInitTorch::test_class_init_nonlist_statename": 0.0006763820000514897,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorInitTorch::test_class_init_repeated_statename": 0.0006520569999111103,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorInitTorch::test_class_init_sizeerror": 0.0006424479998941024,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorInitTorch::test_class_init_statenames": 0.0008511569999427593,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorInitTorch::test_class_init_typeerror": 0.0006079040000486202,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorInitTorch::test_init_size_var_card_not_equal": 0.0006019330000981427,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_assignment": 0.0030331889998933548,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_assignment_indexerror": 0.0018824119999862887,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_complete_reduce": 0.0019929090000232463,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_eq": 0.0017269019999730517,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_eq1": 0.0018002189998469476,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_eq_state_names_order": 0.0015782740000531703,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_divide": 0.0018755490001467479,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_divide_invalid": 0.0016869970000925605,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_divide_no_common_scope": 0.001570780999827548,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_divide_non_factor_arg": 0.0013956140001027961,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_divide_truediv": 0.0018918389999953433,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_mul": 0.0017772349999631842,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_product": 0.002401329999884183,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_product_non_factor_arg": 0.0014241280000533152,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_sum": 0.002009640999972362,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_factor_sum_product": 0.7887262000001556,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_get_cardinality": 0.0015499620001264702,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_get_cardinality_scopeerror": 0.0014321029999564416,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_get_cardinality_typeerror": 0.0013877500001626686,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_get_value": 0.5112806089999822,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_hash": 0.002477563999946142,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_identity_factor": 0.001963754000030349,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_marginalize": 0.0030171289999998407,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_marginalize_scopeerror": 0.0015249669999093385,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_marginalize_shape": 0.0019878990000279373,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_marginalize_typeerror": 0.0013925479998988521,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_maximize_list": 0.001748322000025837,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_maximize_scopeerror": 0.0013945830000920978,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_maximize_shape": 0.0017290150000235371,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_maximize_single": 0.002176150000082089,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_maximize_typeerror": 0.0013997620001191535,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_normalize": 0.0019309730000713898,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_product": 0.0023486129998673277,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_reduce": 0.001831836999826919,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_reduce1": 0.0018125410000493503,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_reduce_scopeerror": 0.0016855750000104308,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_reduce_shape": 0.001822150999942096,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_reduce_sizeerror": 0.001714389000085248,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_reduce_typeerror": 0.0013808450000851735,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_sample": 0.2623869440000135,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_scope": 0.0016225370001166084,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestFactorMethodsTorch::test_set_value": 0.46738566900000933,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDInitTorch::test_cpd_init": 0.004877760999875136,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDInitTorch::test_cpd_init_cardinality_not_specified": 0.0006139540000731358,
"pgmpy/tests/test_factors/test_discrete/test_FactorTorch.py::TestTabularCPDInitTorch::test_cpd_init_event_card_not_int": 0.0005759840000791883,