-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtree.dot
1176 lines (1176 loc) · 53 KB
/
tree.dot
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
digraph Tree {
node [shape=box];
node0x5578e08a93d0 [label="Feature 3\nThreshold 2.45\nGini 0.33"];
node0x5578e08a93d0 -> node0x5578e08b69a0 [label="True"];
node0x5578e08b69a0 [label="Feature 1\nThreshold 5.75\nGini 0.00"];
node0x5578e08b69a0 -> node0x5578e08b9410 [label="True"];
node0x5578e08b9410 [label="Feature 1\nThreshold 5.70\nGini 0.00"];
node0x5578e08b9410 -> node0x5578e08ba060 [label="True"];
node0x5578e08ba060 [label="Feature 1\nThreshold 5.50\nGini 0.00"];
node0x5578e08ba060 -> node0x5578e08bad00 [label="True"];
node0x5578e08bad00 [label="Feature 1\nThreshold 5.40\nGini 0.00"];
node0x5578e08bad00 -> node0x5578e08bb930 [label="True"];
node0x5578e08bb930 [label="Feature 1\nThreshold 5.25\nGini 0.00"];
node0x5578e08bb930 -> node0x5578e08bc470 [label="True"];
node0x5578e08bc470 [label="Feature 1\nThreshold 5.20\nGini 0.00"];
node0x5578e08bc470 -> node0x5578e08bcf30 [label="True"];
node0x5578e08bcf30 [label="Feature 1\nThreshold 5.10\nGini 0.00"];
node0x5578e08bcf30 -> node0x5578e08bd9a0 [label="True"];
node0x5578e08bd9a0 [label="Feature 1\nThreshold 5.00\nGini 0.00"];
node0x5578e08bd9a0 -> node0x5578e08be220 [label="True"];
node0x5578e08be220 [label="Feature 1\nThreshold 4.90\nGini 0.00"];
node0x5578e08be220 -> node0x5578e08be8e0 [label="True"];
node0x5578e08be8e0 [label="Feature 1\nThreshold 4.80\nGini 0.00"];
node0x5578e08be8e0 -> node0x5578e08bee80 [label="True"];
node0x5578e08bee80 [label="Feature 1\nThreshold 4.70\nGini 0.00"];
node0x5578e08bee80 -> node0x5578e08bef40 [label="True"];
node0x5578e08bef40 [label="Feature 1\nThreshold 4.60\nGini 0.00"];
node0x5578e08bef40 -> node0x5578e08bf680 [label="True"];
node0x5578e08bf680 [label="Feature 1\nThreshold 4.45\nGini 0.00"];
node0x5578e08bf680 -> node0x5578e08bf960 [label="True"];
node0x5578e08bf960 [label="Feature 1\nThreshold 4.40\nGini 0.00"];
node0x5578e08bf960 -> node0x5578e08bf9c0 [label="True"];
node0x5578e08bf9c0 [label="Leaf"];
null0 [shape=point];
node0x5578e08bf9c0 -> null0 [label="True"];
null1 [shape=point];
node0x5578e08bf9c0 -> null1 [label="False"];
node0x5578e08bf960 -> node0x5578e08bfb50 [label="False"];
node0x5578e08bfb50 [label="Feature 2\nThreshold 3.10\nGini 0.00"];
node0x5578e08bfb50 -> node0x5578e08bfce0 [label="True"];
node0x5578e08bfce0 [label="Feature 2\nThreshold 2.95\nGini 0.00"];
node0x5578e08bfce0 -> node0x5578e08bfea0 [label="True"];
node0x5578e08bfea0 [label="Leaf"];
null2 [shape=point];
node0x5578e08bfea0 -> null2 [label="True"];
null3 [shape=point];
node0x5578e08bfea0 -> null3 [label="False"];
node0x5578e08bfce0 -> node0x5578e08bfed0 [label="False"];
node0x5578e08bfed0 [label="Leaf"];
null4 [shape=point];
node0x5578e08bfed0 -> null4 [label="True"];
null5 [shape=point];
node0x5578e08bfed0 -> null5 [label="False"];
node0x5578e08bfb50 -> node0x5578e08bfd10 [label="False"];
node0x5578e08bfd10 [label="Leaf"];
null6 [shape=point];
node0x5578e08bfd10 -> null6 [label="True"];
null7 [shape=point];
node0x5578e08bfd10 -> null7 [label="False"];
node0x5578e08bf680 -> node0x5578e08bf990 [label="False"];
node0x5578e08bf990 [label="Leaf"];
null8 [shape=point];
node0x5578e08bf990 -> null8 [label="True"];
null9 [shape=point];
node0x5578e08bf990 -> null9 [label="False"];
node0x5578e08bef40 -> node0x5578e08bf6b0 [label="False"];
node0x5578e08bf6b0 [label="Feature 2\nThreshold 3.50\nGini 0.00"];
node0x5578e08bf6b0 -> node0x5578e08bff00 [label="True"];
node0x5578e08bff00 [label="Feature 2\nThreshold 3.30\nGini 0.00"];
node0x5578e08bff00 -> node0x5578e08c0220 [label="True"];
node0x5578e08c0220 [label="Feature 2\nThreshold 3.15\nGini 0.00"];
node0x5578e08c0220 -> node0x5578e08c03e0 [label="True"];
node0x5578e08c03e0 [label="Leaf"];
null10 [shape=point];
node0x5578e08c03e0 -> null10 [label="True"];
null11 [shape=point];
node0x5578e08c03e0 -> null11 [label="False"];
node0x5578e08c0220 -> node0x5578e08c0410 [label="False"];
node0x5578e08c0410 [label="Leaf"];
null12 [shape=point];
node0x5578e08c0410 -> null12 [label="True"];
null13 [shape=point];
node0x5578e08c0410 -> null13 [label="False"];
node0x5578e08bff00 -> node0x5578e08c0250 [label="False"];
node0x5578e08c0250 [label="Leaf"];
null14 [shape=point];
node0x5578e08c0250 -> null14 [label="True"];
null15 [shape=point];
node0x5578e08c0250 -> null15 [label="False"];
node0x5578e08bf6b0 -> node0x5578e08c0090 [label="False"];
node0x5578e08c0090 [label="Leaf"];
null16 [shape=point];
node0x5578e08c0090 -> null16 [label="True"];
null17 [shape=point];
node0x5578e08c0090 -> null17 [label="False"];
node0x5578e08bee80 -> node0x5578e08bf260 [label="False"];
node0x5578e08bf260 [label="Feature 3\nThreshold 1.45\nGini 0.00"];
node0x5578e08bf260 -> node0x5578e08c05a0 [label="True"];
node0x5578e08c05a0 [label="Leaf"];
null18 [shape=point];
node0x5578e08c05a0 -> null18 [label="True"];
null19 [shape=point];
node0x5578e08c05a0 -> null19 [label="False"];
node0x5578e08bf260 -> node0x5578e08c05d0 [label="False"];
node0x5578e08c05d0 [label="Leaf"];
null20 [shape=point];
node0x5578e08c05d0 -> null20 [label="True"];
null21 [shape=point];
node0x5578e08c05d0 -> null21 [label="False"];
node0x5578e08be8e0 -> node0x5578e08beeb0 [label="False"];
node0x5578e08beeb0 [label="Feature 2\nThreshold 3.40\nGini 0.00"];
node0x5578e08beeb0 -> node0x5578e08c0600 [label="True"];
node0x5578e08c0600 [label="Feature 2\nThreshold 3.05\nGini 0.00"];
node0x5578e08c0600 -> node0x5578e08c0c20 [label="True"];
node0x5578e08c0c20 [label="Feature 4\nThreshold 0.20\nGini 0.00"];
node0x5578e08c0c20 -> node0x5578e08c0f80 [label="True"];
node0x5578e08c0f80 [label="Leaf"];
null22 [shape=point];
node0x5578e08c0f80 -> null22 [label="True"];
null23 [shape=point];
node0x5578e08c0f80 -> null23 [label="False"];
node0x5578e08c0c20 -> node0x5578e08c0fb0 [label="False"];
node0x5578e08c0fb0 [label="Leaf"];
null24 [shape=point];
node0x5578e08c0fb0 -> null24 [label="True"];
null25 [shape=point];
node0x5578e08c0fb0 -> null25 [label="False"];
node0x5578e08c0600 -> node0x5578e08c0c50 [label="False"];
node0x5578e08c0c50 [label="Leaf"];
null26 [shape=point];
node0x5578e08c0c50 -> null26 [label="True"];
null27 [shape=point];
node0x5578e08c0c50 -> null27 [label="False"];
node0x5578e08beeb0 -> node0x5578e08c08f0 [label="False"];
node0x5578e08c08f0 [label="Feature 3\nThreshold 1.75\nGini 0.00"];
node0x5578e08c08f0 -> node0x5578e08c12e0 [label="True"];
node0x5578e08c12e0 [label="Leaf"];
null28 [shape=point];
node0x5578e08c12e0 -> null28 [label="True"];
null29 [shape=point];
node0x5578e08c12e0 -> null29 [label="False"];
node0x5578e08c08f0 -> node0x5578e08c1310 [label="False"];
node0x5578e08c1310 [label="Leaf"];
null30 [shape=point];
node0x5578e08c1310 -> null30 [label="True"];
null31 [shape=point];
node0x5578e08c1310 -> null31 [label="False"];
node0x5578e08be220 -> node0x5578e08be910 [label="False"];
node0x5578e08be910 [label="Feature 2\nThreshold 3.10\nGini 0.00"];
node0x5578e08be910 -> node0x5578e08c1340 [label="True"];
node0x5578e08c1340 [label="Leaf"];
null32 [shape=point];
node0x5578e08c1340 -> null32 [label="True"];
null33 [shape=point];
node0x5578e08c1340 -> null33 [label="False"];
node0x5578e08be910 -> node0x5578e08c1670 [label="False"];
node0x5578e08c1670 [label="Leaf"];
null34 [shape=point];
node0x5578e08c1670 -> null34 [label="True"];
null35 [shape=point];
node0x5578e08c1670 -> null35 [label="False"];
node0x5578e08bd9a0 -> node0x5578e08be250 [label="False"];
node0x5578e08be250 [label="Feature 2\nThreshold 3.55\nGini 0.00"];
node0x5578e08be250 -> node0x5578e08c16e0 [label="True"];
node0x5578e08c16e0 [label="Feature 2\nThreshold 3.50\nGini 0.00"];
node0x5578e08c16e0 -> node0x5578e08c1e20 [label="True"];
node0x5578e08c1e20 [label="Feature 2\nThreshold 3.40\nGini 0.00"];
node0x5578e08c1e20 -> node0x5578e08c1e80 [label="True"];
node0x5578e08c1e80 [label="Feature 2\nThreshold 3.25\nGini 0.00"];
node0x5578e08c1e80 -> node0x5578e08c24e0 [label="True"];
node0x5578e08c24e0 [label="Feature 2\nThreshold 3.10\nGini 0.00"];
node0x5578e08c24e0 -> node0x5578e08c2840 [label="True"];
node0x5578e08c2840 [label="Leaf"];
null36 [shape=point];
node0x5578e08c2840 -> null36 [label="True"];
null37 [shape=point];
node0x5578e08c2840 -> null37 [label="False"];
node0x5578e08c24e0 -> node0x5578e08c2870 [label="False"];
node0x5578e08c2870 [label="Leaf"];
null38 [shape=point];
node0x5578e08c2870 -> null38 [label="True"];
null39 [shape=point];
node0x5578e08c2870 -> null39 [label="False"];
node0x5578e08c1e80 -> node0x5578e08c2510 [label="False"];
node0x5578e08c2510 [label="Leaf"];
null40 [shape=point];
node0x5578e08c2510 -> null40 [label="True"];
null41 [shape=point];
node0x5578e08c2510 -> null41 [label="False"];
node0x5578e08c1e20 -> node0x5578e08c21b0 [label="False"];
node0x5578e08c21b0 [label="Feature 3\nThreshold 1.55\nGini 0.00"];
node0x5578e08c21b0 -> node0x5578e08c2ba0 [label="True"];
node0x5578e08c2ba0 [label="Leaf"];
null42 [shape=point];
node0x5578e08c2ba0 -> null42 [label="True"];
null43 [shape=point];
node0x5578e08c2ba0 -> null43 [label="False"];
node0x5578e08c21b0 -> node0x5578e08c2bd0 [label="False"];
node0x5578e08c2bd0 [label="Leaf"];
null44 [shape=point];
node0x5578e08c2bd0 -> null44 [label="True"];
null45 [shape=point];
node0x5578e08c2bd0 -> null45 [label="False"];
node0x5578e08c16e0 -> node0x5578e08c1e50 [label="False"];
node0x5578e08c1e50 [label="Feature 3\nThreshold 1.45\nGini 0.00"];
node0x5578e08c1e50 -> node0x5578e08c2f00 [label="True"];
node0x5578e08c2f00 [label="Leaf"];
null46 [shape=point];
node0x5578e08c2f00 -> null46 [label="True"];
null47 [shape=point];
node0x5578e08c2f00 -> null47 [label="False"];
node0x5578e08c1e50 -> node0x5578e08c2f30 [label="False"];
node0x5578e08c2f30 [label="Leaf"];
null48 [shape=point];
node0x5578e08c2f30 -> null48 [label="True"];
null49 [shape=point];
node0x5578e08c2f30 -> null49 [label="False"];
node0x5578e08be250 -> node0x5578e08c1a90 [label="False"];
node0x5578e08c1a90 [label="Leaf"];
null50 [shape=point];
node0x5578e08c1a90 -> null50 [label="True"];
null51 [shape=point];
node0x5578e08c1a90 -> null51 [label="False"];
node0x5578e08bcf30 -> node0x5578e08bd9d0 [label="False"];
node0x5578e08bd9d0 [label="Feature 2\nThreshold 3.80\nGini 0.00"];
node0x5578e08bd9d0 -> node0x5578e08c32c0 [label="True"];
node0x5578e08c32c0 [label="Feature 2\nThreshold 3.60\nGini 0.00"];
node0x5578e08c32c0 -> node0x5578e08c3680 [label="True"];
node0x5578e08c3680 [label="Feature 2\nThreshold 3.50\nGini 0.00"];
node0x5578e08c3680 -> node0x5578e08c36e0 [label="True"];
node0x5578e08c36e0 [label="Feature 2\nThreshold 3.35\nGini 0.00"];
node0x5578e08c36e0 -> node0x5578e08c3d40 [label="True"];
node0x5578e08c3d40 [label="Leaf"];
null52 [shape=point];
node0x5578e08c3d40 -> null52 [label="True"];
null53 [shape=point];
node0x5578e08c3d40 -> null53 [label="False"];
node0x5578e08c36e0 -> node0x5578e08c3d70 [label="False"];
node0x5578e08c3d70 [label="Leaf"];
null54 [shape=point];
node0x5578e08c3d70 -> null54 [label="True"];
null55 [shape=point];
node0x5578e08c3d70 -> null55 [label="False"];
node0x5578e08c3680 -> node0x5578e08c3a10 [label="False"];
node0x5578e08c3a10 [label="Feature 4\nThreshold 0.25\nGini 0.00"];
node0x5578e08c3a10 -> node0x5578e08c40a0 [label="True"];
node0x5578e08c40a0 [label="Leaf"];
null56 [shape=point];
node0x5578e08c40a0 -> null56 [label="True"];
null57 [shape=point];
node0x5578e08c40a0 -> null57 [label="False"];
node0x5578e08c3a10 -> node0x5578e08c40d0 [label="False"];
node0x5578e08c40d0 [label="Leaf"];
null58 [shape=point];
node0x5578e08c40d0 -> null58 [label="True"];
null59 [shape=point];
node0x5578e08c40d0 -> null59 [label="False"];
node0x5578e08c32c0 -> node0x5578e08c36b0 [label="False"];
node0x5578e08c36b0 [label="Leaf"];
null60 [shape=point];
node0x5578e08c36b0 -> null60 [label="True"];
null61 [shape=point];
node0x5578e08c36b0 -> null61 [label="False"];
node0x5578e08bd9d0 -> node0x5578e08c32f0 [label="False"];
node0x5578e08c32f0 [label="Feature 3\nThreshold 1.75\nGini 0.00"];
node0x5578e08c32f0 -> node0x5578e08c4400 [label="True"];
node0x5578e08c4400 [label="Feature 3\nThreshold 1.55\nGini 0.00"];
node0x5578e08c4400 -> node0x5578e08c4760 [label="True"];
node0x5578e08c4760 [label="Leaf"];
null62 [shape=point];
node0x5578e08c4760 -> null62 [label="True"];
null63 [shape=point];
node0x5578e08c4760 -> null63 [label="False"];
node0x5578e08c4400 -> node0x5578e08c4790 [label="False"];
node0x5578e08c4790 [label="Leaf"];
null64 [shape=point];
node0x5578e08c4790 -> null64 [label="True"];
null65 [shape=point];
node0x5578e08c4790 -> null65 [label="False"];
node0x5578e08c32f0 -> node0x5578e08c4430 [label="False"];
node0x5578e08c4430 [label="Leaf"];
null66 [shape=point];
node0x5578e08c4430 -> null66 [label="True"];
null67 [shape=point];
node0x5578e08c4430 -> null67 [label="False"];
node0x5578e08bc470 -> node0x5578e08bcf60 [label="False"];
node0x5578e08bcf60 [label="Feature 2\nThreshold 3.80\nGini 0.00"];
node0x5578e08bcf60 -> node0x5578e08c4ac0 [label="True"];
node0x5578e08c4ac0 [label="Feature 2\nThreshold 3.45\nGini 0.00"];
node0x5578e08c4ac0 -> node0x5578e08c4e20 [label="True"];
node0x5578e08c4e20 [label="Leaf"];
null68 [shape=point];
node0x5578e08c4e20 -> null68 [label="True"];
null69 [shape=point];
node0x5578e08c4e20 -> null69 [label="False"];
node0x5578e08c4ac0 -> node0x5578e08c4e50 [label="False"];
node0x5578e08c4e50 [label="Leaf"];
null70 [shape=point];
node0x5578e08c4e50 -> null70 [label="True"];
null71 [shape=point];
node0x5578e08c4e50 -> null71 [label="False"];
node0x5578e08bcf60 -> node0x5578e08c4af0 [label="False"];
node0x5578e08c4af0 [label="Leaf"];
null72 [shape=point];
node0x5578e08c4af0 -> null72 [label="True"];
null73 [shape=point];
node0x5578e08c4af0 -> null73 [label="False"];
node0x5578e08bb930 -> node0x5578e08bc4a0 [label="False"];
node0x5578e08bc4a0 [label="Leaf"];
null74 [shape=point];
node0x5578e08bc4a0 -> null74 [label="True"];
null75 [shape=point];
node0x5578e08bc4a0 -> null75 [label="False"];
node0x5578e08bad00 -> node0x5578e08bb960 [label="False"];
node0x5578e08bb960 [label="Feature 2\nThreshold 3.90\nGini 0.00"];
node0x5578e08bb960 -> node0x5578e08c4e80 [label="True"];
node0x5578e08c4e80 [label="Feature 2\nThreshold 3.55\nGini 0.00"];
node0x5578e08c4e80 -> node0x5578e08c54e0 [label="True"];
node0x5578e08c54e0 [label="Feature 3\nThreshold 1.60\nGini 0.00"];
node0x5578e08c54e0 -> node0x5578e08c5840 [label="True"];
node0x5578e08c5840 [label="Leaf"];
null76 [shape=point];
node0x5578e08c5840 -> null76 [label="True"];
null77 [shape=point];
node0x5578e08c5840 -> null77 [label="False"];
node0x5578e08c54e0 -> node0x5578e08c5870 [label="False"];
node0x5578e08c5870 [label="Leaf"];
null78 [shape=point];
node0x5578e08c5870 -> null78 [label="True"];
null79 [shape=point];
node0x5578e08c5870 -> null79 [label="False"];
node0x5578e08c4e80 -> node0x5578e08c5510 [label="False"];
node0x5578e08c5510 [label="Leaf"];
null80 [shape=point];
node0x5578e08c5510 -> null80 [label="True"];
null81 [shape=point];
node0x5578e08c5510 -> null81 [label="False"];
node0x5578e08bb960 -> node0x5578e08c51b0 [label="False"];
node0x5578e08c51b0 [label="Feature 3\nThreshold 1.50\nGini 0.00"];
node0x5578e08c51b0 -> node0x5578e08c5ba0 [label="True"];
node0x5578e08c5ba0 [label="Leaf"];
null82 [shape=point];
node0x5578e08c5ba0 -> null82 [label="True"];
null83 [shape=point];
node0x5578e08c5ba0 -> null83 [label="False"];
node0x5578e08c51b0 -> node0x5578e08c5bd0 [label="False"];
node0x5578e08c5bd0 [label="Leaf"];
null84 [shape=point];
node0x5578e08c5bd0 -> null84 [label="True"];
null85 [shape=point];
node0x5578e08c5bd0 -> null85 [label="False"];
node0x5578e08ba060 -> node0x5578e08bad30 [label="False"];
node0x5578e08bad30 [label="Feature 2\nThreshold 3.85\nGini 0.00"];
node0x5578e08bad30 -> node0x5578e08c5f00 [label="True"];
node0x5578e08c5f00 [label="Leaf"];
null86 [shape=point];
node0x5578e08c5f00 -> null86 [label="True"];
null87 [shape=point];
node0x5578e08c5f00 -> null87 [label="False"];
node0x5578e08bad30 -> node0x5578e08c5f30 [label="False"];
node0x5578e08c5f30 [label="Leaf"];
null88 [shape=point];
node0x5578e08c5f30 -> null88 [label="True"];
null89 [shape=point];
node0x5578e08c5f30 -> null89 [label="False"];
node0x5578e08b9410 -> node0x5578e08ba090 [label="False"];
node0x5578e08ba090 [label="Feature 2\nThreshold 4.10\nGini 0.00"];
node0x5578e08ba090 -> node0x5578e08c6260 [label="True"];
node0x5578e08c6260 [label="Leaf"];
null90 [shape=point];
node0x5578e08c6260 -> null90 [label="True"];
null91 [shape=point];
node0x5578e08c6260 -> null91 [label="False"];
node0x5578e08ba090 -> node0x5578e08c6290 [label="False"];
node0x5578e08c6290 [label="Leaf"];
null92 [shape=point];
node0x5578e08c6290 -> null92 [label="True"];
null93 [shape=point];
node0x5578e08c6290 -> null93 [label="False"];
node0x5578e08b69a0 -> node0x5578e08b9440 [label="False"];
node0x5578e08b9440 [label="Leaf"];
null94 [shape=point];
node0x5578e08b9440 -> null94 [label="True"];
null95 [shape=point];
node0x5578e08b9440 -> null95 [label="False"];
node0x5578e08a93d0 -> node0x5578e08b69d0 [label="False"];
node0x5578e08b69d0 [label="Feature 4\nThreshold 1.80\nGini 0.11"];
node0x5578e08b69d0 -> node0x5578e08c79b0 [label="True"];
node0x5578e08c79b0 [label="Feature 3\nThreshold 5.00\nGini 0.09"];
node0x5578e08c79b0 -> node0x5578e08c86e0 [label="True"];
node0x5578e08c86e0 [label="Feature 4\nThreshold 1.65\nGini 0.00"];
node0x5578e08c86e0 -> node0x5578e08c9410 [label="True"];
node0x5578e08c9410 [label="Feature 1\nThreshold 6.95\nGini 0.00"];
node0x5578e08c9410 -> node0x5578e08c9fb0 [label="True"];
node0x5578e08c9fb0 [label="Feature 1\nThreshold 6.85\nGini 0.00"];
node0x5578e08c9fb0 -> node0x5578e08cab00 [label="True"];
node0x5578e08cab00 [label="Feature 1\nThreshold 6.75\nGini 0.00"];
node0x5578e08cab00 -> node0x5578e08cb640 [label="True"];
node0x5578e08cb640 [label="Feature 1\nThreshold 6.70\nGini 0.00"];
node0x5578e08cb640 -> node0x5578e08cc290 [label="True"];
node0x5578e08cc290 [label="Feature 1\nThreshold 6.60\nGini 0.00"];
node0x5578e08cc290 -> node0x5578e08ccd20 [label="True"];
node0x5578e08ccd20 [label="Feature 1\nThreshold 6.45\nGini 0.00"];
node0x5578e08ccd20 -> node0x5578e08cd750 [label="True"];
node0x5578e08cd750 [label="Feature 1\nThreshold 6.40\nGini 0.00"];
node0x5578e08cd750 -> node0x5578e08ce120 [label="True"];
node0x5578e08ce120 [label="Feature 1\nThreshold 6.30\nGini 0.00"];
node0x5578e08ce120 -> node0x5578e08cebb0 [label="True"];
node0x5578e08cebb0 [label="Feature 1\nThreshold 6.20\nGini 0.00"];
node0x5578e08cebb0 -> node0x5578e08cf4c0 [label="True"];
node0x5578e08cf4c0 [label="Feature 1\nThreshold 6.10\nGini 0.00"];
node0x5578e08cf4c0 -> node0x5578e08cfda0 [label="True"];
node0x5578e08cfda0 [label="Feature 1\nThreshold 6.00\nGini 0.00"];
node0x5578e08cfda0 -> node0x5578e08d0520 [label="True"];
node0x5578e08d0520 [label="Feature 1\nThreshold 5.85\nGini 0.00"];
node0x5578e08d0520 -> node0x5578e08d0ca0 [label="True"];
node0x5578e08d0ca0 [label="Feature 1\nThreshold 5.80\nGini 0.00"];
node0x5578e08d0ca0 -> node0x5578e08d1380 [label="True"];
node0x5578e08d1380 [label="Feature 1\nThreshold 5.70\nGini 0.00"];
node0x5578e08d1380 -> node0x5578e08d1a20 [label="True"];
node0x5578e08d1a20 [label="Feature 1\nThreshold 5.60\nGini 0.00"];
node0x5578e08d1a20 -> node0x5578e08d1f90 [label="True"];
node0x5578e08d1f90 [label="Feature 1\nThreshold 5.50\nGini 0.00"];
node0x5578e08d1f90 -> node0x5578e08d2470 [label="True"];
node0x5578e08d2470 [label="Feature 1\nThreshold 5.30\nGini 0.00"];
node0x5578e08d2470 -> node0x5578e08d2810 [label="True"];
node0x5578e08d2810 [label="Feature 1\nThreshold 5.15\nGini 0.00"];
node0x5578e08d2810 -> node0x5578e08d2bd0 [label="True"];
node0x5578e08d2bd0 [label="Feature 1\nThreshold 5.05\nGini 0.00"];
node0x5578e08d2bd0 -> node0x5578e08d2c30 [label="True"];
node0x5578e08d2c30 [label="Feature 1\nThreshold 5.00\nGini 0.00"];
node0x5578e08d2c30 -> node0x5578e08d3290 [label="True"];
node0x5578e08d3290 [label="Leaf"];
null96 [shape=point];
node0x5578e08d3290 -> null96 [label="True"];
null97 [shape=point];
node0x5578e08d3290 -> null97 [label="False"];
node0x5578e08d2c30 -> node0x5578e08d32c0 [label="False"];
node0x5578e08d32c0 [label="Feature 2\nThreshold 2.15\nGini 0.00"];
node0x5578e08d32c0 -> node0x5578e08d35f0 [label="True"];
node0x5578e08d35f0 [label="Leaf"];
null98 [shape=point];
node0x5578e08d35f0 -> null98 [label="True"];
null99 [shape=point];
node0x5578e08d35f0 -> null99 [label="False"];
node0x5578e08d32c0 -> node0x5578e08d3620 [label="False"];
node0x5578e08d3620 [label="Leaf"];
null100 [shape=point];
node0x5578e08d3620 -> null100 [label="True"];
null101 [shape=point];
node0x5578e08d3620 -> null101 [label="False"];
node0x5578e08d2bd0 -> node0x5578e08d2f60 [label="False"];
node0x5578e08d2f60 [label="Leaf"];
null102 [shape=point];
node0x5578e08d2f60 -> null102 [label="True"];
null103 [shape=point];
node0x5578e08d2f60 -> null103 [label="False"];
node0x5578e08d2810 -> node0x5578e08d2c00 [label="False"];
node0x5578e08d2c00 [label="Leaf"];
null104 [shape=point];
node0x5578e08d2c00 -> null104 [label="True"];
null105 [shape=point];
node0x5578e08d2c00 -> null105 [label="False"];
node0x5578e08d2470 -> node0x5578e08d2840 [label="False"];
node0x5578e08d2840 [label="Leaf"];
null106 [shape=point];
node0x5578e08d2840 -> null106 [label="True"];
null107 [shape=point];
node0x5578e08d2840 -> null107 [label="False"];
node0x5578e08d1f90 -> node0x5578e08d24a0 [label="False"];
node0x5578e08d24a0 [label="Feature 2\nThreshold 2.55\nGini 0.00"];
node0x5578e08d24a0 -> node0x5578e08d39b0 [label="True"];
node0x5578e08d39b0 [label="Feature 2\nThreshold 2.45\nGini 0.00"];
node0x5578e08d39b0 -> node0x5578e08d3a10 [label="True"];
node0x5578e08d3a10 [label="Feature 2\nThreshold 2.40\nGini 0.00"];
node0x5578e08d3a10 -> node0x5578e08d4070 [label="True"];
node0x5578e08d4070 [label="Leaf"];
null108 [shape=point];
node0x5578e08d4070 -> null108 [label="True"];
null109 [shape=point];
node0x5578e08d4070 -> null109 [label="False"];
node0x5578e08d3a10 -> node0x5578e08d40a0 [label="False"];
node0x5578e08d40a0 [label="Feature 3\nThreshold 3.75\nGini 0.00"];
node0x5578e08d40a0 -> node0x5578e08d43d0 [label="True"];
node0x5578e08d43d0 [label="Leaf"];
null110 [shape=point];
node0x5578e08d43d0 -> null110 [label="True"];
null111 [shape=point];
node0x5578e08d43d0 -> null111 [label="False"];
node0x5578e08d40a0 -> node0x5578e08d4400 [label="False"];
node0x5578e08d4400 [label="Leaf"];
null112 [shape=point];
node0x5578e08d4400 -> null112 [label="True"];
null113 [shape=point];
node0x5578e08d4400 -> null113 [label="False"];
node0x5578e08d39b0 -> node0x5578e08d3d40 [label="False"];
node0x5578e08d3d40 [label="Leaf"];
null114 [shape=point];
node0x5578e08d3d40 -> null114 [label="True"];
null115 [shape=point];
node0x5578e08d3d40 -> null115 [label="False"];
node0x5578e08d24a0 -> node0x5578e08d39e0 [label="False"];
node0x5578e08d39e0 [label="Leaf"];
null116 [shape=point];
node0x5578e08d39e0 -> null116 [label="True"];
null117 [shape=point];
node0x5578e08d39e0 -> null117 [label="False"];
node0x5578e08d1a20 -> node0x5578e08d1fc0 [label="False"];
node0x5578e08d1fc0 [label="Feature 2\nThreshold 3.00\nGini 0.00"];
node0x5578e08d1fc0 -> node0x5578e08d4430 [label="True"];
node0x5578e08d4430 [label="Feature 2\nThreshold 2.80\nGini 0.00"];
node0x5578e08d4430 -> node0x5578e08d4a90 [label="True"];
node0x5578e08d4a90 [label="Feature 2\nThreshold 2.60\nGini 0.00"];
node0x5578e08d4a90 -> node0x5578e08d4df0 [label="True"];
node0x5578e08d4df0 [label="Leaf"];
null118 [shape=point];
node0x5578e08d4df0 -> null118 [label="True"];
null119 [shape=point];
node0x5578e08d4df0 -> null119 [label="False"];
node0x5578e08d4a90 -> node0x5578e08d4e20 [label="False"];
node0x5578e08d4e20 [label="Leaf"];
null120 [shape=point];
node0x5578e08d4e20 -> null120 [label="True"];
null121 [shape=point];
node0x5578e08d4e20 -> null121 [label="False"];
node0x5578e08d4430 -> node0x5578e08d4ac0 [label="False"];
node0x5578e08d4ac0 [label="Leaf"];
null122 [shape=point];
node0x5578e08d4ac0 -> null122 [label="True"];
null123 [shape=point];
node0x5578e08d4ac0 -> null123 [label="False"];
node0x5578e08d1fc0 -> node0x5578e08d4760 [label="False"];
node0x5578e08d4760 [label="Feature 3\nThreshold 4.30\nGini 0.00"];
node0x5578e08d4760 -> node0x5578e08d5150 [label="True"];
node0x5578e08d5150 [label="Leaf"];
null124 [shape=point];
node0x5578e08d5150 -> null124 [label="True"];
null125 [shape=point];
node0x5578e08d5150 -> null125 [label="False"];
node0x5578e08d4760 -> node0x5578e08d5180 [label="False"];
node0x5578e08d5180 [label="Leaf"];
null126 [shape=point];
node0x5578e08d5180 -> null126 [label="True"];
null127 [shape=point];
node0x5578e08d5180 -> null127 [label="False"];
node0x5578e08d1380 -> node0x5578e08d1a50 [label="False"];
node0x5578e08d1a50 [label="Feature 2\nThreshold 2.95\nGini 0.00"];
node0x5578e08d1a50 -> node0x5578e08d5510 [label="True"];
node0x5578e08d5510 [label="Feature 2\nThreshold 2.85\nGini 0.00"];
node0x5578e08d5510 -> node0x5578e08d5570 [label="True"];
node0x5578e08d5570 [label="Feature 2\nThreshold 2.80\nGini 0.00"];
node0x5578e08d5570 -> node0x5578e08d5bd0 [label="True"];
node0x5578e08d5bd0 [label="Leaf"];
null128 [shape=point];
node0x5578e08d5bd0 -> null128 [label="True"];
null129 [shape=point];
node0x5578e08d5bd0 -> null129 [label="False"];
node0x5578e08d5570 -> node0x5578e08d5c00 [label="False"];
node0x5578e08d5c00 [label="Feature 3\nThreshold 4.30\nGini 0.00"];
node0x5578e08d5c00 -> node0x5578e08d5f30 [label="True"];
node0x5578e08d5f30 [label="Leaf"];
null130 [shape=point];
node0x5578e08d5f30 -> null130 [label="True"];
null131 [shape=point];
node0x5578e08d5f30 -> null131 [label="False"];
node0x5578e08d5c00 -> node0x5578e08d5f60 [label="False"];
node0x5578e08d5f60 [label="Leaf"];
null132 [shape=point];
node0x5578e08d5f60 -> null132 [label="True"];
null133 [shape=point];
node0x5578e08d5f60 -> null133 [label="False"];
node0x5578e08d5510 -> node0x5578e08d58a0 [label="False"];
node0x5578e08d58a0 [label="Leaf"];
null134 [shape=point];
node0x5578e08d58a0 -> null134 [label="True"];
null135 [shape=point];
node0x5578e08d58a0 -> null135 [label="False"];
node0x5578e08d1a50 -> node0x5578e08d5540 [label="False"];
node0x5578e08d5540 [label="Leaf"];
null136 [shape=point];
node0x5578e08d5540 -> null136 [label="True"];
null137 [shape=point];
node0x5578e08d5540 -> null137 [label="False"];
node0x5578e08d0ca0 -> node0x5578e08d13b0 [label="False"];
node0x5578e08d13b0 [label="Feature 2\nThreshold 2.70\nGini 0.00"];
node0x5578e08d13b0 -> node0x5578e08d6290 [label="True"];
node0x5578e08d6290 [label="Leaf"];
null138 [shape=point];
node0x5578e08d6290 -> null138 [label="True"];
null139 [shape=point];
node0x5578e08d6290 -> null139 [label="False"];
node0x5578e08d13b0 -> node0x5578e08d62c0 [label="False"];
node0x5578e08d62c0 [label="Feature 3\nThreshold 4.00\nGini 0.00"];
node0x5578e08d62c0 -> node0x5578e08d65f0 [label="True"];
node0x5578e08d65f0 [label="Leaf"];
null140 [shape=point];
node0x5578e08d65f0 -> null140 [label="True"];
null141 [shape=point];
node0x5578e08d65f0 -> null141 [label="False"];
node0x5578e08d62c0 -> node0x5578e08d6620 [label="False"];
node0x5578e08d6620 [label="Leaf"];
null142 [shape=point];
node0x5578e08d6620 -> null142 [label="True"];
null143 [shape=point];
node0x5578e08d6620 -> null143 [label="False"];
node0x5578e08d0520 -> node0x5578e08d0cd0 [label="False"];
node0x5578e08d0cd0 [label="Leaf"];
null144 [shape=point];
node0x5578e08d0cd0 -> null144 [label="True"];
null145 [shape=point];
node0x5578e08d0cd0 -> null145 [label="False"];
node0x5578e08cfda0 -> node0x5578e08d0550 [label="False"];
node0x5578e08d0550 [label="Feature 2\nThreshold 3.15\nGini 0.00"];
node0x5578e08d0550 -> node0x5578e08d6950 [label="True"];
node0x5578e08d6950 [label="Feature 2\nThreshold 2.55\nGini 0.00"];
node0x5578e08d6950 -> node0x5578e08d6cb0 [label="True"];
node0x5578e08d6cb0 [label="Leaf"];
null146 [shape=point];
node0x5578e08d6cb0 -> null146 [label="True"];
null147 [shape=point];
node0x5578e08d6cb0 -> null147 [label="False"];
node0x5578e08d6950 -> node0x5578e08d6ce0 [label="False"];
node0x5578e08d6ce0 [label="Leaf"];
null148 [shape=point];
node0x5578e08d6ce0 -> null148 [label="True"];
null149 [shape=point];
node0x5578e08d6ce0 -> null149 [label="False"];
node0x5578e08d0550 -> node0x5578e08d6980 [label="False"];
node0x5578e08d6980 [label="Leaf"];
null150 [shape=point];
node0x5578e08d6980 -> null150 [label="True"];
null151 [shape=point];
node0x5578e08d6980 -> null151 [label="False"];
node0x5578e08cf4c0 -> node0x5578e08cfdd0 [label="False"];
node0x5578e08cfdd0 [label="Feature 2\nThreshold 2.95\nGini 0.00"];
node0x5578e08cfdd0 -> node0x5578e08d6d10 [label="True"];
node0x5578e08d6d10 [label="Feature 2\nThreshold 2.85\nGini 0.00"];
node0x5578e08d6d10 -> node0x5578e08d7370 [label="True"];
node0x5578e08d7370 [label="Feature 3\nThreshold 4.35\nGini 0.00"];
node0x5578e08d7370 -> node0x5578e08d76d0 [label="True"];
node0x5578e08d76d0 [label="Leaf"];
null152 [shape=point];
node0x5578e08d76d0 -> null152 [label="True"];
null153 [shape=point];
node0x5578e08d76d0 -> null153 [label="False"];
node0x5578e08d7370 -> node0x5578e08d7700 [label="False"];
node0x5578e08d7700 [label="Leaf"];
null154 [shape=point];
node0x5578e08d7700 -> null154 [label="True"];
null155 [shape=point];
node0x5578e08d7700 -> null155 [label="False"];
node0x5578e08d6d10 -> node0x5578e08d73a0 [label="False"];
node0x5578e08d73a0 [label="Leaf"];
null156 [shape=point];
node0x5578e08d73a0 -> null156 [label="True"];
null157 [shape=point];
node0x5578e08d73a0 -> null157 [label="False"];
node0x5578e08cfdd0 -> node0x5578e08d7040 [label="False"];
node0x5578e08d7040 [label="Leaf"];
null158 [shape=point];
node0x5578e08d7040 -> null158 [label="True"];
null159 [shape=point];
node0x5578e08d7040 -> null159 [label="False"];
node0x5578e08cebb0 -> node0x5578e08cf4f0 [label="False"];
node0x5578e08cf4f0 [label="Feature 2\nThreshold 2.55\nGini 0.00"];
node0x5578e08cf4f0 -> node0x5578e08d7a30 [label="True"];
node0x5578e08d7a30 [label="Leaf"];
null160 [shape=point];
node0x5578e08d7a30 -> null160 [label="True"];
null161 [shape=point];
node0x5578e08d7a30 -> null161 [label="False"];
node0x5578e08cf4f0 -> node0x5578e08d7a60 [label="False"];
node0x5578e08d7a60 [label="Leaf"];
null162 [shape=point];
node0x5578e08d7a60 -> null162 [label="True"];
null163 [shape=point];
node0x5578e08d7a60 -> null163 [label="False"];
node0x5578e08ce120 -> node0x5578e08cebe0 [label="False"];
node0x5578e08cebe0 [label="Feature 2\nThreshold 2.90\nGini 0.00"];
node0x5578e08cebe0 -> node0x5578e08d7d90 [label="True"];
node0x5578e08d7d90 [label="Feature 2\nThreshold 2.40\nGini 0.00"];
node0x5578e08d7d90 -> node0x5578e08d80f0 [label="True"];
node0x5578e08d80f0 [label="Leaf"];
null164 [shape=point];
node0x5578e08d80f0 -> null164 [label="True"];
null165 [shape=point];
node0x5578e08d80f0 -> null165 [label="False"];
node0x5578e08d7d90 -> node0x5578e08d8120 [label="False"];
node0x5578e08d8120 [label="Leaf"];
null166 [shape=point];
node0x5578e08d8120 -> null166 [label="True"];
null167 [shape=point];
node0x5578e08d8120 -> null167 [label="False"];
node0x5578e08cebe0 -> node0x5578e08d7dc0 [label="False"];
node0x5578e08d7dc0 [label="Leaf"];
null168 [shape=point];
node0x5578e08d7dc0 -> null168 [label="True"];
null169 [shape=point];
node0x5578e08d7dc0 -> null169 [label="False"];
node0x5578e08cd750 -> node0x5578e08ce150 [label="False"];
node0x5578e08ce150 [label="Feature 2\nThreshold 3.05\nGini 0.00"];
node0x5578e08ce150 -> node0x5578e08d8450 [label="True"];
node0x5578e08d8450 [label="Leaf"];
null170 [shape=point];
node0x5578e08d8450 -> null170 [label="True"];
null171 [shape=point];
node0x5578e08d8450 -> null171 [label="False"];
node0x5578e08ce150 -> node0x5578e08d8480 [label="False"];
node0x5578e08d8480 [label="Leaf"];
null172 [shape=point];
node0x5578e08d8480 -> null172 [label="True"];
null173 [shape=point];
node0x5578e08d8480 -> null173 [label="False"];
node0x5578e08ccd20 -> node0x5578e08cd780 [label="False"];
node0x5578e08cd780 [label="Leaf"];
null174 [shape=point];
node0x5578e08cd780 -> null174 [label="True"];
null175 [shape=point];
node0x5578e08cd780 -> null175 [label="False"];
node0x5578e08cc290 -> node0x5578e08ccd50 [label="False"];
node0x5578e08ccd50 [label="Feature 2\nThreshold 2.95\nGini 0.00"];
node0x5578e08ccd50 -> node0x5578e08d87b0 [label="True"];
node0x5578e08d87b0 [label="Leaf"];
null176 [shape=point];
node0x5578e08d87b0 -> null176 [label="True"];
null177 [shape=point];
node0x5578e08d87b0 -> null177 [label="False"];
node0x5578e08ccd50 -> node0x5578e08d87e0 [label="False"];
node0x5578e08d87e0 [label="Leaf"];
null178 [shape=point];
node0x5578e08d87e0 -> null178 [label="True"];
null179 [shape=point];
node0x5578e08d87e0 -> null179 [label="False"];
node0x5578e08cb640 -> node0x5578e08cc2c0 [label="False"];
node0x5578e08cc2c0 [label="Feature 3\nThreshold 4.55\nGini 0.00"];
node0x5578e08cc2c0 -> node0x5578e08d8b10 [label="True"];
node0x5578e08d8b10 [label="Leaf"];
null180 [shape=point];
node0x5578e08d8b10 -> null180 [label="True"];
null181 [shape=point];
node0x5578e08d8b10 -> null181 [label="False"];
node0x5578e08cc2c0 -> node0x5578e08d8b40 [label="False"];
node0x5578e08d8b40 [label="Leaf"];
null182 [shape=point];
node0x5578e08d8b40 -> null182 [label="True"];
null183 [shape=point];
node0x5578e08d8b40 -> null183 [label="False"];
node0x5578e08cab00 -> node0x5578e08cb670 [label="False"];
node0x5578e08cb670 [label="Leaf"];
null184 [shape=point];
node0x5578e08cb670 -> null184 [label="True"];
null185 [shape=point];
node0x5578e08cb670 -> null185 [label="False"];
node0x5578e08c9fb0 -> node0x5578e08cab30 [label="False"];
node0x5578e08cab30 [label="Leaf"];
null186 [shape=point];
node0x5578e08cab30 -> null186 [label="True"];
null187 [shape=point];
node0x5578e08cab30 -> null187 [label="False"];
node0x5578e08c9410 -> node0x5578e08c9fe0 [label="False"];
node0x5578e08c9fe0 [label="Leaf"];
null188 [shape=point];
node0x5578e08c9fe0 -> null188 [label="True"];
null189 [shape=point];
node0x5578e08c9fe0 -> null189 [label="False"];
node0x5578e08c86e0 -> node0x5578e08c9440 [label="False"];
node0x5578e08c9440 [label="Leaf"];
null190 [shape=point];
node0x5578e08c9440 -> null190 [label="True"];
null191 [shape=point];
node0x5578e08c9440 -> null191 [label="False"];
node0x5578e08c79b0 -> node0x5578e08c8710 [label="False"];
node0x5578e08c8710 [label="Feature 4\nThreshold 1.60\nGini 0.22"];
node0x5578e08c8710 -> node0x5578e08d8eb0 [label="True"];
node0x5578e08d8eb0 [label="Feature 1\nThreshold 6.20\nGini 0.00"];
node0x5578e08d8eb0 -> node0x5578e08d9210 [label="True"];
node0x5578e08d9210 [label="Feature 1\nThreshold 6.05\nGini 0.00"];
node0x5578e08d9210 -> node0x5578e08d9570 [label="True"];
node0x5578e08d9570 [label="Leaf"];
null192 [shape=point];
node0x5578e08d9570 -> null192 [label="True"];
null193 [shape=point];
node0x5578e08d9570 -> null193 [label="False"];
node0x5578e08d9210 -> node0x5578e08d95a0 [label="False"];
node0x5578e08d95a0 [label="Leaf"];
null194 [shape=point];
node0x5578e08d95a0 -> null194 [label="True"];
null195 [shape=point];
node0x5578e08d95a0 -> null195 [label="False"];
node0x5578e08d8eb0 -> node0x5578e08d9240 [label="False"];
node0x5578e08d9240 [label="Leaf"];
null196 [shape=point];
node0x5578e08d9240 -> null196 [label="True"];
null197 [shape=point];
node0x5578e08d9240 -> null197 [label="False"];
node0x5578e08c8710 -> node0x5578e08d8ee0 [label="False"];
node0x5578e08d8ee0 [label="Feature 1\nThreshold 6.95\nGini 0.00"];
node0x5578e08d8ee0 -> node0x5578e08d98d0 [label="True"];
node0x5578e08d98d0 [label="Feature 1\nThreshold 6.35\nGini 0.00"];
node0x5578e08d98d0 -> node0x5578e08d9c30 [label="True"];
node0x5578e08d9c30 [label="Leaf"];
null198 [shape=point];
node0x5578e08d9c30 -> null198 [label="True"];
null199 [shape=point];
node0x5578e08d9c30 -> null199 [label="False"];
node0x5578e08d98d0 -> node0x5578e08d9c60 [label="False"];
node0x5578e08d9c60 [label="Leaf"];
null200 [shape=point];
node0x5578e08d9c60 -> null200 [label="True"];
null201 [shape=point];
node0x5578e08d9c60 -> null201 [label="False"];
node0x5578e08d8ee0 -> node0x5578e08d9900 [label="False"];
node0x5578e08d9900 [label="Leaf"];
null202 [shape=point];
node0x5578e08d9900 -> null202 [label="True"];
null203 [shape=point];
node0x5578e08d9900 -> null203 [label="False"];
node0x5578e08b69d0 -> node0x5578e08c79e0 [label="False"];
node0x5578e08c79e0 [label="Feature 3\nThreshold 4.90\nGini 0.03"];
node0x5578e08c79e0 -> node0x5578e08da5d0 [label="True"];
node0x5578e08da5d0 [label="Feature 1\nThreshold 5.95\nGini 0.00"];
node0x5578e08da5d0 -> node0x5578e08da930 [label="True"];
node0x5578e08da930 [label="Leaf"];
null204 [shape=point];
node0x5578e08da930 -> null204 [label="True"];
null205 [shape=point];
node0x5578e08da930 -> null205 [label="False"];
node0x5578e08da5d0 -> node0x5578e08da960 [label="False"];
node0x5578e08da960 [label="Feature 1\nThreshold 6.10\nGini 0.00"];
node0x5578e08da960 -> node0x5578e08dac90 [label="True"];
node0x5578e08dac90 [label="Leaf"];
null206 [shape=point];
node0x5578e08dac90 -> null206 [label="True"];
null207 [shape=point];
node0x5578e08dac90 -> null207 [label="False"];
node0x5578e08da960 -> node0x5578e08dacc0 [label="False"];
node0x5578e08dacc0 [label="Leaf"];
null208 [shape=point];
node0x5578e08dacc0 -> null208 [label="True"];
null209 [shape=point];
node0x5578e08dacc0 -> null209 [label="False"];
node0x5578e08c79e0 -> node0x5578e08da600 [label="False"];
node0x5578e08da600 [label="Feature 1\nThreshold 7.80\nGini 0.00"];
node0x5578e08da600 -> node0x5578e08db770 [label="True"];
node0x5578e08db770 [label="Feature 1\nThreshold 7.70\nGini 0.00"];
node0x5578e08db770 -> node0x5578e08dc230 [label="True"];
node0x5578e08dc230 [label="Feature 1\nThreshold 7.50\nGini 0.00"];
node0x5578e08dc230 -> node0x5578e08dcbe0 [label="True"];
node0x5578e08dcbe0 [label="Feature 1\nThreshold 7.35\nGini 0.00"];
node0x5578e08dcbe0 -> node0x5578e08dd5a0 [label="True"];
node0x5578e08dd5a0 [label="Feature 1\nThreshold 7.25\nGini 0.00"];
node0x5578e08dd5a0 -> node0x5578e08ddf10 [label="True"];
node0x5578e08ddf10 [label="Feature 1\nThreshold 7.20\nGini 0.00"];
node0x5578e08ddf10 -> node0x5578e08de820 [label="True"];
node0x5578e08de820 [label="Feature 1\nThreshold 7.00\nGini 0.00"];
node0x5578e08de820 -> node0x5578e08df120 [label="True"];
node0x5578e08df120 [label="Feature 1\nThreshold 6.90\nGini 0.00"];
node0x5578e08df120 -> node0x5578e08df980 [label="True"];
node0x5578e08df980 [label="Feature 1\nThreshold 6.80\nGini 0.00"];
node0x5578e08df980 -> node0x5578e08e0170 [label="True"];
node0x5578e08e0170 [label="Feature 1\nThreshold 6.70\nGini 0.00"];
node0x5578e08e0170 -> node0x5578e08e0930 [label="True"];
node0x5578e08e0930 [label="Feature 1\nThreshold 6.50\nGini 0.00"];
node0x5578e08e0930 -> node0x5578e08e1010 [label="True"];
node0x5578e08e1010 [label="Feature 1\nThreshold 6.40\nGini 0.00"];
node0x5578e08e1010 -> node0x5578e08e1650 [label="True"];
node0x5578e08e1650 [label="Feature 1\nThreshold 6.30\nGini 0.00"];
node0x5578e08e1650 -> node0x5578e08e1ae0 [label="True"];
node0x5578e08e1ae0 [label="Feature 1\nThreshold 6.15\nGini 0.00"];
node0x5578e08e1ae0 -> node0x5578e08e1b90 [label="True"];
node0x5578e08e1b90 [label="Feature 1\nThreshold 6.00\nGini 0.00"];
node0x5578e08e1b90 -> node0x5578e08e2350 [label="True"];
node0x5578e08e2350 [label="Feature 1\nThreshold 5.85\nGini 0.00"];
node0x5578e08e2350 -> node0x5578e08e2710 [label="True"];
node0x5578e08e2710 [label="Feature 1\nThreshold 5.80\nGini 0.00"];
node0x5578e08e2710 -> node0x5578e08e2770 [label="True"];
node0x5578e08e2770 [label="Feature 1\nThreshold 5.65\nGini 0.00"];
node0x5578e08e2770 -> node0x5578e08e2dd0 [label="True"];
node0x5578e08e2dd0 [label="Leaf"];
null210 [shape=point];
node0x5578e08e2dd0 -> null210 [label="True"];
null211 [shape=point];
node0x5578e08e2dd0 -> null211 [label="False"];
node0x5578e08e2770 -> node0x5578e08e2e00 [label="False"];
node0x5578e08e2e00 [label="Leaf"];
null212 [shape=point];
node0x5578e08e2e00 -> null212 [label="True"];
null213 [shape=point];
node0x5578e08e2e00 -> null213 [label="False"];
node0x5578e08e2710 -> node0x5578e08e2aa0 [label="False"];
node0x5578e08e2aa0 [label="Feature 2\nThreshold 2.75\nGini 0.00"];
node0x5578e08e2aa0 -> node0x5578e08e3130 [label="True"];
node0x5578e08e3130 [label="Leaf"];
null214 [shape=point];
node0x5578e08e3130 -> null214 [label="True"];
null215 [shape=point];
node0x5578e08e3130 -> null215 [label="False"];
node0x5578e08e2aa0 -> node0x5578e08e3160 [label="False"];
node0x5578e08e3160 [label="Leaf"];
null216 [shape=point];
node0x5578e08e3160 -> null216 [label="True"];
null217 [shape=point];
node0x5578e08e3160 -> null217 [label="False"];
node0x5578e08e2350 -> node0x5578e08e2740 [label="False"];
node0x5578e08e2740 [label="Leaf"];
null218 [shape=point];
node0x5578e08e2740 -> null218 [label="True"];
null219 [shape=point];
node0x5578e08e2740 -> null219 [label="False"];
node0x5578e08e1b90 -> node0x5578e08e2380 [label="False"];
node0x5578e08e2380 [label="Leaf"];
null220 [shape=point];
node0x5578e08e2380 -> null220 [label="True"];
null221 [shape=point];
node0x5578e08e2380 -> null221 [label="False"];
node0x5578e08e1ae0 -> node0x5578e08e1f60 [label="False"];
node0x5578e08e1f60 [label="Leaf"];
null222 [shape=point];
node0x5578e08e1f60 -> null222 [label="True"];
null223 [shape=point];
node0x5578e08e1f60 -> null223 [label="False"];
node0x5578e08e1650 -> node0x5578e08e1b10 [label="False"];
node0x5578e08e1b10 [label="Feature 2\nThreshold 3.35\nGini 0.00"];
node0x5578e08e1b10 -> node0x5578e08e34f0 [label="True"];
node0x5578e08e34f0 [label="Feature 2\nThreshold 3.10\nGini 0.00"];
node0x5578e08e34f0 -> node0x5578e08e3550 [label="True"];
node0x5578e08e3550 [label="Feature 2\nThreshold 2.80\nGini 0.00"];
node0x5578e08e3550 -> node0x5578e08e3bb0 [label="True"];
node0x5578e08e3bb0 [label="Feature 2\nThreshold 2.60\nGini 0.00"];
node0x5578e08e3bb0 -> node0x5578e08e3f10 [label="True"];
node0x5578e08e3f10 [label="Leaf"];
null224 [shape=point];
node0x5578e08e3f10 -> null224 [label="True"];
null225 [shape=point];
node0x5578e08e3f10 -> null225 [label="False"];
node0x5578e08e3bb0 -> node0x5578e08e3f40 [label="False"];
node0x5578e08e3f40 [label="Leaf"];
null226 [shape=point];
node0x5578e08e3f40 -> null226 [label="True"];
null227 [shape=point];
node0x5578e08e3f40 -> null227 [label="False"];
node0x5578e08e3550 -> node0x5578e08e3be0 [label="False"];
node0x5578e08e3be0 [label="Leaf"];
null228 [shape=point];
node0x5578e08e3be0 -> null228 [label="True"];
null229 [shape=point];
node0x5578e08e3be0 -> null229 [label="False"];
node0x5578e08e34f0 -> node0x5578e08e3880 [label="False"];
node0x5578e08e3880 [label="Leaf"];
null230 [shape=point];
node0x5578e08e3880 -> null230 [label="True"];
null231 [shape=point];
node0x5578e08e3880 -> null231 [label="False"];
node0x5578e08e1b10 -> node0x5578e08e3520 [label="False"];
node0x5578e08e3520 [label="Leaf"];
null232 [shape=point];
node0x5578e08e3520 -> null232 [label="True"];
null233 [shape=point];
node0x5578e08e3520 -> null233 [label="False"];
node0x5578e08e1010 -> node0x5578e08e1680 [label="False"];
node0x5578e08e1680 [label="Feature 2\nThreshold 3.15\nGini 0.00"];
node0x5578e08e1680 -> node0x5578e08e42d0 [label="True"];
node0x5578e08e42d0 [label="Feature 2\nThreshold 2.95\nGini 0.00"];
node0x5578e08e42d0 -> node0x5578e08e4330 [label="True"];
node0x5578e08e4330 [label="Feature 2\nThreshold 2.80\nGini 0.00"];
node0x5578e08e4330 -> node0x5578e08e4990 [label="True"];
node0x5578e08e4990 [label="Leaf"];
null234 [shape=point];
node0x5578e08e4990 -> null234 [label="True"];
null235 [shape=point];
node0x5578e08e4990 -> null235 [label="False"];
node0x5578e08e4330 -> node0x5578e08e49c0 [label="False"];
node0x5578e08e49c0 [label="Feature 4\nThreshold 2.15\nGini 0.00"];
node0x5578e08e49c0 -> node0x5578e08e4cf0 [label="True"];
node0x5578e08e4cf0 [label="Leaf"];
null236 [shape=point];
node0x5578e08e4cf0 -> null236 [label="True"];
null237 [shape=point];
node0x5578e08e4cf0 -> null237 [label="False"];
node0x5578e08e49c0 -> node0x5578e08e4d20 [label="False"];
node0x5578e08e4d20 [label="Leaf"];
null238 [shape=point];
node0x5578e08e4d20 -> null238 [label="True"];
null239 [shape=point];
node0x5578e08e4d20 -> null239 [label="False"];
node0x5578e08e42d0 -> node0x5578e08e4660 [label="False"];
node0x5578e08e4660 [label="Leaf"];
null240 [shape=point];
node0x5578e08e4660 -> null240 [label="True"];
null241 [shape=point];
node0x5578e08e4660 -> null241 [label="False"];
node0x5578e08e1680 -> node0x5578e08e4300 [label="False"];
node0x5578e08e4300 [label="Leaf"];
null242 [shape=point];
node0x5578e08e4300 -> null242 [label="True"];
null243 [shape=point];
node0x5578e08e4300 -> null243 [label="False"];
node0x5578e08e0930 -> node0x5578e08e1040 [label="False"];
node0x5578e08e1040 [label="Feature 2\nThreshold 3.10\nGini 0.00"];
node0x5578e08e1040 -> node0x5578e08e4d50 [label="True"];