Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

evalml_debug.log 194 KB

You have to be logged in to leave a comment. Sign In
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
  1. 08/19/2021 10:14:50 AM - INFO - automl_search.py: Generating pipelines to search over...
  2. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  3. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  4. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  5. 08/19/2021 10:14:51 AM - DEBUG - automl_search.py: allowed_estimators set to ['Decision Tree Classifier', 'LightGBM Classifier', 'Extra Trees Classifier', 'Elastic Net Classifier', 'CatBoost Classifier', 'XGBoost Classifier', 'Random Forest Classifier', 'Logistic Regression Classifier']
  6. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  7. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  8. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  9. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  10. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  11. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  12. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  13. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  14. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  15. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  16. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  17. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  18. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  19. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  20. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  21. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  22. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  23. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  24. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  25. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  26. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  27. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  28. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  29. 08/19/2021 10:14:51 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  30. 08/19/2021 10:14:51 AM - INFO - automl_search.py: 8 pipelines ready for search.
  31. 08/19/2021 10:14:51 AM - DEBUG - automl_search.py: allowed_pipelines set to ['Decision Tree Classifier w/ Imputer', 'LightGBM Classifier w/ Imputer', 'Extra Trees Classifier w/ Imputer', 'Elastic Net Classifier w/ Imputer + Standard Scaler', 'CatBoost Classifier w/ Imputer', 'XGBoost Classifier w/ Imputer', 'Random Forest Classifier w/ Imputer', 'Logistic Regression Classifier w/ Imputer + Standard Scaler']
  32. 08/19/2021 10:14:51 AM - DEBUG - automl_search.py: allowed_model_families set to [ModelFamily.DECISION_TREE, ModelFamily.LIGHTGBM, ModelFamily.EXTRA_TREES, ModelFamily.LINEAR_MODEL, ModelFamily.XGBOOST, ModelFamily.RANDOM_FOREST, ModelFamily.CATBOOST]
  33. 08/19/2021 10:14:51 AM - INFO - logger.py:
  34. *****************************
  35. 08/19/2021 10:14:51 AM - INFO - logger.py: * Beginning pipeline search *
  36. 08/19/2021 10:14:51 AM - INFO - logger.py: *****************************
  37. 08/19/2021 10:14:51 AM - INFO - logger.py:
  38. 08/19/2021 10:14:51 AM - INFO - automl_search.py: Optimizing for Log Loss Binary.
  39. 08/19/2021 10:14:51 AM - INFO - automl_search.py: Lower score is better.
  40. 08/19/2021 10:14:51 AM - INFO - automl_search.py: Using SequentialEngine to train and score pipelines.
  41. 08/19/2021 10:14:51 AM - INFO - automl_search.py: Will stop searching for new pipelines after 300 seconds.
  42. 08/19/2021 10:14:51 AM - INFO - automl_search.py: Allowed model families: decision_tree, lightgbm, extra_trees, linear_model, xgboost, random_forest, catboost
  43. 08/19/2021 10:14:52 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  44. 08/19/2021 10:14:52 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  45. 08/19/2021 10:14:52 AM - INFO - automl_search.py: Evaluating Baseline Pipeline: Mode Baseline Binary Classification Pipeline
  46. 08/19/2021 10:14:54 AM - INFO - engine_base.py: Mode Baseline Binary Classification Pipeline:
  47. 08/19/2021 10:14:54 AM - INFO - engine_base.py: Starting cross validation
  48. 08/19/2021 10:14:54 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  49. 08/19/2021 10:14:54 AM - DEBUG - engine_base.py: Fold 0: starting training
  50. 08/19/2021 10:14:54 AM - DEBUG - engine_base.py: Fold 0: finished training
  51. 08/19/2021 10:14:54 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.000)
  52. 08/19/2021 10:14:54 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  53. 08/19/2021 10:14:54 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 9.297
  54. 08/19/2021 10:14:54 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  55. 08/19/2021 10:14:54 AM - DEBUG - engine_base.py: Fold 1: starting training
  56. 08/19/2021 10:14:54 AM - DEBUG - engine_base.py: Fold 1: finished training
  57. 08/19/2021 10:14:54 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.000)
  58. 08/19/2021 10:14:54 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  59. 08/19/2021 10:14:54 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 9.306
  60. 08/19/2021 10:14:54 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  61. 08/19/2021 10:14:54 AM - DEBUG - engine_base.py: Fold 2: starting training
  62. 08/19/2021 10:14:54 AM - DEBUG - engine_base.py: Fold 2: finished training
  63. 08/19/2021 10:14:54 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.000)
  64. 08/19/2021 10:14:54 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  65. 08/19/2021 10:14:54 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 9.306
  66. 08/19/2021 10:14:54 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 9.303
  67. 08/19/2021 10:14:54 AM - INFO - logger.py:
  68. *****************************
  69. 08/19/2021 10:14:54 AM - INFO - logger.py: * Evaluating Batch Number 1 *
  70. 08/19/2021 10:14:54 AM - INFO - logger.py: *****************************
  71. 08/19/2021 10:14:54 AM - INFO - logger.py:
  72. 08/19/2021 10:14:57 AM - INFO - engine_base.py: Elastic Net Classifier w/ Imputer + Standard Scaler:
  73. 08/19/2021 10:14:57 AM - INFO - engine_base.py: Starting cross validation
  74. 08/19/2021 10:14:57 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  75. 08/19/2021 10:14:57 AM - DEBUG - engine_base.py: Fold 0: starting training
  76. 08/19/2021 10:14:57 AM - DEBUG - engine_base.py: Fold 0: finished training
  77. 08/19/2021 10:14:57 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.222)
  78. 08/19/2021 10:14:57 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  79. 08/19/2021 10:14:57 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.553
  80. 08/19/2021 10:14:57 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  81. 08/19/2021 10:14:57 AM - DEBUG - engine_base.py: Fold 1: starting training
  82. 08/19/2021 10:14:57 AM - DEBUG - engine_base.py: Fold 1: finished training
  83. 08/19/2021 10:14:57 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.220)
  84. 08/19/2021 10:14:57 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  85. 08/19/2021 10:14:57 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.555
  86. 08/19/2021 10:14:57 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  87. 08/19/2021 10:14:57 AM - DEBUG - engine_base.py: Fold 2: starting training
  88. 08/19/2021 10:14:57 AM - DEBUG - engine_base.py: Fold 2: finished training
  89. 08/19/2021 10:14:57 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.237)
  90. 08/19/2021 10:14:57 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  91. 08/19/2021 10:14:57 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.560
  92. 08/19/2021 10:14:57 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.556
  93. 08/19/2021 10:14:59 AM - INFO - engine_base.py: Decision Tree Classifier w/ Imputer:
  94. 08/19/2021 10:14:59 AM - INFO - engine_base.py: Starting cross validation
  95. 08/19/2021 10:14:59 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  96. 08/19/2021 10:14:59 AM - DEBUG - engine_base.py: Fold 0: starting training
  97. 08/19/2021 10:14:59 AM - DEBUG - engine_base.py: Fold 0: finished training
  98. 08/19/2021 10:14:59 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.333)
  99. 08/19/2021 10:14:59 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  100. 08/19/2021 10:14:59 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.534
  101. 08/19/2021 10:14:59 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  102. 08/19/2021 10:14:59 AM - DEBUG - engine_base.py: Fold 1: starting training
  103. 08/19/2021 10:14:59 AM - DEBUG - engine_base.py: Fold 1: finished training
  104. 08/19/2021 10:14:59 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.329)
  105. 08/19/2021 10:14:59 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  106. 08/19/2021 10:14:59 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.633
  107. 08/19/2021 10:14:59 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  108. 08/19/2021 10:14:59 AM - DEBUG - engine_base.py: Fold 2: starting training
  109. 08/19/2021 10:14:59 AM - DEBUG - engine_base.py: Fold 2: finished training
  110. 08/19/2021 10:14:59 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.265)
  111. 08/19/2021 10:14:59 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  112. 08/19/2021 10:14:59 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.615
  113. 08/19/2021 10:14:59 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.594
  114. 08/19/2021 10:15:03 AM - INFO - engine_base.py: Random Forest Classifier w/ Imputer:
  115. 08/19/2021 10:15:03 AM - INFO - engine_base.py: Starting cross validation
  116. 08/19/2021 10:15:03 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  117. 08/19/2021 10:15:03 AM - DEBUG - engine_base.py: Fold 0: starting training
  118. 08/19/2021 10:15:03 AM - DEBUG - engine_base.py: Fold 0: finished training
  119. 08/19/2021 10:15:03 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.306)
  120. 08/19/2021 10:15:03 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  121. 08/19/2021 10:15:03 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.459
  122. 08/19/2021 10:15:03 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  123. 08/19/2021 10:15:03 AM - DEBUG - engine_base.py: Fold 1: starting training
  124. 08/19/2021 10:15:03 AM - DEBUG - engine_base.py: Fold 1: finished training
  125. 08/19/2021 10:15:03 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.317)
  126. 08/19/2021 10:15:03 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  127. 08/19/2021 10:15:03 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.462
  128. 08/19/2021 10:15:03 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  129. 08/19/2021 10:15:03 AM - DEBUG - engine_base.py: Fold 2: starting training
  130. 08/19/2021 10:15:03 AM - DEBUG - engine_base.py: Fold 2: finished training
  131. 08/19/2021 10:15:03 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.317)
  132. 08/19/2021 10:15:03 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  133. 08/19/2021 10:15:03 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.465
  134. 08/19/2021 10:15:03 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.462
  135. 08/19/2021 10:15:05 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  136. 08/19/2021 10:15:05 AM - INFO - engine_base.py: Starting cross validation
  137. 08/19/2021 10:15:05 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  138. 08/19/2021 10:15:05 AM - DEBUG - engine_base.py: Fold 0: starting training
  139. 08/19/2021 10:15:05 AM - DEBUG - engine_base.py: Fold 0: finished training
  140. 08/19/2021 10:15:05 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.333)
  141. 08/19/2021 10:15:05 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  142. 08/19/2021 10:15:05 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.377
  143. 08/19/2021 10:15:05 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  144. 08/19/2021 10:15:05 AM - DEBUG - engine_base.py: Fold 1: starting training
  145. 08/19/2021 10:15:05 AM - DEBUG - engine_base.py: Fold 1: finished training
  146. 08/19/2021 10:15:05 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.343)
  147. 08/19/2021 10:15:05 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  148. 08/19/2021 10:15:05 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.379
  149. 08/19/2021 10:15:05 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  150. 08/19/2021 10:15:05 AM - DEBUG - engine_base.py: Fold 2: starting training
  151. 08/19/2021 10:15:05 AM - DEBUG - engine_base.py: Fold 2: finished training
  152. 08/19/2021 10:15:05 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.340)
  153. 08/19/2021 10:15:05 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  154. 08/19/2021 10:15:05 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.402
  155. 08/19/2021 10:15:05 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.386
  156. 08/19/2021 10:15:17 AM - INFO - automl_search.py: Exiting AutoMLSearch.
  157. 08/19/2021 10:15:17 AM - INFO - automl_search.py:
  158. Search finished after 00:24
  159. 08/19/2021 10:15:18 AM - INFO - automl_search.py: Best pipeline: LightGBM Classifier w/ Imputer
  160. 08/19/2021 10:15:18 AM - INFO - automl_search.py: Best pipeline Log Loss Binary: 0.385990
  161. 08/19/2021 10:15:18 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  162. 08/19/2021 10:15:18 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  163. 08/19/2021 10:36:34 AM - INFO - automl_search.py: Generating pipelines to search over...
  164. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  165. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  166. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  167. 08/19/2021 10:36:35 AM - DEBUG - automl_search.py: allowed_estimators set to ['Decision Tree Classifier', 'LightGBM Classifier', 'Extra Trees Classifier', 'Elastic Net Classifier', 'CatBoost Classifier', 'XGBoost Classifier', 'Random Forest Classifier', 'Logistic Regression Classifier']
  168. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  169. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  170. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  171. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  172. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  173. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  174. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  175. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  176. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  177. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  178. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  179. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  180. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  181. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  182. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  183. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  184. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  185. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  186. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  187. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  188. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  189. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  190. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  191. 08/19/2021 10:36:35 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  192. 08/19/2021 10:36:35 AM - INFO - automl_search.py: 8 pipelines ready for search.
  193. 08/19/2021 10:36:35 AM - DEBUG - automl_search.py: allowed_pipelines set to ['Decision Tree Classifier w/ Imputer', 'LightGBM Classifier w/ Imputer', 'Extra Trees Classifier w/ Imputer', 'Elastic Net Classifier w/ Imputer + Standard Scaler', 'CatBoost Classifier w/ Imputer', 'XGBoost Classifier w/ Imputer', 'Random Forest Classifier w/ Imputer', 'Logistic Regression Classifier w/ Imputer + Standard Scaler']
  194. 08/19/2021 10:36:35 AM - DEBUG - automl_search.py: allowed_model_families set to [ModelFamily.XGBOOST, ModelFamily.RANDOM_FOREST, ModelFamily.CATBOOST, ModelFamily.EXTRA_TREES, ModelFamily.LIGHTGBM, ModelFamily.DECISION_TREE, ModelFamily.LINEAR_MODEL]
  195. 08/19/2021 10:36:35 AM - INFO - logger.py:
  196. *****************************
  197. 08/19/2021 10:36:35 AM - INFO - logger.py: * Beginning pipeline search *
  198. 08/19/2021 10:36:35 AM - INFO - logger.py: *****************************
  199. 08/19/2021 10:36:35 AM - INFO - logger.py:
  200. 08/19/2021 10:36:35 AM - INFO - automl_search.py: Optimizing for Log Loss Binary.
  201. 08/19/2021 10:36:35 AM - INFO - automl_search.py: Lower score is better.
  202. 08/19/2021 10:36:35 AM - INFO - automl_search.py: Using SequentialEngine to train and score pipelines.
  203. 08/19/2021 10:36:35 AM - INFO - automl_search.py: Will stop searching for new pipelines after 300 seconds.
  204. 08/19/2021 10:36:35 AM - INFO - automl_search.py: Allowed model families: xgboost, random_forest, catboost, extra_trees, lightgbm, decision_tree, linear_model
  205. 08/19/2021 10:36:36 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  206. 08/19/2021 10:36:36 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  207. 08/19/2021 10:36:36 AM - INFO - automl_search.py: Evaluating Baseline Pipeline: Mode Baseline Binary Classification Pipeline
  208. 08/19/2021 10:36:38 AM - INFO - engine_base.py: Mode Baseline Binary Classification Pipeline:
  209. 08/19/2021 10:36:38 AM - INFO - engine_base.py: Starting cross validation
  210. 08/19/2021 10:36:38 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  211. 08/19/2021 10:36:38 AM - DEBUG - engine_base.py: Fold 0: starting training
  212. 08/19/2021 10:36:38 AM - DEBUG - engine_base.py: Fold 0: finished training
  213. 08/19/2021 10:36:38 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.000)
  214. 08/19/2021 10:36:38 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  215. 08/19/2021 10:36:38 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 9.471
  216. 08/19/2021 10:36:38 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  217. 08/19/2021 10:36:38 AM - DEBUG - engine_base.py: Fold 1: starting training
  218. 08/19/2021 10:36:38 AM - DEBUG - engine_base.py: Fold 1: finished training
  219. 08/19/2021 10:36:38 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.000)
  220. 08/19/2021 10:36:38 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  221. 08/19/2021 10:36:38 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 9.471
  222. 08/19/2021 10:36:38 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  223. 08/19/2021 10:36:38 AM - DEBUG - engine_base.py: Fold 2: starting training
  224. 08/19/2021 10:36:38 AM - DEBUG - engine_base.py: Fold 2: finished training
  225. 08/19/2021 10:36:38 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.000)
  226. 08/19/2021 10:36:38 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  227. 08/19/2021 10:36:38 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 9.471
  228. 08/19/2021 10:36:38 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 9.471
  229. 08/19/2021 10:36:38 AM - INFO - logger.py:
  230. *****************************
  231. 08/19/2021 10:36:38 AM - INFO - logger.py: * Evaluating Batch Number 1 *
  232. 08/19/2021 10:36:38 AM - INFO - logger.py: *****************************
  233. 08/19/2021 10:36:38 AM - INFO - logger.py:
  234. 08/19/2021 10:36:41 AM - INFO - engine_base.py: Elastic Net Classifier w/ Imputer + Standard Scaler:
  235. 08/19/2021 10:36:41 AM - INFO - engine_base.py: Starting cross validation
  236. 08/19/2021 10:36:41 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  237. 08/19/2021 10:36:41 AM - DEBUG - engine_base.py: Fold 0: starting training
  238. 08/19/2021 10:36:41 AM - DEBUG - engine_base.py: Fold 0: finished training
  239. 08/19/2021 10:36:41 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.201)
  240. 08/19/2021 10:36:41 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  241. 08/19/2021 10:36:41 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.557
  242. 08/19/2021 10:36:41 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  243. 08/19/2021 10:36:41 AM - DEBUG - engine_base.py: Fold 1: starting training
  244. 08/19/2021 10:36:41 AM - DEBUG - engine_base.py: Fold 1: finished training
  245. 08/19/2021 10:36:41 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.236)
  246. 08/19/2021 10:36:41 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  247. 08/19/2021 10:36:41 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.558
  248. 08/19/2021 10:36:41 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  249. 08/19/2021 10:36:41 AM - DEBUG - engine_base.py: Fold 2: starting training
  250. 08/19/2021 10:36:41 AM - DEBUG - engine_base.py: Fold 2: finished training
  251. 08/19/2021 10:36:41 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.230)
  252. 08/19/2021 10:36:41 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  253. 08/19/2021 10:36:41 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.565
  254. 08/19/2021 10:36:41 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.560
  255. 08/19/2021 10:36:44 AM - INFO - engine_base.py: Decision Tree Classifier w/ Imputer:
  256. 08/19/2021 10:36:44 AM - INFO - engine_base.py: Starting cross validation
  257. 08/19/2021 10:36:44 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  258. 08/19/2021 10:36:44 AM - DEBUG - engine_base.py: Fold 0: starting training
  259. 08/19/2021 10:36:44 AM - DEBUG - engine_base.py: Fold 0: finished training
  260. 08/19/2021 10:36:44 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (-0.000)
  261. 08/19/2021 10:36:44 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  262. 08/19/2021 10:36:44 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.651
  263. 08/19/2021 10:36:44 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  264. 08/19/2021 10:36:44 AM - DEBUG - engine_base.py: Fold 1: starting training
  265. 08/19/2021 10:36:44 AM - DEBUG - engine_base.py: Fold 1: finished training
  266. 08/19/2021 10:36:44 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (-0.000)
  267. 08/19/2021 10:36:44 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  268. 08/19/2021 10:36:44 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.555
  269. 08/19/2021 10:36:44 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  270. 08/19/2021 10:36:44 AM - DEBUG - engine_base.py: Fold 2: starting training
  271. 08/19/2021 10:36:44 AM - DEBUG - engine_base.py: Fold 2: finished training
  272. 08/19/2021 10:36:44 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (-0.000)
  273. 08/19/2021 10:36:44 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  274. 08/19/2021 10:36:44 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.585
  275. 08/19/2021 10:36:44 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.597
  276. 08/19/2021 10:36:48 AM - INFO - engine_base.py: Random Forest Classifier w/ Imputer:
  277. 08/19/2021 10:36:48 AM - INFO - engine_base.py: Starting cross validation
  278. 08/19/2021 10:36:48 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  279. 08/19/2021 10:36:48 AM - DEBUG - engine_base.py: Fold 0: starting training
  280. 08/19/2021 10:36:48 AM - DEBUG - engine_base.py: Fold 0: finished training
  281. 08/19/2021 10:36:48 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.297)
  282. 08/19/2021 10:36:48 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  283. 08/19/2021 10:36:48 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.454
  284. 08/19/2021 10:36:48 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  285. 08/19/2021 10:36:48 AM - DEBUG - engine_base.py: Fold 1: starting training
  286. 08/19/2021 10:36:48 AM - DEBUG - engine_base.py: Fold 1: finished training
  287. 08/19/2021 10:36:48 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.291)
  288. 08/19/2021 10:36:48 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  289. 08/19/2021 10:36:48 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.456
  290. 08/19/2021 10:36:48 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  291. 08/19/2021 10:36:48 AM - DEBUG - engine_base.py: Fold 2: starting training
  292. 08/19/2021 10:36:48 AM - DEBUG - engine_base.py: Fold 2: finished training
  293. 08/19/2021 10:36:48 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.314)
  294. 08/19/2021 10:36:48 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  295. 08/19/2021 10:36:48 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.470
  296. 08/19/2021 10:36:48 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.460
  297. 08/19/2021 10:36:50 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  298. 08/19/2021 10:36:50 AM - INFO - engine_base.py: Starting cross validation
  299. 08/19/2021 10:36:50 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  300. 08/19/2021 10:36:50 AM - DEBUG - engine_base.py: Fold 0: starting training
  301. 08/19/2021 10:36:50 AM - DEBUG - engine_base.py: Fold 0: finished training
  302. 08/19/2021 10:36:50 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.322)
  303. 08/19/2021 10:36:50 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  304. 08/19/2021 10:36:50 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.382
  305. 08/19/2021 10:36:50 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  306. 08/19/2021 10:36:50 AM - DEBUG - engine_base.py: Fold 1: starting training
  307. 08/19/2021 10:36:50 AM - DEBUG - engine_base.py: Fold 1: finished training
  308. 08/19/2021 10:36:50 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.365)
  309. 08/19/2021 10:36:50 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  310. 08/19/2021 10:36:50 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.385
  311. 08/19/2021 10:36:50 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  312. 08/19/2021 10:36:50 AM - DEBUG - engine_base.py: Fold 2: starting training
  313. 08/19/2021 10:36:50 AM - DEBUG - engine_base.py: Fold 2: finished training
  314. 08/19/2021 10:36:50 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.377)
  315. 08/19/2021 10:36:50 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  316. 08/19/2021 10:36:50 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.401
  317. 08/19/2021 10:36:50 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.389
  318. 08/19/2021 10:36:54 AM - INFO - engine_base.py: Logistic Regression Classifier w/ Imputer + Standard Scaler:
  319. 08/19/2021 10:36:54 AM - INFO - engine_base.py: Starting cross validation
  320. 08/19/2021 10:36:54 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  321. 08/19/2021 10:36:54 AM - DEBUG - engine_base.py: Fold 0: starting training
  322. 08/19/2021 10:36:54 AM - DEBUG - engine_base.py: Fold 0: finished training
  323. 08/19/2021 10:36:54 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.200)
  324. 08/19/2021 10:36:54 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  325. 08/19/2021 10:36:54 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.557
  326. 08/19/2021 10:36:54 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  327. 08/19/2021 10:36:54 AM - DEBUG - engine_base.py: Fold 1: starting training
  328. 08/19/2021 10:36:54 AM - DEBUG - engine_base.py: Fold 1: finished training
  329. 08/19/2021 10:36:54 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.236)
  330. 08/19/2021 10:36:54 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  331. 08/19/2021 10:36:54 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.558
  332. 08/19/2021 10:36:54 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  333. 08/19/2021 10:36:54 AM - DEBUG - engine_base.py: Fold 2: starting training
  334. 08/19/2021 10:36:54 AM - DEBUG - engine_base.py: Fold 2: finished training
  335. 08/19/2021 10:36:54 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.225)
  336. 08/19/2021 10:36:54 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  337. 08/19/2021 10:36:54 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.565
  338. 08/19/2021 10:36:54 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.560
  339. 08/19/2021 10:36:58 AM - INFO - engine_base.py: XGBoost Classifier w/ Imputer:
  340. 08/19/2021 10:36:58 AM - INFO - engine_base.py: Starting cross validation
  341. 08/19/2021 10:36:58 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  342. 08/19/2021 10:36:58 AM - DEBUG - engine_base.py: Fold 0: starting training
  343. 08/19/2021 10:36:58 AM - DEBUG - engine_base.py: Fold 0: finished training
  344. 08/19/2021 10:36:58 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.326)
  345. 08/19/2021 10:36:58 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  346. 08/19/2021 10:36:58 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.387
  347. 08/19/2021 10:36:58 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  348. 08/19/2021 10:36:58 AM - DEBUG - engine_base.py: Fold 1: starting training
  349. 08/19/2021 10:36:58 AM - DEBUG - engine_base.py: Fold 1: finished training
  350. 08/19/2021 10:36:58 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.321)
  351. 08/19/2021 10:36:58 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  352. 08/19/2021 10:36:58 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.390
  353. 08/19/2021 10:36:58 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  354. 08/19/2021 10:36:58 AM - DEBUG - engine_base.py: Fold 2: starting training
  355. 08/19/2021 10:36:58 AM - DEBUG - engine_base.py: Fold 2: finished training
  356. 08/19/2021 10:36:58 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.295)
  357. 08/19/2021 10:36:58 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  358. 08/19/2021 10:36:58 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.409
  359. 08/19/2021 10:36:58 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.395
  360. 08/19/2021 10:37:01 AM - INFO - engine_base.py: Extra Trees Classifier w/ Imputer:
  361. 08/19/2021 10:37:01 AM - INFO - engine_base.py: Starting cross validation
  362. 08/19/2021 10:37:01 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  363. 08/19/2021 10:37:01 AM - DEBUG - engine_base.py: Fold 0: starting training
  364. 08/19/2021 10:37:01 AM - DEBUG - engine_base.py: Fold 0: finished training
  365. 08/19/2021 10:37:01 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.297)
  366. 08/19/2021 10:37:01 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  367. 08/19/2021 10:37:01 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.543
  368. 08/19/2021 10:37:01 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  369. 08/19/2021 10:37:01 AM - DEBUG - engine_base.py: Fold 1: starting training
  370. 08/19/2021 10:37:01 AM - DEBUG - engine_base.py: Fold 1: finished training
  371. 08/19/2021 10:37:01 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.287)
  372. 08/19/2021 10:37:01 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  373. 08/19/2021 10:37:01 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.544
  374. 08/19/2021 10:37:01 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  375. 08/19/2021 10:37:01 AM - DEBUG - engine_base.py: Fold 2: starting training
  376. 08/19/2021 10:37:01 AM - DEBUG - engine_base.py: Fold 2: finished training
  377. 08/19/2021 10:37:01 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.298)
  378. 08/19/2021 10:37:01 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  379. 08/19/2021 10:37:01 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.549
  380. 08/19/2021 10:37:01 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.545
  381. 08/19/2021 10:37:02 AM - INFO - engine_base.py: CatBoost Classifier w/ Imputer:
  382. 08/19/2021 10:37:02 AM - INFO - engine_base.py: Starting cross validation
  383. 08/19/2021 10:37:02 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  384. 08/19/2021 10:37:02 AM - DEBUG - engine_base.py: Fold 0: starting training
  385. 08/19/2021 10:37:02 AM - DEBUG - engine_base.py: Fold 0: finished training
  386. 08/19/2021 10:37:02 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.442)
  387. 08/19/2021 10:37:02 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  388. 08/19/2021 10:37:02 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.627
  389. 08/19/2021 10:37:02 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  390. 08/19/2021 10:37:02 AM - DEBUG - engine_base.py: Fold 1: starting training
  391. 08/19/2021 10:37:02 AM - DEBUG - engine_base.py: Fold 1: finished training
  392. 08/19/2021 10:37:02 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.436)
  393. 08/19/2021 10:37:02 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  394. 08/19/2021 10:37:02 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.629
  395. 08/19/2021 10:37:02 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  396. 08/19/2021 10:37:02 AM - DEBUG - engine_base.py: Fold 2: starting training
  397. 08/19/2021 10:37:02 AM - DEBUG - engine_base.py: Fold 2: finished training
  398. 08/19/2021 10:37:02 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.435)
  399. 08/19/2021 10:37:02 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  400. 08/19/2021 10:37:02 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.629
  401. 08/19/2021 10:37:02 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.628
  402. 08/19/2021 10:37:03 AM - INFO - logger.py:
  403. *****************************
  404. 08/19/2021 10:37:03 AM - INFO - logger.py: * Evaluating Batch Number 2 *
  405. 08/19/2021 10:37:03 AM - INFO - logger.py: *****************************
  406. 08/19/2021 10:37:03 AM - INFO - logger.py:
  407. 08/19/2021 10:37:05 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  408. 08/19/2021 10:37:05 AM - INFO - engine_base.py: Starting cross validation
  409. 08/19/2021 10:37:05 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  410. 08/19/2021 10:37:05 AM - DEBUG - engine_base.py: Fold 0: starting training
  411. 08/19/2021 10:37:05 AM - DEBUG - engine_base.py: Fold 0: finished training
  412. 08/19/2021 10:37:05 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.227)
  413. 08/19/2021 10:37:05 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  414. 08/19/2021 10:37:05 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.476
  415. 08/19/2021 10:37:05 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  416. 08/19/2021 10:37:05 AM - DEBUG - engine_base.py: Fold 1: starting training
  417. 08/19/2021 10:37:05 AM - DEBUG - engine_base.py: Fold 1: finished training
  418. 08/19/2021 10:37:05 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.246)
  419. 08/19/2021 10:37:05 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  420. 08/19/2021 10:37:05 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.482
  421. 08/19/2021 10:37:05 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  422. 08/19/2021 10:37:05 AM - DEBUG - engine_base.py: Fold 2: starting training
  423. 08/19/2021 10:37:05 AM - DEBUG - engine_base.py: Fold 2: finished training
  424. 08/19/2021 10:37:05 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.349)
  425. 08/19/2021 10:37:05 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  426. 08/19/2021 10:37:05 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.493
  427. 08/19/2021 10:37:05 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.484
  428. 08/19/2021 10:37:07 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  429. 08/19/2021 10:37:07 AM - INFO - engine_base.py: Starting cross validation
  430. 08/19/2021 10:37:07 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  431. 08/19/2021 10:37:07 AM - DEBUG - engine_base.py: Fold 0: starting training
  432. 08/19/2021 10:37:07 AM - DEBUG - engine_base.py: Fold 0: finished training
  433. 08/19/2021 10:37:07 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.264)
  434. 08/19/2021 10:37:07 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  435. 08/19/2021 10:37:07 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.515
  436. 08/19/2021 10:37:07 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  437. 08/19/2021 10:37:07 AM - DEBUG - engine_base.py: Fold 1: starting training
  438. 08/19/2021 10:37:07 AM - DEBUG - engine_base.py: Fold 1: finished training
  439. 08/19/2021 10:37:07 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.200)
  440. 08/19/2021 10:37:07 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  441. 08/19/2021 10:37:07 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.517
  442. 08/19/2021 10:37:07 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  443. 08/19/2021 10:37:07 AM - DEBUG - engine_base.py: Fold 2: starting training
  444. 08/19/2021 10:37:07 AM - DEBUG - engine_base.py: Fold 2: finished training
  445. 08/19/2021 10:37:07 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.242)
  446. 08/19/2021 10:37:07 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  447. 08/19/2021 10:37:07 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.526
  448. 08/19/2021 10:37:07 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.519
  449. 08/19/2021 10:37:09 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  450. 08/19/2021 10:37:09 AM - INFO - engine_base.py: Starting cross validation
  451. 08/19/2021 10:37:09 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  452. 08/19/2021 10:37:09 AM - DEBUG - engine_base.py: Fold 0: starting training
  453. 08/19/2021 10:37:09 AM - DEBUG - engine_base.py: Fold 0: finished training
  454. 08/19/2021 10:37:09 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.259)
  455. 08/19/2021 10:37:09 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  456. 08/19/2021 10:37:09 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.489
  457. 08/19/2021 10:37:09 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  458. 08/19/2021 10:37:09 AM - DEBUG - engine_base.py: Fold 1: starting training
  459. 08/19/2021 10:37:09 AM - DEBUG - engine_base.py: Fold 1: finished training
  460. 08/19/2021 10:37:09 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.277)
  461. 08/19/2021 10:37:09 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  462. 08/19/2021 10:37:09 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.487
  463. 08/19/2021 10:37:09 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  464. 08/19/2021 10:37:09 AM - DEBUG - engine_base.py: Fold 2: starting training
  465. 08/19/2021 10:37:09 AM - DEBUG - engine_base.py: Fold 2: finished training
  466. 08/19/2021 10:37:09 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.253)
  467. 08/19/2021 10:37:09 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  468. 08/19/2021 10:37:09 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.497
  469. 08/19/2021 10:37:09 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.491
  470. 08/19/2021 10:37:10 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  471. 08/19/2021 10:37:10 AM - INFO - engine_base.py: Starting cross validation
  472. 08/19/2021 10:37:11 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  473. 08/19/2021 10:37:11 AM - DEBUG - engine_base.py: Fold 0: starting training
  474. 08/19/2021 10:37:11 AM - DEBUG - engine_base.py: Fold 0: finished training
  475. 08/19/2021 10:37:11 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.434)
  476. 08/19/2021 10:37:11 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  477. 08/19/2021 10:37:11 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.593
  478. 08/19/2021 10:37:11 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  479. 08/19/2021 10:37:11 AM - DEBUG - engine_base.py: Fold 1: starting training
  480. 08/19/2021 10:37:11 AM - DEBUG - engine_base.py: Fold 1: finished training
  481. 08/19/2021 10:37:11 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.261)
  482. 08/19/2021 10:37:11 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  483. 08/19/2021 10:37:11 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.620
  484. 08/19/2021 10:37:11 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  485. 08/19/2021 10:37:11 AM - DEBUG - engine_base.py: Fold 2: starting training
  486. 08/19/2021 10:37:11 AM - DEBUG - engine_base.py: Fold 2: finished training
  487. 08/19/2021 10:37:11 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.213)
  488. 08/19/2021 10:37:11 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  489. 08/19/2021 10:37:11 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.613
  490. 08/19/2021 10:37:11 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.609
  491. 08/19/2021 10:37:13 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  492. 08/19/2021 10:37:13 AM - INFO - engine_base.py: Starting cross validation
  493. 08/19/2021 10:37:13 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  494. 08/19/2021 10:37:13 AM - DEBUG - engine_base.py: Fold 0: starting training
  495. 08/19/2021 10:37:13 AM - DEBUG - engine_base.py: Fold 0: finished training
  496. 08/19/2021 10:37:13 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.367)
  497. 08/19/2021 10:37:13 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  498. 08/19/2021 10:37:13 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.401
  499. 08/19/2021 10:37:13 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  500. 08/19/2021 10:37:13 AM - DEBUG - engine_base.py: Fold 1: starting training
  501. 08/19/2021 10:37:13 AM - DEBUG - engine_base.py: Fold 1: finished training
  502. 08/19/2021 10:37:13 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.367)
  503. 08/19/2021 10:37:13 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  504. 08/19/2021 10:37:13 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.407
  505. 08/19/2021 10:37:13 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  506. 08/19/2021 10:37:13 AM - DEBUG - engine_base.py: Fold 2: starting training
  507. 08/19/2021 10:37:13 AM - DEBUG - engine_base.py: Fold 2: finished training
  508. 08/19/2021 10:37:13 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.383)
  509. 08/19/2021 10:37:13 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  510. 08/19/2021 10:37:13 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.424
  511. 08/19/2021 10:37:13 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.411
  512. 08/19/2021 10:37:13 AM - INFO - logger.py:
  513. *****************************
  514. 08/19/2021 10:37:13 AM - INFO - logger.py: * Evaluating Batch Number 3 *
  515. 08/19/2021 10:37:13 AM - INFO - logger.py: *****************************
  516. 08/19/2021 10:37:13 AM - INFO - logger.py:
  517. 08/19/2021 10:37:21 AM - INFO - engine_base.py: XGBoost Classifier w/ Imputer:
  518. 08/19/2021 10:37:21 AM - INFO - engine_base.py: Starting cross validation
  519. 08/19/2021 10:37:21 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  520. 08/19/2021 10:37:21 AM - DEBUG - engine_base.py: Fold 0: starting training
  521. 08/19/2021 10:37:21 AM - DEBUG - engine_base.py: Fold 0: finished training
  522. 08/19/2021 10:37:21 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.149)
  523. 08/19/2021 10:37:21 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  524. 08/19/2021 10:37:21 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.634
  525. 08/19/2021 10:37:21 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  526. 08/19/2021 10:37:21 AM - DEBUG - engine_base.py: Fold 1: starting training
  527. 08/19/2021 10:37:21 AM - DEBUG - engine_base.py: Fold 1: finished training
  528. 08/19/2021 10:37:21 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.349)
  529. 08/19/2021 10:37:21 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  530. 08/19/2021 10:37:21 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.652
  531. 08/19/2021 10:37:21 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  532. 08/19/2021 10:37:21 AM - DEBUG - engine_base.py: Fold 2: starting training
  533. 08/19/2021 10:37:21 AM - DEBUG - engine_base.py: Fold 2: finished training
  534. 08/19/2021 10:37:21 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.220)
  535. 08/19/2021 10:37:21 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  536. 08/19/2021 10:37:21 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.652
  537. 08/19/2021 10:37:21 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.646
  538. 08/19/2021 10:37:32 AM - INFO - engine_base.py: XGBoost Classifier w/ Imputer:
  539. 08/19/2021 10:37:32 AM - INFO - engine_base.py: Starting cross validation
  540. 08/19/2021 10:37:32 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  541. 08/19/2021 10:37:32 AM - DEBUG - engine_base.py: Fold 0: starting training
  542. 08/19/2021 10:37:32 AM - DEBUG - engine_base.py: Fold 0: finished training
  543. 08/19/2021 10:37:32 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.100)
  544. 08/19/2021 10:37:32 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  545. 08/19/2021 10:37:32 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.593
  546. 08/19/2021 10:37:32 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  547. 08/19/2021 10:37:32 AM - DEBUG - engine_base.py: Fold 1: starting training
  548. 08/19/2021 10:37:32 AM - DEBUG - engine_base.py: Fold 1: finished training
  549. 08/19/2021 10:37:32 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.373)
  550. 08/19/2021 10:37:32 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  551. 08/19/2021 10:37:32 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.601
  552. 08/19/2021 10:37:32 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  553. 08/19/2021 10:37:32 AM - DEBUG - engine_base.py: Fold 2: starting training
  554. 08/19/2021 10:37:32 AM - DEBUG - engine_base.py: Fold 2: finished training
  555. 08/19/2021 10:37:32 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.267)
  556. 08/19/2021 10:37:32 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  557. 08/19/2021 10:37:32 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.623
  558. 08/19/2021 10:37:32 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.606
  559. 08/19/2021 10:37:55 AM - INFO - engine_base.py: XGBoost Classifier w/ Imputer:
  560. 08/19/2021 10:37:55 AM - INFO - engine_base.py: Starting cross validation
  561. 08/19/2021 10:37:55 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  562. 08/19/2021 10:37:55 AM - DEBUG - engine_base.py: Fold 0: starting training
  563. 08/19/2021 10:37:55 AM - DEBUG - engine_base.py: Fold 0: finished training
  564. 08/19/2021 10:37:55 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.326)
  565. 08/19/2021 10:37:55 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  566. 08/19/2021 10:37:55 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.558
  567. 08/19/2021 10:37:55 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  568. 08/19/2021 10:37:55 AM - DEBUG - engine_base.py: Fold 1: starting training
  569. 08/19/2021 10:37:55 AM - DEBUG - engine_base.py: Fold 1: finished training
  570. 08/19/2021 10:37:55 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.147)
  571. 08/19/2021 10:37:55 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  572. 08/19/2021 10:37:55 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.556
  573. 08/19/2021 10:37:55 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  574. 08/19/2021 10:37:55 AM - DEBUG - engine_base.py: Fold 2: starting training
  575. 08/19/2021 10:37:55 AM - DEBUG - engine_base.py: Fold 2: finished training
  576. 08/19/2021 10:37:55 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.156)
  577. 08/19/2021 10:37:55 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  578. 08/19/2021 10:37:55 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.585
  579. 08/19/2021 10:37:55 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.567
  580. 08/19/2021 10:38:08 AM - INFO - engine_base.py: XGBoost Classifier w/ Imputer:
  581. 08/19/2021 10:38:08 AM - INFO - engine_base.py: Starting cross validation
  582. 08/19/2021 10:38:08 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  583. 08/19/2021 10:38:08 AM - DEBUG - engine_base.py: Fold 0: starting training
  584. 08/19/2021 10:38:08 AM - DEBUG - engine_base.py: Fold 0: finished training
  585. 08/19/2021 10:38:08 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.322)
  586. 08/19/2021 10:38:08 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  587. 08/19/2021 10:38:08 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.450
  588. 08/19/2021 10:38:08 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  589. 08/19/2021 10:38:08 AM - DEBUG - engine_base.py: Fold 1: starting training
  590. 08/19/2021 10:38:08 AM - DEBUG - engine_base.py: Fold 1: finished training
  591. 08/19/2021 10:38:08 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.266)
  592. 08/19/2021 10:38:08 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  593. 08/19/2021 10:38:08 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.457
  594. 08/19/2021 10:38:08 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  595. 08/19/2021 10:38:08 AM - DEBUG - engine_base.py: Fold 2: starting training
  596. 08/19/2021 10:38:08 AM - DEBUG - engine_base.py: Fold 2: finished training
  597. 08/19/2021 10:38:08 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.270)
  598. 08/19/2021 10:38:08 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  599. 08/19/2021 10:38:08 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.471
  600. 08/19/2021 10:38:08 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.459
  601. 08/19/2021 10:38:12 AM - INFO - engine_base.py: XGBoost Classifier w/ Imputer:
  602. 08/19/2021 10:38:12 AM - INFO - engine_base.py: Starting cross validation
  603. 08/19/2021 10:38:12 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  604. 08/19/2021 10:38:12 AM - DEBUG - engine_base.py: Fold 0: starting training
  605. 08/19/2021 10:38:12 AM - DEBUG - engine_base.py: Fold 0: finished training
  606. 08/19/2021 10:38:12 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.257)
  607. 08/19/2021 10:38:12 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  608. 08/19/2021 10:38:12 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.502
  609. 08/19/2021 10:38:12 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  610. 08/19/2021 10:38:12 AM - DEBUG - engine_base.py: Fold 1: starting training
  611. 08/19/2021 10:38:12 AM - DEBUG - engine_base.py: Fold 1: finished training
  612. 08/19/2021 10:38:12 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.279)
  613. 08/19/2021 10:38:12 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  614. 08/19/2021 10:38:12 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.501
  615. 08/19/2021 10:38:12 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  616. 08/19/2021 10:38:12 AM - DEBUG - engine_base.py: Fold 2: starting training
  617. 08/19/2021 10:38:12 AM - DEBUG - engine_base.py: Fold 2: finished training
  618. 08/19/2021 10:38:12 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.276)
  619. 08/19/2021 10:38:12 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  620. 08/19/2021 10:38:12 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.513
  621. 08/19/2021 10:38:12 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.506
  622. 08/19/2021 10:38:12 AM - INFO - logger.py:
  623. *****************************
  624. 08/19/2021 10:38:12 AM - INFO - logger.py: * Evaluating Batch Number 4 *
  625. 08/19/2021 10:38:12 AM - INFO - logger.py: *****************************
  626. 08/19/2021 10:38:12 AM - INFO - logger.py:
  627. 08/19/2021 10:38:41 AM - INFO - engine_base.py: Random Forest Classifier w/ Imputer:
  628. 08/19/2021 10:38:41 AM - INFO - engine_base.py: Starting cross validation
  629. 08/19/2021 10:38:41 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  630. 08/19/2021 10:38:41 AM - DEBUG - engine_base.py: Fold 0: starting training
  631. 08/19/2021 10:38:41 AM - DEBUG - engine_base.py: Fold 0: finished training
  632. 08/19/2021 10:38:41 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.266)
  633. 08/19/2021 10:38:41 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  634. 08/19/2021 10:38:41 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.500
  635. 08/19/2021 10:38:41 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  636. 08/19/2021 10:38:41 AM - DEBUG - engine_base.py: Fold 1: starting training
  637. 08/19/2021 10:38:41 AM - DEBUG - engine_base.py: Fold 1: finished training
  638. 08/19/2021 10:38:41 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.267)
  639. 08/19/2021 10:38:41 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  640. 08/19/2021 10:38:41 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.502
  641. 08/19/2021 10:38:41 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  642. 08/19/2021 10:38:41 AM - DEBUG - engine_base.py: Fold 2: starting training
  643. 08/19/2021 10:38:41 AM - DEBUG - engine_base.py: Fold 2: finished training
  644. 08/19/2021 10:38:41 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.309)
  645. 08/19/2021 10:38:41 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  646. 08/19/2021 10:38:41 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.511
  647. 08/19/2021 10:38:41 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.504
  648. 08/19/2021 10:39:00 AM - INFO - engine_base.py: Random Forest Classifier w/ Imputer:
  649. 08/19/2021 10:39:00 AM - INFO - engine_base.py: Starting cross validation
  650. 08/19/2021 10:39:00 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  651. 08/19/2021 10:39:00 AM - DEBUG - engine_base.py: Fold 0: starting training
  652. 08/19/2021 10:39:00 AM - DEBUG - engine_base.py: Fold 0: finished training
  653. 08/19/2021 10:39:00 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.277)
  654. 08/19/2021 10:39:00 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  655. 08/19/2021 10:39:00 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.549
  656. 08/19/2021 10:39:00 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  657. 08/19/2021 10:39:00 AM - DEBUG - engine_base.py: Fold 1: starting training
  658. 08/19/2021 10:39:00 AM - DEBUG - engine_base.py: Fold 1: finished training
  659. 08/19/2021 10:39:00 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.269)
  660. 08/19/2021 10:39:00 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  661. 08/19/2021 10:39:00 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.549
  662. 08/19/2021 10:39:00 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  663. 08/19/2021 10:39:00 AM - DEBUG - engine_base.py: Fold 2: starting training
  664. 08/19/2021 10:39:00 AM - DEBUG - engine_base.py: Fold 2: finished training
  665. 08/19/2021 10:39:00 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.264)
  666. 08/19/2021 10:39:00 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  667. 08/19/2021 10:39:00 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.553
  668. 08/19/2021 10:39:00 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.550
  669. 08/19/2021 10:39:41 AM - INFO - engine_base.py: Random Forest Classifier w/ Imputer:
  670. 08/19/2021 10:39:41 AM - INFO - engine_base.py: Starting cross validation
  671. 08/19/2021 10:39:41 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  672. 08/19/2021 10:39:41 AM - DEBUG - engine_base.py: Fold 0: starting training
  673. 08/19/2021 10:39:41 AM - DEBUG - engine_base.py: Fold 0: finished training
  674. 08/19/2021 10:39:41 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.293)
  675. 08/19/2021 10:39:41 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  676. 08/19/2021 10:39:41 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.475
  677. 08/19/2021 10:39:41 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  678. 08/19/2021 10:39:41 AM - DEBUG - engine_base.py: Fold 1: starting training
  679. 08/19/2021 10:39:41 AM - DEBUG - engine_base.py: Fold 1: finished training
  680. 08/19/2021 10:39:41 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.274)
  681. 08/19/2021 10:39:41 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  682. 08/19/2021 10:39:41 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.478
  683. 08/19/2021 10:39:41 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  684. 08/19/2021 10:39:41 AM - DEBUG - engine_base.py: Fold 2: starting training
  685. 08/19/2021 10:39:41 AM - DEBUG - engine_base.py: Fold 2: finished training
  686. 08/19/2021 10:39:41 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.317)
  687. 08/19/2021 10:39:41 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  688. 08/19/2021 10:39:41 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.490
  689. 08/19/2021 10:39:41 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.481
  690. 08/19/2021 10:40:10 AM - INFO - engine_base.py: Random Forest Classifier w/ Imputer:
  691. 08/19/2021 10:40:10 AM - INFO - engine_base.py: Starting cross validation
  692. 08/19/2021 10:40:10 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  693. 08/19/2021 10:40:10 AM - DEBUG - engine_base.py: Fold 0: starting training
  694. 08/19/2021 10:40:10 AM - DEBUG - engine_base.py: Fold 0: finished training
  695. 08/19/2021 10:40:10 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.280)
  696. 08/19/2021 10:40:10 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  697. 08/19/2021 10:40:10 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.549
  698. 08/19/2021 10:40:10 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  699. 08/19/2021 10:40:10 AM - DEBUG - engine_base.py: Fold 1: starting training
  700. 08/19/2021 10:40:10 AM - DEBUG - engine_base.py: Fold 1: finished training
  701. 08/19/2021 10:40:10 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.263)
  702. 08/19/2021 10:40:10 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  703. 08/19/2021 10:40:10 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.549
  704. 08/19/2021 10:40:10 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  705. 08/19/2021 10:40:10 AM - DEBUG - engine_base.py: Fold 2: starting training
  706. 08/19/2021 10:40:10 AM - DEBUG - engine_base.py: Fold 2: finished training
  707. 08/19/2021 10:40:10 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.268)
  708. 08/19/2021 10:40:10 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  709. 08/19/2021 10:40:10 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.554
  710. 08/19/2021 10:40:10 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.551
  711. 08/19/2021 10:40:51 AM - INFO - engine_base.py: Random Forest Classifier w/ Imputer:
  712. 08/19/2021 10:40:51 AM - INFO - engine_base.py: Starting cross validation
  713. 08/19/2021 10:40:51 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  714. 08/19/2021 10:40:51 AM - DEBUG - engine_base.py: Fold 0: starting training
  715. 08/19/2021 10:40:51 AM - DEBUG - engine_base.py: Fold 0: finished training
  716. 08/19/2021 10:40:51 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.297)
  717. 08/19/2021 10:40:51 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  718. 08/19/2021 10:40:51 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.475
  719. 08/19/2021 10:40:51 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  720. 08/19/2021 10:40:51 AM - DEBUG - engine_base.py: Fold 1: starting training
  721. 08/19/2021 10:40:51 AM - DEBUG - engine_base.py: Fold 1: finished training
  722. 08/19/2021 10:40:51 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.271)
  723. 08/19/2021 10:40:51 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  724. 08/19/2021 10:40:51 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.478
  725. 08/19/2021 10:40:51 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  726. 08/19/2021 10:40:51 AM - DEBUG - engine_base.py: Fold 2: starting training
  727. 08/19/2021 10:40:51 AM - DEBUG - engine_base.py: Fold 2: finished training
  728. 08/19/2021 10:40:51 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.313)
  729. 08/19/2021 10:40:51 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  730. 08/19/2021 10:40:51 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.489
  731. 08/19/2021 10:40:51 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.481
  732. 08/19/2021 10:40:51 AM - INFO - logger.py:
  733. *****************************
  734. 08/19/2021 10:40:51 AM - INFO - logger.py: * Evaluating Batch Number 5 *
  735. 08/19/2021 10:40:51 AM - INFO - logger.py: *****************************
  736. 08/19/2021 10:40:51 AM - INFO - logger.py:
  737. 08/19/2021 10:41:18 AM - INFO - engine_base.py: Extra Trees Classifier w/ Imputer:
  738. 08/19/2021 10:41:18 AM - INFO - engine_base.py: Starting cross validation
  739. 08/19/2021 10:41:19 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  740. 08/19/2021 10:41:19 AM - DEBUG - engine_base.py: Fold 0: starting training
  741. 08/19/2021 10:41:19 AM - DEBUG - engine_base.py: Fold 0: finished training
  742. 08/19/2021 10:41:19 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.293)
  743. 08/19/2021 10:41:19 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  744. 08/19/2021 10:41:19 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.553
  745. 08/19/2021 10:41:19 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  746. 08/19/2021 10:41:19 AM - DEBUG - engine_base.py: Fold 1: starting training
  747. 08/19/2021 10:41:19 AM - DEBUG - engine_base.py: Fold 1: finished training
  748. 08/19/2021 10:41:19 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.288)
  749. 08/19/2021 10:41:19 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  750. 08/19/2021 10:41:19 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.553
  751. 08/19/2021 10:41:19 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  752. 08/19/2021 10:41:19 AM - DEBUG - engine_base.py: Fold 2: starting training
  753. 08/19/2021 10:41:19 AM - DEBUG - engine_base.py: Fold 2: finished training
  754. 08/19/2021 10:41:19 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.299)
  755. 08/19/2021 10:41:19 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  756. 08/19/2021 10:41:19 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.558
  757. 08/19/2021 10:41:19 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.555
  758. 08/19/2021 10:41:38 AM - INFO - engine_base.py: Extra Trees Classifier w/ Imputer:
  759. 08/19/2021 10:41:38 AM - INFO - engine_base.py: Starting cross validation
  760. 08/19/2021 10:41:38 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  761. 08/19/2021 10:41:38 AM - DEBUG - engine_base.py: Fold 0: starting training
  762. 08/19/2021 10:41:38 AM - DEBUG - engine_base.py: Fold 0: finished training
  763. 08/19/2021 10:41:38 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.291)
  764. 08/19/2021 10:41:38 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  765. 08/19/2021 10:41:38 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.562
  766. 08/19/2021 10:41:38 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  767. 08/19/2021 10:41:38 AM - DEBUG - engine_base.py: Fold 1: starting training
  768. 08/19/2021 10:41:38 AM - DEBUG - engine_base.py: Fold 1: finished training
  769. 08/19/2021 10:41:38 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.291)
  770. 08/19/2021 10:41:38 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  771. 08/19/2021 10:41:38 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.562
  772. 08/19/2021 10:41:38 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  773. 08/19/2021 10:41:38 AM - DEBUG - engine_base.py: Fold 2: starting training
  774. 08/19/2021 10:41:38 AM - DEBUG - engine_base.py: Fold 2: finished training
  775. 08/19/2021 10:41:38 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.289)
  776. 08/19/2021 10:41:38 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  777. 08/19/2021 10:41:38 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.565
  778. 08/19/2021 10:41:38 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.563
  779. 08/19/2021 10:41:39 AM - INFO - automl_search.py:
  780. Search finished after 05:02
  781. 08/19/2021 10:41:40 AM - INFO - automl_search.py: Best pipeline: LightGBM Classifier w/ Imputer
  782. 08/19/2021 10:41:40 AM - INFO - automl_search.py: Best pipeline Log Loss Binary: 0.389436
  783. 08/19/2021 10:41:40 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  784. 08/19/2021 10:41:41 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  785. 08/19/2021 10:41:41 AM - INFO - automl_search.py: Generating pipelines to search over...
  786. 08/19/2021 10:41:41 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  787. 08/19/2021 10:41:41 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  788. 08/19/2021 10:41:41 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  789. 08/19/2021 10:41:41 AM - DEBUG - automl_search.py: allowed_estimators set to ['Decision Tree Classifier', 'LightGBM Classifier', 'Extra Trees Classifier', 'Elastic Net Classifier', 'CatBoost Classifier', 'XGBoost Classifier', 'Random Forest Classifier', 'Logistic Regression Classifier']
  790. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  791. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  792. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  793. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  794. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  795. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  796. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  797. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  798. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  799. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  800. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  801. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  802. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  803. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  804. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  805. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  806. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  807. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  808. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  809. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  810. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  811. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  812. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  813. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  814. 08/19/2021 10:41:42 AM - INFO - automl_search.py: 8 pipelines ready for search.
  815. 08/19/2021 10:41:42 AM - DEBUG - automl_search.py: allowed_pipelines set to ['Decision Tree Classifier w/ Imputer', 'LightGBM Classifier w/ Imputer', 'Extra Trees Classifier w/ Imputer', 'Elastic Net Classifier w/ Imputer + Standard Scaler', 'CatBoost Classifier w/ Imputer', 'XGBoost Classifier w/ Imputer', 'Random Forest Classifier w/ Imputer', 'Logistic Regression Classifier w/ Imputer + Standard Scaler']
  816. 08/19/2021 10:41:42 AM - DEBUG - automl_search.py: allowed_model_families set to [ModelFamily.XGBOOST, ModelFamily.RANDOM_FOREST, ModelFamily.CATBOOST, ModelFamily.EXTRA_TREES, ModelFamily.LIGHTGBM, ModelFamily.DECISION_TREE, ModelFamily.LINEAR_MODEL]
  817. 08/19/2021 10:41:42 AM - INFO - logger.py:
  818. *****************************
  819. 08/19/2021 10:41:42 AM - INFO - logger.py: * Beginning pipeline search *
  820. 08/19/2021 10:41:42 AM - INFO - logger.py: *****************************
  821. 08/19/2021 10:41:42 AM - INFO - logger.py:
  822. 08/19/2021 10:41:42 AM - INFO - automl_search.py: Optimizing for Log Loss Binary.
  823. 08/19/2021 10:41:42 AM - INFO - automl_search.py: Lower score is better.
  824. 08/19/2021 10:41:42 AM - INFO - automl_search.py: Using SequentialEngine to train and score pipelines.
  825. 08/19/2021 10:41:42 AM - INFO - automl_search.py: Will stop searching for new pipelines after 300 seconds.
  826. 08/19/2021 10:41:42 AM - INFO - automl_search.py: Allowed model families: xgboost, random_forest, catboost, extra_trees, lightgbm, decision_tree, linear_model
  827. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  828. 08/19/2021 10:41:42 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  829. 08/19/2021 10:41:42 AM - INFO - automl_search.py: Evaluating Baseline Pipeline: Mode Baseline Binary Classification Pipeline
  830. 08/19/2021 10:41:46 AM - INFO - engine_base.py: Mode Baseline Binary Classification Pipeline:
  831. 08/19/2021 10:41:46 AM - INFO - engine_base.py: Starting cross validation
  832. 08/19/2021 10:41:46 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  833. 08/19/2021 10:41:46 AM - DEBUG - engine_base.py: Fold 0: starting training
  834. 08/19/2021 10:41:46 AM - DEBUG - engine_base.py: Fold 0: finished training
  835. 08/19/2021 10:41:46 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.000)
  836. 08/19/2021 10:41:46 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  837. 08/19/2021 10:41:46 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 9.306
  838. 08/19/2021 10:41:46 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  839. 08/19/2021 10:41:46 AM - DEBUG - engine_base.py: Fold 1: starting training
  840. 08/19/2021 10:41:46 AM - DEBUG - engine_base.py: Fold 1: finished training
  841. 08/19/2021 10:41:46 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.000)
  842. 08/19/2021 10:41:46 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  843. 08/19/2021 10:41:46 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 9.306
  844. 08/19/2021 10:41:46 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  845. 08/19/2021 10:41:46 AM - DEBUG - engine_base.py: Fold 2: starting training
  846. 08/19/2021 10:41:46 AM - DEBUG - engine_base.py: Fold 2: finished training
  847. 08/19/2021 10:41:46 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.000)
  848. 08/19/2021 10:41:46 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  849. 08/19/2021 10:41:46 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 9.315
  850. 08/19/2021 10:41:46 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 9.309
  851. 08/19/2021 10:41:46 AM - INFO - logger.py:
  852. *****************************
  853. 08/19/2021 10:41:46 AM - INFO - logger.py: * Evaluating Batch Number 1 *
  854. 08/19/2021 10:41:46 AM - INFO - logger.py: *****************************
  855. 08/19/2021 10:41:46 AM - INFO - logger.py:
  856. 08/19/2021 10:41:53 AM - INFO - engine_base.py: Elastic Net Classifier w/ Imputer + Standard Scaler:
  857. 08/19/2021 10:41:53 AM - INFO - engine_base.py: Starting cross validation
  858. 08/19/2021 10:41:53 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  859. 08/19/2021 10:41:53 AM - DEBUG - engine_base.py: Fold 0: starting training
  860. 08/19/2021 10:41:53 AM - DEBUG - engine_base.py: Fold 0: finished training
  861. 08/19/2021 10:41:53 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.203)
  862. 08/19/2021 10:41:53 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  863. 08/19/2021 10:41:53 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.557
  864. 08/19/2021 10:41:53 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  865. 08/19/2021 10:41:53 AM - DEBUG - engine_base.py: Fold 1: starting training
  866. 08/19/2021 10:41:53 AM - DEBUG - engine_base.py: Fold 1: finished training
  867. 08/19/2021 10:41:53 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.239)
  868. 08/19/2021 10:41:53 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  869. 08/19/2021 10:41:53 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.555
  870. 08/19/2021 10:41:53 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  871. 08/19/2021 10:41:53 AM - DEBUG - engine_base.py: Fold 2: starting training
  872. 08/19/2021 10:41:53 AM - DEBUG - engine_base.py: Fold 2: finished training
  873. 08/19/2021 10:41:53 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.241)
  874. 08/19/2021 10:41:53 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  875. 08/19/2021 10:41:53 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.554
  876. 08/19/2021 10:41:53 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.556
  877. 08/19/2021 10:41:57 AM - INFO - engine_base.py: Decision Tree Classifier w/ Imputer:
  878. 08/19/2021 10:41:57 AM - INFO - engine_base.py: Starting cross validation
  879. 08/19/2021 10:41:57 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  880. 08/19/2021 10:41:57 AM - DEBUG - engine_base.py: Fold 0: starting training
  881. 08/19/2021 10:41:57 AM - DEBUG - engine_base.py: Fold 0: finished training
  882. 08/19/2021 10:41:57 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (-0.000)
  883. 08/19/2021 10:41:57 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  884. 08/19/2021 10:41:57 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.551
  885. 08/19/2021 10:41:57 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  886. 08/19/2021 10:41:57 AM - DEBUG - engine_base.py: Fold 1: starting training
  887. 08/19/2021 10:41:57 AM - DEBUG - engine_base.py: Fold 1: finished training
  888. 08/19/2021 10:41:57 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.280)
  889. 08/19/2021 10:41:57 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  890. 08/19/2021 10:41:57 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.583
  891. 08/19/2021 10:41:57 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  892. 08/19/2021 10:41:57 AM - DEBUG - engine_base.py: Fold 2: starting training
  893. 08/19/2021 10:41:57 AM - DEBUG - engine_base.py: Fold 2: finished training
  894. 08/19/2021 10:41:57 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.288)
  895. 08/19/2021 10:41:57 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  896. 08/19/2021 10:41:57 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.547
  897. 08/19/2021 10:41:57 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.560
  898. 08/19/2021 10:42:07 AM - INFO - engine_base.py: Random Forest Classifier w/ Imputer:
  899. 08/19/2021 10:42:07 AM - INFO - engine_base.py: Starting cross validation
  900. 08/19/2021 10:42:07 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  901. 08/19/2021 10:42:07 AM - DEBUG - engine_base.py: Fold 0: starting training
  902. 08/19/2021 10:42:07 AM - DEBUG - engine_base.py: Fold 0: finished training
  903. 08/19/2021 10:42:07 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.324)
  904. 08/19/2021 10:42:07 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  905. 08/19/2021 10:42:07 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.462
  906. 08/19/2021 10:42:07 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  907. 08/19/2021 10:42:07 AM - DEBUG - engine_base.py: Fold 1: starting training
  908. 08/19/2021 10:42:07 AM - DEBUG - engine_base.py: Fold 1: finished training
  909. 08/19/2021 10:42:07 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.302)
  910. 08/19/2021 10:42:07 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  911. 08/19/2021 10:42:07 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.464
  912. 08/19/2021 10:42:07 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  913. 08/19/2021 10:42:07 AM - DEBUG - engine_base.py: Fold 2: starting training
  914. 08/19/2021 10:42:07 AM - DEBUG - engine_base.py: Fold 2: finished training
  915. 08/19/2021 10:42:07 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.349)
  916. 08/19/2021 10:42:07 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  917. 08/19/2021 10:42:07 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.454
  918. 08/19/2021 10:42:07 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.460
  919. 08/19/2021 10:42:11 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  920. 08/19/2021 10:42:11 AM - INFO - engine_base.py: Starting cross validation
  921. 08/19/2021 10:42:11 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  922. 08/19/2021 10:42:11 AM - DEBUG - engine_base.py: Fold 0: starting training
  923. 08/19/2021 10:42:11 AM - DEBUG - engine_base.py: Fold 0: finished training
  924. 08/19/2021 10:42:11 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.295)
  925. 08/19/2021 10:42:11 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  926. 08/19/2021 10:42:11 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.404
  927. 08/19/2021 10:42:11 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  928. 08/19/2021 10:42:11 AM - DEBUG - engine_base.py: Fold 1: starting training
  929. 08/19/2021 10:42:11 AM - DEBUG - engine_base.py: Fold 1: finished training
  930. 08/19/2021 10:42:11 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.346)
  931. 08/19/2021 10:42:11 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  932. 08/19/2021 10:42:11 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.399
  933. 08/19/2021 10:42:11 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  934. 08/19/2021 10:42:11 AM - DEBUG - engine_base.py: Fold 2: starting training
  935. 08/19/2021 10:42:11 AM - DEBUG - engine_base.py: Fold 2: finished training
  936. 08/19/2021 10:42:11 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.355)
  937. 08/19/2021 10:42:11 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  938. 08/19/2021 10:42:11 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.383
  939. 08/19/2021 10:42:11 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.395
  940. 08/19/2021 10:42:20 AM - INFO - engine_base.py: Logistic Regression Classifier w/ Imputer + Standard Scaler:
  941. 08/19/2021 10:42:20 AM - INFO - engine_base.py: Starting cross validation
  942. 08/19/2021 10:42:20 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  943. 08/19/2021 10:42:20 AM - DEBUG - engine_base.py: Fold 0: starting training
  944. 08/19/2021 10:42:20 AM - DEBUG - engine_base.py: Fold 0: finished training
  945. 08/19/2021 10:42:20 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.203)
  946. 08/19/2021 10:42:20 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  947. 08/19/2021 10:42:20 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.557
  948. 08/19/2021 10:42:20 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  949. 08/19/2021 10:42:20 AM - DEBUG - engine_base.py: Fold 1: starting training
  950. 08/19/2021 10:42:20 AM - DEBUG - engine_base.py: Fold 1: finished training
  951. 08/19/2021 10:42:20 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.233)
  952. 08/19/2021 10:42:20 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  953. 08/19/2021 10:42:20 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.555
  954. 08/19/2021 10:42:20 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  955. 08/19/2021 10:42:20 AM - DEBUG - engine_base.py: Fold 2: starting training
  956. 08/19/2021 10:42:20 AM - DEBUG - engine_base.py: Fold 2: finished training
  957. 08/19/2021 10:42:20 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.241)
  958. 08/19/2021 10:42:20 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  959. 08/19/2021 10:42:20 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.554
  960. 08/19/2021 10:42:20 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.555
  961. 08/19/2021 10:42:30 AM - INFO - engine_base.py: XGBoost Classifier w/ Imputer:
  962. 08/19/2021 10:42:30 AM - INFO - engine_base.py: Starting cross validation
  963. 08/19/2021 10:42:31 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  964. 08/19/2021 10:42:31 AM - DEBUG - engine_base.py: Fold 0: starting training
  965. 08/19/2021 10:42:31 AM - DEBUG - engine_base.py: Fold 0: finished training
  966. 08/19/2021 10:42:31 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.302)
  967. 08/19/2021 10:42:31 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  968. 08/19/2021 10:42:31 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.408
  969. 08/19/2021 10:42:31 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  970. 08/19/2021 10:42:31 AM - DEBUG - engine_base.py: Fold 1: starting training
  971. 08/19/2021 10:42:31 AM - DEBUG - engine_base.py: Fold 1: finished training
  972. 08/19/2021 10:42:31 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.312)
  973. 08/19/2021 10:42:31 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  974. 08/19/2021 10:42:31 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.398
  975. 08/19/2021 10:42:31 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  976. 08/19/2021 10:42:31 AM - DEBUG - engine_base.py: Fold 2: starting training
  977. 08/19/2021 10:42:31 AM - DEBUG - engine_base.py: Fold 2: finished training
  978. 08/19/2021 10:42:31 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.354)
  979. 08/19/2021 10:42:31 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  980. 08/19/2021 10:42:31 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.389
  981. 08/19/2021 10:42:31 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.398
  982. 08/19/2021 10:42:37 AM - INFO - engine_base.py: Extra Trees Classifier w/ Imputer:
  983. 08/19/2021 10:42:37 AM - INFO - engine_base.py: Starting cross validation
  984. 08/19/2021 10:42:37 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  985. 08/19/2021 10:42:37 AM - DEBUG - engine_base.py: Fold 0: starting training
  986. 08/19/2021 10:42:37 AM - DEBUG - engine_base.py: Fold 0: finished training
  987. 08/19/2021 10:42:37 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.297)
  988. 08/19/2021 10:42:37 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  989. 08/19/2021 10:42:37 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.540
  990. 08/19/2021 10:42:37 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  991. 08/19/2021 10:42:37 AM - DEBUG - engine_base.py: Fold 1: starting training
  992. 08/19/2021 10:42:37 AM - DEBUG - engine_base.py: Fold 1: finished training
  993. 08/19/2021 10:42:37 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.299)
  994. 08/19/2021 10:42:37 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  995. 08/19/2021 10:42:37 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.540
  996. 08/19/2021 10:42:37 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  997. 08/19/2021 10:42:37 AM - DEBUG - engine_base.py: Fold 2: starting training
  998. 08/19/2021 10:42:37 AM - DEBUG - engine_base.py: Fold 2: finished training
  999. 08/19/2021 10:42:37 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.293)
  1000. 08/19/2021 10:42:37 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1001. 08/19/2021 10:42:37 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.539
  1002. 08/19/2021 10:42:37 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.540
  1003. 08/19/2021 10:42:39 AM - INFO - engine_base.py: CatBoost Classifier w/ Imputer:
  1004. 08/19/2021 10:42:39 AM - INFO - engine_base.py: Starting cross validation
  1005. 08/19/2021 10:42:39 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1006. 08/19/2021 10:42:39 AM - DEBUG - engine_base.py: Fold 0: starting training
  1007. 08/19/2021 10:42:39 AM - DEBUG - engine_base.py: Fold 0: finished training
  1008. 08/19/2021 10:42:39 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.438)
  1009. 08/19/2021 10:42:39 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1010. 08/19/2021 10:42:39 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.626
  1011. 08/19/2021 10:42:39 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1012. 08/19/2021 10:42:39 AM - DEBUG - engine_base.py: Fold 1: starting training
  1013. 08/19/2021 10:42:39 AM - DEBUG - engine_base.py: Fold 1: finished training
  1014. 08/19/2021 10:42:39 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.432)
  1015. 08/19/2021 10:42:39 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1016. 08/19/2021 10:42:39 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.627
  1017. 08/19/2021 10:42:39 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1018. 08/19/2021 10:42:39 AM - DEBUG - engine_base.py: Fold 2: starting training
  1019. 08/19/2021 10:42:39 AM - DEBUG - engine_base.py: Fold 2: finished training
  1020. 08/19/2021 10:42:39 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.444)
  1021. 08/19/2021 10:42:39 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1022. 08/19/2021 10:42:39 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.628
  1023. 08/19/2021 10:42:39 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.627
  1024. 08/19/2021 10:42:39 AM - INFO - logger.py:
  1025. *****************************
  1026. 08/19/2021 10:42:39 AM - INFO - logger.py: * Evaluating Batch Number 2 *
  1027. 08/19/2021 10:42:39 AM - INFO - logger.py: *****************************
  1028. 08/19/2021 10:42:39 AM - INFO - logger.py:
  1029. 08/19/2021 10:42:42 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  1030. 08/19/2021 10:42:42 AM - INFO - engine_base.py: Starting cross validation
  1031. 08/19/2021 10:42:42 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1032. 08/19/2021 10:42:42 AM - DEBUG - engine_base.py: Fold 0: starting training
  1033. 08/19/2021 10:42:42 AM - DEBUG - engine_base.py: Fold 0: finished training
  1034. 08/19/2021 10:42:42 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.310)
  1035. 08/19/2021 10:42:42 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1036. 08/19/2021 10:42:42 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.489
  1037. 08/19/2021 10:42:42 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1038. 08/19/2021 10:42:42 AM - DEBUG - engine_base.py: Fold 1: starting training
  1039. 08/19/2021 10:42:42 AM - DEBUG - engine_base.py: Fold 1: finished training
  1040. 08/19/2021 10:42:42 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.284)
  1041. 08/19/2021 10:42:42 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1042. 08/19/2021 10:42:42 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.489
  1043. 08/19/2021 10:42:42 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1044. 08/19/2021 10:42:42 AM - DEBUG - engine_base.py: Fold 2: starting training
  1045. 08/19/2021 10:42:42 AM - DEBUG - engine_base.py: Fold 2: finished training
  1046. 08/19/2021 10:42:42 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.310)
  1047. 08/19/2021 10:42:42 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1048. 08/19/2021 10:42:42 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.478
  1049. 08/19/2021 10:42:42 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.485
  1050. 08/19/2021 10:42:45 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  1051. 08/19/2021 10:42:45 AM - INFO - engine_base.py: Starting cross validation
  1052. 08/19/2021 10:42:45 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1053. 08/19/2021 10:42:45 AM - DEBUG - engine_base.py: Fold 0: starting training
  1054. 08/19/2021 10:42:45 AM - DEBUG - engine_base.py: Fold 0: finished training
  1055. 08/19/2021 10:42:45 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.218)
  1056. 08/19/2021 10:42:45 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1057. 08/19/2021 10:42:45 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.522
  1058. 08/19/2021 10:42:45 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1059. 08/19/2021 10:42:45 AM - DEBUG - engine_base.py: Fold 1: starting training
  1060. 08/19/2021 10:42:45 AM - DEBUG - engine_base.py: Fold 1: finished training
  1061. 08/19/2021 10:42:45 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.268)
  1062. 08/19/2021 10:42:45 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1063. 08/19/2021 10:42:45 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.520
  1064. 08/19/2021 10:42:45 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1065. 08/19/2021 10:42:45 AM - DEBUG - engine_base.py: Fold 2: starting training
  1066. 08/19/2021 10:42:45 AM - DEBUG - engine_base.py: Fold 2: finished training
  1067. 08/19/2021 10:42:45 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.265)
  1068. 08/19/2021 10:42:45 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1069. 08/19/2021 10:42:45 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.515
  1070. 08/19/2021 10:42:45 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.519
  1071. 08/19/2021 10:42:48 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  1072. 08/19/2021 10:42:48 AM - INFO - engine_base.py: Starting cross validation
  1073. 08/19/2021 10:42:48 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1074. 08/19/2021 10:42:48 AM - DEBUG - engine_base.py: Fold 0: starting training
  1075. 08/19/2021 10:42:48 AM - DEBUG - engine_base.py: Fold 0: finished training
  1076. 08/19/2021 10:42:48 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.276)
  1077. 08/19/2021 10:42:48 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1078. 08/19/2021 10:42:48 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.491
  1079. 08/19/2021 10:42:48 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1080. 08/19/2021 10:42:48 AM - DEBUG - engine_base.py: Fold 1: starting training
  1081. 08/19/2021 10:42:48 AM - DEBUG - engine_base.py: Fold 1: finished training
  1082. 08/19/2021 10:42:48 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.285)
  1083. 08/19/2021 10:42:48 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1084. 08/19/2021 10:42:48 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.493
  1085. 08/19/2021 10:42:48 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1086. 08/19/2021 10:42:48 AM - DEBUG - engine_base.py: Fold 2: starting training
  1087. 08/19/2021 10:42:48 AM - DEBUG - engine_base.py: Fold 2: finished training
  1088. 08/19/2021 10:42:48 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.307)
  1089. 08/19/2021 10:42:48 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1090. 08/19/2021 10:42:48 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.486
  1091. 08/19/2021 10:42:48 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.490
  1092. 08/19/2021 10:42:51 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  1093. 08/19/2021 10:42:51 AM - INFO - engine_base.py: Starting cross validation
  1094. 08/19/2021 10:42:51 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1095. 08/19/2021 10:42:51 AM - DEBUG - engine_base.py: Fold 0: starting training
  1096. 08/19/2021 10:42:51 AM - DEBUG - engine_base.py: Fold 0: finished training
  1097. 08/19/2021 10:42:51 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.291)
  1098. 08/19/2021 10:42:51 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1099. 08/19/2021 10:42:51 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.651
  1100. 08/19/2021 10:42:51 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1101. 08/19/2021 10:42:51 AM - DEBUG - engine_base.py: Fold 1: starting training
  1102. 08/19/2021 10:42:51 AM - DEBUG - engine_base.py: Fold 1: finished training
  1103. 08/19/2021 10:42:51 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.250)
  1104. 08/19/2021 10:42:51 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1105. 08/19/2021 10:42:51 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.616
  1106. 08/19/2021 10:42:51 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1107. 08/19/2021 10:42:51 AM - DEBUG - engine_base.py: Fold 2: starting training
  1108. 08/19/2021 10:42:51 AM - DEBUG - engine_base.py: Fold 2: finished training
  1109. 08/19/2021 10:42:51 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.233)
  1110. 08/19/2021 10:42:51 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1111. 08/19/2021 10:42:51 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.601
  1112. 08/19/2021 10:42:51 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.622
  1113. 08/19/2021 10:42:55 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  1114. 08/19/2021 10:42:55 AM - INFO - engine_base.py: Starting cross validation
  1115. 08/19/2021 10:42:55 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1116. 08/19/2021 10:42:55 AM - DEBUG - engine_base.py: Fold 0: starting training
  1117. 08/19/2021 10:42:55 AM - DEBUG - engine_base.py: Fold 0: finished training
  1118. 08/19/2021 10:42:55 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.323)
  1119. 08/19/2021 10:42:55 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1120. 08/19/2021 10:42:55 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.417
  1121. 08/19/2021 10:42:55 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1122. 08/19/2021 10:42:55 AM - DEBUG - engine_base.py: Fold 1: starting training
  1123. 08/19/2021 10:42:55 AM - DEBUG - engine_base.py: Fold 1: finished training
  1124. 08/19/2021 10:42:55 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.271)
  1125. 08/19/2021 10:42:55 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1126. 08/19/2021 10:42:55 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.412
  1127. 08/19/2021 10:42:55 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1128. 08/19/2021 10:42:55 AM - DEBUG - engine_base.py: Fold 2: starting training
  1129. 08/19/2021 10:42:55 AM - DEBUG - engine_base.py: Fold 2: finished training
  1130. 08/19/2021 10:42:55 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.358)
  1131. 08/19/2021 10:42:55 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1132. 08/19/2021 10:42:55 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.400
  1133. 08/19/2021 10:42:55 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.409
  1134. 08/19/2021 10:42:55 AM - INFO - logger.py:
  1135. *****************************
  1136. 08/19/2021 10:42:55 AM - INFO - logger.py: * Evaluating Batch Number 3 *
  1137. 08/19/2021 10:42:55 AM - INFO - logger.py: *****************************
  1138. 08/19/2021 10:42:55 AM - INFO - logger.py:
  1139. 08/19/2021 10:43:06 AM - INFO - engine_base.py: XGBoost Classifier w/ Imputer:
  1140. 08/19/2021 10:43:06 AM - INFO - engine_base.py: Starting cross validation
  1141. 08/19/2021 10:43:06 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1142. 08/19/2021 10:43:06 AM - DEBUG - engine_base.py: Fold 0: starting training
  1143. 08/19/2021 10:43:06 AM - DEBUG - engine_base.py: Fold 0: finished training
  1144. 08/19/2021 10:43:06 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.159)
  1145. 08/19/2021 10:43:06 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1146. 08/19/2021 10:43:06 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.653
  1147. 08/19/2021 10:43:06 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1148. 08/19/2021 10:43:06 AM - DEBUG - engine_base.py: Fold 1: starting training
  1149. 08/19/2021 10:43:06 AM - DEBUG - engine_base.py: Fold 1: finished training
  1150. 08/19/2021 10:43:06 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.112)
  1151. 08/19/2021 10:43:06 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1152. 08/19/2021 10:43:06 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.667
  1153. 08/19/2021 10:43:06 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1154. 08/19/2021 10:43:06 AM - DEBUG - engine_base.py: Fold 2: starting training
  1155. 08/19/2021 10:43:06 AM - DEBUG - engine_base.py: Fold 2: finished training
  1156. 08/19/2021 10:43:06 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.367)
  1157. 08/19/2021 10:43:06 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1158. 08/19/2021 10:43:06 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.630
  1159. 08/19/2021 10:43:06 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.650
  1160. 08/19/2021 10:43:14 AM - INFO - engine_base.py: XGBoost Classifier w/ Imputer:
  1161. 08/19/2021 10:43:14 AM - INFO - engine_base.py: Starting cross validation
  1162. 08/19/2021 10:43:14 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1163. 08/19/2021 10:43:14 AM - DEBUG - engine_base.py: Fold 0: starting training
  1164. 08/19/2021 10:43:14 AM - DEBUG - engine_base.py: Fold 0: finished training
  1165. 08/19/2021 10:43:14 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.127)
  1166. 08/19/2021 10:43:14 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1167. 08/19/2021 10:43:14 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.633
  1168. 08/19/2021 10:43:14 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1169. 08/19/2021 10:43:14 AM - DEBUG - engine_base.py: Fold 1: starting training
  1170. 08/19/2021 10:43:14 AM - DEBUG - engine_base.py: Fold 1: finished training
  1171. 08/19/2021 10:43:14 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.079)
  1172. 08/19/2021 10:43:14 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1173. 08/19/2021 10:43:14 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.611
  1174. 08/19/2021 10:43:14 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1175. 08/19/2021 10:43:14 AM - DEBUG - engine_base.py: Fold 2: starting training
  1176. 08/19/2021 10:43:14 AM - DEBUG - engine_base.py: Fold 2: finished training
  1177. 08/19/2021 10:43:14 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.224)
  1178. 08/19/2021 10:43:14 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1179. 08/19/2021 10:43:14 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.591
  1180. 08/19/2021 10:43:14 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.612
  1181. 08/19/2021 10:43:31 AM - INFO - engine_base.py: XGBoost Classifier w/ Imputer:
  1182. 08/19/2021 10:43:31 AM - INFO - engine_base.py: Starting cross validation
  1183. 08/19/2021 10:43:31 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1184. 08/19/2021 10:43:31 AM - DEBUG - engine_base.py: Fold 0: starting training
  1185. 08/19/2021 10:43:31 AM - DEBUG - engine_base.py: Fold 0: finished training
  1186. 08/19/2021 10:43:31 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.207)
  1187. 08/19/2021 10:43:31 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1188. 08/19/2021 10:43:31 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.591
  1189. 08/19/2021 10:43:31 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1190. 08/19/2021 10:43:31 AM - DEBUG - engine_base.py: Fold 1: starting training
  1191. 08/19/2021 10:43:31 AM - DEBUG - engine_base.py: Fold 1: finished training
  1192. 08/19/2021 10:43:31 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.316)
  1193. 08/19/2021 10:43:31 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1194. 08/19/2021 10:43:31 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.577
  1195. 08/19/2021 10:43:31 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1196. 08/19/2021 10:43:31 AM - DEBUG - engine_base.py: Fold 2: starting training
  1197. 08/19/2021 10:43:31 AM - DEBUG - engine_base.py: Fold 2: finished training
  1198. 08/19/2021 10:43:31 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.222)
  1199. 08/19/2021 10:43:31 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1200. 08/19/2021 10:43:31 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.558
  1201. 08/19/2021 10:43:31 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.575
  1202. 08/19/2021 10:43:48 AM - INFO - engine_base.py: XGBoost Classifier w/ Imputer:
  1203. 08/19/2021 10:43:48 AM - INFO - engine_base.py: Starting cross validation
  1204. 08/19/2021 10:43:48 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1205. 08/19/2021 10:43:48 AM - DEBUG - engine_base.py: Fold 0: starting training
  1206. 08/19/2021 10:43:48 AM - DEBUG - engine_base.py: Fold 0: finished training
  1207. 08/19/2021 10:43:48 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.287)
  1208. 08/19/2021 10:43:48 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1209. 08/19/2021 10:43:48 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.461
  1210. 08/19/2021 10:43:48 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1211. 08/19/2021 10:43:48 AM - DEBUG - engine_base.py: Fold 1: starting training
  1212. 08/19/2021 10:43:48 AM - DEBUG - engine_base.py: Fold 1: finished training
  1213. 08/19/2021 10:43:48 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.377)
  1214. 08/19/2021 10:43:48 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1215. 08/19/2021 10:43:48 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.461
  1216. 08/19/2021 10:43:48 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1217. 08/19/2021 10:43:48 AM - DEBUG - engine_base.py: Fold 2: starting training
  1218. 08/19/2021 10:43:48 AM - DEBUG - engine_base.py: Fold 2: finished training
  1219. 08/19/2021 10:43:48 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.316)
  1220. 08/19/2021 10:43:48 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1221. 08/19/2021 10:43:48 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.453
  1222. 08/19/2021 10:43:48 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.458
  1223. 08/19/2021 10:43:52 AM - INFO - engine_base.py: XGBoost Classifier w/ Imputer:
  1224. 08/19/2021 10:43:52 AM - INFO - engine_base.py: Starting cross validation
  1225. 08/19/2021 10:43:52 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1226. 08/19/2021 10:43:52 AM - DEBUG - engine_base.py: Fold 0: starting training
  1227. 08/19/2021 10:43:52 AM - DEBUG - engine_base.py: Fold 0: finished training
  1228. 08/19/2021 10:43:52 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.271)
  1229. 08/19/2021 10:43:52 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1230. 08/19/2021 10:43:52 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.504
  1231. 08/19/2021 10:43:52 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1232. 08/19/2021 10:43:52 AM - DEBUG - engine_base.py: Fold 1: starting training
  1233. 08/19/2021 10:43:52 AM - DEBUG - engine_base.py: Fold 1: finished training
  1234. 08/19/2021 10:43:52 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.237)
  1235. 08/19/2021 10:43:52 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1236. 08/19/2021 10:43:52 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.505
  1237. 08/19/2021 10:43:52 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1238. 08/19/2021 10:43:52 AM - DEBUG - engine_base.py: Fold 2: starting training
  1239. 08/19/2021 10:43:52 AM - DEBUG - engine_base.py: Fold 2: finished training
  1240. 08/19/2021 10:43:52 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.278)
  1241. 08/19/2021 10:43:52 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1242. 08/19/2021 10:43:52 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.495
  1243. 08/19/2021 10:43:52 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.501
  1244. 08/19/2021 10:43:52 AM - INFO - logger.py:
  1245. *****************************
  1246. 08/19/2021 10:43:52 AM - INFO - logger.py: * Evaluating Batch Number 4 *
  1247. 08/19/2021 10:43:52 AM - INFO - logger.py: *****************************
  1248. 08/19/2021 10:43:52 AM - INFO - logger.py:
  1249. 08/19/2021 10:44:21 AM - INFO - engine_base.py: Random Forest Classifier w/ Imputer:
  1250. 08/19/2021 10:44:21 AM - INFO - engine_base.py: Starting cross validation
  1251. 08/19/2021 10:44:21 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1252. 08/19/2021 10:44:21 AM - DEBUG - engine_base.py: Fold 0: starting training
  1253. 08/19/2021 10:44:21 AM - DEBUG - engine_base.py: Fold 0: finished training
  1254. 08/19/2021 10:44:21 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.292)
  1255. 08/19/2021 10:44:21 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1256. 08/19/2021 10:44:21 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.505
  1257. 08/19/2021 10:44:21 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1258. 08/19/2021 10:44:21 AM - DEBUG - engine_base.py: Fold 1: starting training
  1259. 08/19/2021 10:44:21 AM - DEBUG - engine_base.py: Fold 1: finished training
  1260. 08/19/2021 10:44:21 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.266)
  1261. 08/19/2021 10:44:21 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1262. 08/19/2021 10:44:21 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.505
  1263. 08/19/2021 10:44:21 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1264. 08/19/2021 10:44:21 AM - DEBUG - engine_base.py: Fold 2: starting training
  1265. 08/19/2021 10:44:21 AM - DEBUG - engine_base.py: Fold 2: finished training
  1266. 08/19/2021 10:44:21 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.293)
  1267. 08/19/2021 10:44:21 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1268. 08/19/2021 10:44:21 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.498
  1269. 08/19/2021 10:44:21 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.503
  1270. 08/19/2021 10:44:37 AM - INFO - engine_base.py: Random Forest Classifier w/ Imputer:
  1271. 08/19/2021 10:44:37 AM - INFO - engine_base.py: Starting cross validation
  1272. 08/19/2021 10:44:37 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1273. 08/19/2021 10:44:37 AM - DEBUG - engine_base.py: Fold 0: starting training
  1274. 08/19/2021 10:44:37 AM - DEBUG - engine_base.py: Fold 0: finished training
  1275. 08/19/2021 10:44:37 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.278)
  1276. 08/19/2021 10:44:37 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1277. 08/19/2021 10:44:37 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.548
  1278. 08/19/2021 10:44:37 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1279. 08/19/2021 10:44:37 AM - DEBUG - engine_base.py: Fold 1: starting training
  1280. 08/19/2021 10:44:37 AM - DEBUG - engine_base.py: Fold 1: finished training
  1281. 08/19/2021 10:44:37 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.269)
  1282. 08/19/2021 10:44:37 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1283. 08/19/2021 10:44:37 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.548
  1284. 08/19/2021 10:44:37 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1285. 08/19/2021 10:44:37 AM - DEBUG - engine_base.py: Fold 2: starting training
  1286. 08/19/2021 10:44:37 AM - DEBUG - engine_base.py: Fold 2: finished training
  1287. 08/19/2021 10:44:37 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.264)
  1288. 08/19/2021 10:44:37 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1289. 08/19/2021 10:44:37 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.545
  1290. 08/19/2021 10:44:37 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.547
  1291. 08/19/2021 10:45:13 AM - INFO - engine_base.py: Random Forest Classifier w/ Imputer:
  1292. 08/19/2021 10:45:13 AM - INFO - engine_base.py: Starting cross validation
  1293. 08/19/2021 10:45:13 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1294. 08/19/2021 10:45:13 AM - DEBUG - engine_base.py: Fold 0: starting training
  1295. 08/19/2021 10:45:13 AM - DEBUG - engine_base.py: Fold 0: finished training
  1296. 08/19/2021 10:45:13 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.308)
  1297. 08/19/2021 10:45:13 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1298. 08/19/2021 10:45:13 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.483
  1299. 08/19/2021 10:45:13 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1300. 08/19/2021 10:45:13 AM - DEBUG - engine_base.py: Fold 1: starting training
  1301. 08/19/2021 10:45:13 AM - DEBUG - engine_base.py: Fold 1: finished training
  1302. 08/19/2021 10:45:13 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.265)
  1303. 08/19/2021 10:45:13 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1304. 08/19/2021 10:45:13 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.483
  1305. 08/19/2021 10:45:13 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1306. 08/19/2021 10:45:13 AM - DEBUG - engine_base.py: Fold 2: starting training
  1307. 08/19/2021 10:45:13 AM - DEBUG - engine_base.py: Fold 2: finished training
  1308. 08/19/2021 10:45:13 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.294)
  1309. 08/19/2021 10:45:13 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1310. 08/19/2021 10:45:13 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.476
  1311. 08/19/2021 10:45:13 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.481
  1312. 08/19/2021 10:45:37 AM - INFO - engine_base.py: Random Forest Classifier w/ Imputer:
  1313. 08/19/2021 10:45:37 AM - INFO - engine_base.py: Starting cross validation
  1314. 08/19/2021 10:45:37 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1315. 08/19/2021 10:45:37 AM - DEBUG - engine_base.py: Fold 0: starting training
  1316. 08/19/2021 10:45:37 AM - DEBUG - engine_base.py: Fold 0: finished training
  1317. 08/19/2021 10:45:37 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.277)
  1318. 08/19/2021 10:45:37 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1319. 08/19/2021 10:45:37 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.548
  1320. 08/19/2021 10:45:37 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1321. 08/19/2021 10:45:37 AM - DEBUG - engine_base.py: Fold 1: starting training
  1322. 08/19/2021 10:45:37 AM - DEBUG - engine_base.py: Fold 1: finished training
  1323. 08/19/2021 10:45:37 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.272)
  1324. 08/19/2021 10:45:37 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1325. 08/19/2021 10:45:37 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.548
  1326. 08/19/2021 10:45:37 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1327. 08/19/2021 10:45:37 AM - DEBUG - engine_base.py: Fold 2: starting training
  1328. 08/19/2021 10:45:37 AM - DEBUG - engine_base.py: Fold 2: finished training
  1329. 08/19/2021 10:45:37 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.269)
  1330. 08/19/2021 10:45:37 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1331. 08/19/2021 10:45:37 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.545
  1332. 08/19/2021 10:45:37 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.547
  1333. 08/19/2021 10:46:14 AM - INFO - engine_base.py: Random Forest Classifier w/ Imputer:
  1334. 08/19/2021 10:46:14 AM - INFO - engine_base.py: Starting cross validation
  1335. 08/19/2021 10:46:14 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1336. 08/19/2021 10:46:14 AM - DEBUG - engine_base.py: Fold 0: starting training
  1337. 08/19/2021 10:46:14 AM - DEBUG - engine_base.py: Fold 0: finished training
  1338. 08/19/2021 10:46:14 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.292)
  1339. 08/19/2021 10:46:14 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1340. 08/19/2021 10:46:14 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.483
  1341. 08/19/2021 10:46:14 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1342. 08/19/2021 10:46:14 AM - DEBUG - engine_base.py: Fold 1: starting training
  1343. 08/19/2021 10:46:14 AM - DEBUG - engine_base.py: Fold 1: finished training
  1344. 08/19/2021 10:46:14 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.284)
  1345. 08/19/2021 10:46:14 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1346. 08/19/2021 10:46:14 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.483
  1347. 08/19/2021 10:46:14 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1348. 08/19/2021 10:46:14 AM - DEBUG - engine_base.py: Fold 2: starting training
  1349. 08/19/2021 10:46:14 AM - DEBUG - engine_base.py: Fold 2: finished training
  1350. 08/19/2021 10:46:14 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.292)
  1351. 08/19/2021 10:46:14 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1352. 08/19/2021 10:46:14 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.476
  1353. 08/19/2021 10:46:14 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.480
  1354. 08/19/2021 10:46:14 AM - INFO - logger.py:
  1355. *****************************
  1356. 08/19/2021 10:46:14 AM - INFO - logger.py: * Evaluating Batch Number 5 *
  1357. 08/19/2021 10:46:14 AM - INFO - logger.py: *****************************
  1358. 08/19/2021 10:46:14 AM - INFO - logger.py:
  1359. 08/19/2021 10:46:38 AM - INFO - engine_base.py: Extra Trees Classifier w/ Imputer:
  1360. 08/19/2021 10:46:38 AM - INFO - engine_base.py: Starting cross validation
  1361. 08/19/2021 10:46:38 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1362. 08/19/2021 10:46:38 AM - DEBUG - engine_base.py: Fold 0: starting training
  1363. 08/19/2021 10:46:38 AM - DEBUG - engine_base.py: Fold 0: finished training
  1364. 08/19/2021 10:46:38 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.292)
  1365. 08/19/2021 10:46:38 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1366. 08/19/2021 10:46:38 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.550
  1367. 08/19/2021 10:46:38 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1368. 08/19/2021 10:46:38 AM - DEBUG - engine_base.py: Fold 1: starting training
  1369. 08/19/2021 10:46:38 AM - DEBUG - engine_base.py: Fold 1: finished training
  1370. 08/19/2021 10:46:38 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.290)
  1371. 08/19/2021 10:46:38 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1372. 08/19/2021 10:46:38 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.550
  1373. 08/19/2021 10:46:38 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1374. 08/19/2021 10:46:38 AM - DEBUG - engine_base.py: Fold 2: starting training
  1375. 08/19/2021 10:46:38 AM - DEBUG - engine_base.py: Fold 2: finished training
  1376. 08/19/2021 10:46:38 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.289)
  1377. 08/19/2021 10:46:38 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1378. 08/19/2021 10:46:38 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.550
  1379. 08/19/2021 10:46:38 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.550
  1380. 08/19/2021 10:46:56 AM - INFO - engine_base.py: Extra Trees Classifier w/ Imputer:
  1381. 08/19/2021 10:46:56 AM - INFO - engine_base.py: Starting cross validation
  1382. 08/19/2021 10:46:56 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1383. 08/19/2021 10:46:56 AM - DEBUG - engine_base.py: Fold 0: starting training
  1384. 08/19/2021 10:46:56 AM - DEBUG - engine_base.py: Fold 0: finished training
  1385. 08/19/2021 10:46:56 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.281)
  1386. 08/19/2021 10:46:56 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1387. 08/19/2021 10:46:56 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.559
  1388. 08/19/2021 10:46:56 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1389. 08/19/2021 10:46:56 AM - DEBUG - engine_base.py: Fold 1: starting training
  1390. 08/19/2021 10:46:56 AM - DEBUG - engine_base.py: Fold 1: finished training
  1391. 08/19/2021 10:46:56 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.281)
  1392. 08/19/2021 10:46:56 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1393. 08/19/2021 10:46:56 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.559
  1394. 08/19/2021 10:46:56 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1395. 08/19/2021 10:46:56 AM - DEBUG - engine_base.py: Fold 2: starting training
  1396. 08/19/2021 10:46:56 AM - DEBUG - engine_base.py: Fold 2: finished training
  1397. 08/19/2021 10:46:56 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.287)
  1398. 08/19/2021 10:46:56 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1399. 08/19/2021 10:46:56 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.558
  1400. 08/19/2021 10:46:56 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.559
  1401. 08/19/2021 10:46:56 AM - INFO - automl_search.py:
  1402. Search finished after 05:14
  1403. 08/19/2021 10:46:57 AM - INFO - automl_search.py: Best pipeline: LightGBM Classifier w/ Imputer
  1404. 08/19/2021 10:46:57 AM - INFO - automl_search.py: Best pipeline Log Loss Binary: 0.395200
  1405. 08/19/2021 10:46:58 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1406. 08/19/2021 10:46:58 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1407. 08/19/2021 10:46:59 AM - INFO - automl_search.py: Generating pipelines to search over...
  1408. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1409. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1410. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1411. 08/19/2021 10:46:59 AM - DEBUG - automl_search.py: allowed_estimators set to ['Decision Tree Classifier', 'LightGBM Classifier', 'Extra Trees Classifier', 'Elastic Net Classifier', 'CatBoost Classifier', 'XGBoost Classifier', 'Random Forest Classifier', 'Logistic Regression Classifier']
  1412. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1413. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1414. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1415. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1416. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1417. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1418. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1419. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1420. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1421. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1422. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1423. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1424. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1425. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1426. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1427. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1428. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1429. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1430. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1431. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1432. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1433. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1434. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1435. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1436. 08/19/2021 10:46:59 AM - INFO - automl_search.py: 8 pipelines ready for search.
  1437. 08/19/2021 10:46:59 AM - DEBUG - automl_search.py: allowed_pipelines set to ['Decision Tree Classifier w/ Imputer', 'LightGBM Classifier w/ Imputer', 'Extra Trees Classifier w/ Imputer', 'Elastic Net Classifier w/ Imputer + Standard Scaler', 'CatBoost Classifier w/ Imputer', 'XGBoost Classifier w/ Imputer', 'Random Forest Classifier w/ Imputer', 'Logistic Regression Classifier w/ Imputer + Standard Scaler']
  1438. 08/19/2021 10:46:59 AM - DEBUG - automl_search.py: allowed_model_families set to [ModelFamily.XGBOOST, ModelFamily.RANDOM_FOREST, ModelFamily.CATBOOST, ModelFamily.EXTRA_TREES, ModelFamily.LIGHTGBM, ModelFamily.DECISION_TREE, ModelFamily.LINEAR_MODEL]
  1439. 08/19/2021 10:46:59 AM - INFO - logger.py:
  1440. *****************************
  1441. 08/19/2021 10:46:59 AM - INFO - logger.py: * Beginning pipeline search *
  1442. 08/19/2021 10:46:59 AM - INFO - logger.py: *****************************
  1443. 08/19/2021 10:46:59 AM - INFO - logger.py:
  1444. 08/19/2021 10:46:59 AM - INFO - automl_search.py: Optimizing for Log Loss Binary.
  1445. 08/19/2021 10:46:59 AM - INFO - automl_search.py: Lower score is better.
  1446. 08/19/2021 10:46:59 AM - INFO - automl_search.py: Using SequentialEngine to train and score pipelines.
  1447. 08/19/2021 10:46:59 AM - INFO - automl_search.py: Will stop searching for new pipelines after 300 seconds.
  1448. 08/19/2021 10:46:59 AM - INFO - automl_search.py: Allowed model families: xgboost, random_forest, catboost, extra_trees, lightgbm, decision_tree, linear_model
  1449. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1450. 08/19/2021 10:46:59 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1451. 08/19/2021 10:46:59 AM - INFO - automl_search.py: Evaluating Baseline Pipeline: Mode Baseline Binary Classification Pipeline
  1452. 08/19/2021 10:47:04 AM - INFO - engine_base.py: Mode Baseline Binary Classification Pipeline:
  1453. 08/19/2021 10:47:04 AM - INFO - engine_base.py: Starting cross validation
  1454. 08/19/2021 10:47:04 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1455. 08/19/2021 10:47:04 AM - DEBUG - engine_base.py: Fold 0: starting training
  1456. 08/19/2021 10:47:04 AM - DEBUG - engine_base.py: Fold 0: finished training
  1457. 08/19/2021 10:47:04 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.000)
  1458. 08/19/2021 10:47:04 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1459. 08/19/2021 10:47:04 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 9.375
  1460. 08/19/2021 10:47:04 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1461. 08/19/2021 10:47:04 AM - DEBUG - engine_base.py: Fold 1: starting training
  1462. 08/19/2021 10:47:04 AM - DEBUG - engine_base.py: Fold 1: finished training
  1463. 08/19/2021 10:47:04 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.000)
  1464. 08/19/2021 10:47:04 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1465. 08/19/2021 10:47:04 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 9.384
  1466. 08/19/2021 10:47:04 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1467. 08/19/2021 10:47:04 AM - DEBUG - engine_base.py: Fold 2: starting training
  1468. 08/19/2021 10:47:04 AM - DEBUG - engine_base.py: Fold 2: finished training
  1469. 08/19/2021 10:47:04 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.000)
  1470. 08/19/2021 10:47:04 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1471. 08/19/2021 10:47:04 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 9.384
  1472. 08/19/2021 10:47:04 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 9.381
  1473. 08/19/2021 10:47:04 AM - INFO - logger.py:
  1474. *****************************
  1475. 08/19/2021 10:47:04 AM - INFO - logger.py: * Evaluating Batch Number 1 *
  1476. 08/19/2021 10:47:04 AM - INFO - logger.py: *****************************
  1477. 08/19/2021 10:47:04 AM - INFO - logger.py:
  1478. 08/19/2021 10:47:11 AM - INFO - engine_base.py: Elastic Net Classifier w/ Imputer + Standard Scaler:
  1479. 08/19/2021 10:47:11 AM - INFO - engine_base.py: Starting cross validation
  1480. 08/19/2021 10:47:11 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1481. 08/19/2021 10:47:11 AM - DEBUG - engine_base.py: Fold 0: starting training
  1482. 08/19/2021 10:47:11 AM - DEBUG - engine_base.py: Fold 0: finished training
  1483. 08/19/2021 10:47:11 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.244)
  1484. 08/19/2021 10:47:11 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1485. 08/19/2021 10:47:11 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.560
  1486. 08/19/2021 10:47:11 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1487. 08/19/2021 10:47:11 AM - DEBUG - engine_base.py: Fold 1: starting training
  1488. 08/19/2021 10:47:11 AM - DEBUG - engine_base.py: Fold 1: finished training
  1489. 08/19/2021 10:47:11 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.218)
  1490. 08/19/2021 10:47:11 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1491. 08/19/2021 10:47:11 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.559
  1492. 08/19/2021 10:47:11 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1493. 08/19/2021 10:47:11 AM - DEBUG - engine_base.py: Fold 2: starting training
  1494. 08/19/2021 10:47:11 AM - DEBUG - engine_base.py: Fold 2: finished training
  1495. 08/19/2021 10:47:11 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.236)
  1496. 08/19/2021 10:47:11 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1497. 08/19/2021 10:47:11 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.556
  1498. 08/19/2021 10:47:11 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.558
  1499. 08/19/2021 10:47:19 AM - INFO - engine_base.py: Decision Tree Classifier w/ Imputer:
  1500. 08/19/2021 10:47:19 AM - INFO - engine_base.py: Starting cross validation
  1501. 08/19/2021 10:47:19 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1502. 08/19/2021 10:47:19 AM - DEBUG - engine_base.py: Fold 0: starting training
  1503. 08/19/2021 10:47:19 AM - DEBUG - engine_base.py: Fold 0: finished training
  1504. 08/19/2021 10:47:19 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (-0.000)
  1505. 08/19/2021 10:47:19 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1506. 08/19/2021 10:47:19 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.554
  1507. 08/19/2021 10:47:19 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1508. 08/19/2021 10:47:19 AM - DEBUG - engine_base.py: Fold 1: starting training
  1509. 08/19/2021 10:47:19 AM - DEBUG - engine_base.py: Fold 1: finished training
  1510. 08/19/2021 10:47:19 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.212)
  1511. 08/19/2021 10:47:19 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1512. 08/19/2021 10:47:19 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.642
  1513. 08/19/2021 10:47:19 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1514. 08/19/2021 10:47:19 AM - DEBUG - engine_base.py: Fold 2: starting training
  1515. 08/19/2021 10:47:19 AM - DEBUG - engine_base.py: Fold 2: finished training
  1516. 08/19/2021 10:47:19 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (-0.000)
  1517. 08/19/2021 10:47:19 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1518. 08/19/2021 10:47:19 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.560
  1519. 08/19/2021 10:47:19 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.585
  1520. 08/19/2021 10:47:30 AM - INFO - engine_base.py: Random Forest Classifier w/ Imputer:
  1521. 08/19/2021 10:47:30 AM - INFO - engine_base.py: Starting cross validation
  1522. 08/19/2021 10:47:30 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1523. 08/19/2021 10:47:30 AM - DEBUG - engine_base.py: Fold 0: starting training
  1524. 08/19/2021 10:47:30 AM - DEBUG - engine_base.py: Fold 0: finished training
  1525. 08/19/2021 10:47:30 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.289)
  1526. 08/19/2021 10:47:30 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1527. 08/19/2021 10:47:30 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.457
  1528. 08/19/2021 10:47:30 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1529. 08/19/2021 10:47:30 AM - DEBUG - engine_base.py: Fold 1: starting training
  1530. 08/19/2021 10:47:30 AM - DEBUG - engine_base.py: Fold 1: finished training
  1531. 08/19/2021 10:47:30 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.318)
  1532. 08/19/2021 10:47:30 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1533. 08/19/2021 10:47:30 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.463
  1534. 08/19/2021 10:47:30 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1535. 08/19/2021 10:47:30 AM - DEBUG - engine_base.py: Fold 2: starting training
  1536. 08/19/2021 10:47:30 AM - DEBUG - engine_base.py: Fold 2: finished training
  1537. 08/19/2021 10:47:30 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.339)
  1538. 08/19/2021 10:47:30 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1539. 08/19/2021 10:47:30 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.462
  1540. 08/19/2021 10:47:30 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.460
  1541. 08/19/2021 10:47:41 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  1542. 08/19/2021 10:47:41 AM - INFO - engine_base.py: Starting cross validation
  1543. 08/19/2021 10:47:41 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1544. 08/19/2021 10:47:41 AM - DEBUG - engine_base.py: Fold 0: starting training
  1545. 08/19/2021 10:47:41 AM - DEBUG - engine_base.py: Fold 0: finished training
  1546. 08/19/2021 10:47:41 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.340)
  1547. 08/19/2021 10:47:41 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1548. 08/19/2021 10:47:41 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.378
  1549. 08/19/2021 10:47:41 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1550. 08/19/2021 10:47:41 AM - DEBUG - engine_base.py: Fold 1: starting training
  1551. 08/19/2021 10:47:41 AM - DEBUG - engine_base.py: Fold 1: finished training
  1552. 08/19/2021 10:47:41 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.356)
  1553. 08/19/2021 10:47:41 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1554. 08/19/2021 10:47:41 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.392
  1555. 08/19/2021 10:47:41 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1556. 08/19/2021 10:47:41 AM - DEBUG - engine_base.py: Fold 2: starting training
  1557. 08/19/2021 10:47:41 AM - DEBUG - engine_base.py: Fold 2: finished training
  1558. 08/19/2021 10:47:41 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.362)
  1559. 08/19/2021 10:47:41 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1560. 08/19/2021 10:47:41 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.392
  1561. 08/19/2021 10:47:41 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.387
  1562. 08/19/2021 10:47:55 AM - INFO - engine_base.py: Logistic Regression Classifier w/ Imputer + Standard Scaler:
  1563. 08/19/2021 10:47:55 AM - INFO - engine_base.py: Starting cross validation
  1564. 08/19/2021 10:47:55 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1565. 08/19/2021 10:47:55 AM - DEBUG - engine_base.py: Fold 0: starting training
  1566. 08/19/2021 10:47:55 AM - DEBUG - engine_base.py: Fold 0: finished training
  1567. 08/19/2021 10:47:55 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.246)
  1568. 08/19/2021 10:47:55 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1569. 08/19/2021 10:47:55 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.560
  1570. 08/19/2021 10:47:55 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1571. 08/19/2021 10:47:55 AM - DEBUG - engine_base.py: Fold 1: starting training
  1572. 08/19/2021 10:47:55 AM - DEBUG - engine_base.py: Fold 1: finished training
  1573. 08/19/2021 10:47:55 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.216)
  1574. 08/19/2021 10:47:55 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1575. 08/19/2021 10:47:55 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.559
  1576. 08/19/2021 10:47:55 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1577. 08/19/2021 10:47:55 AM - DEBUG - engine_base.py: Fold 2: starting training
  1578. 08/19/2021 10:47:55 AM - DEBUG - engine_base.py: Fold 2: finished training
  1579. 08/19/2021 10:47:55 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.234)
  1580. 08/19/2021 10:47:55 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1581. 08/19/2021 10:47:55 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.556
  1582. 08/19/2021 10:47:55 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.558
  1583. 08/19/2021 10:49:10 AM - INFO - engine_base.py: XGBoost Classifier w/ Imputer:
  1584. 08/19/2021 10:49:10 AM - INFO - engine_base.py: Starting cross validation
  1585. 08/19/2021 10:49:10 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1586. 08/19/2021 10:49:10 AM - DEBUG - engine_base.py: Fold 0: starting training
  1587. 08/19/2021 10:49:10 AM - DEBUG - engine_base.py: Fold 0: finished training
  1588. 08/19/2021 10:49:10 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.261)
  1589. 08/19/2021 10:49:11 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1590. 08/19/2021 10:49:11 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.382
  1591. 08/19/2021 10:49:11 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1592. 08/19/2021 10:49:11 AM - DEBUG - engine_base.py: Fold 1: starting training
  1593. 08/19/2021 10:49:11 AM - DEBUG - engine_base.py: Fold 1: finished training
  1594. 08/19/2021 10:49:11 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.318)
  1595. 08/19/2021 10:49:11 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1596. 08/19/2021 10:49:11 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.401
  1597. 08/19/2021 10:49:11 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1598. 08/19/2021 10:49:11 AM - DEBUG - engine_base.py: Fold 2: starting training
  1599. 08/19/2021 10:49:11 AM - DEBUG - engine_base.py: Fold 2: finished training
  1600. 08/19/2021 10:49:11 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.409)
  1601. 08/19/2021 10:49:11 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1602. 08/19/2021 10:49:11 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.398
  1603. 08/19/2021 10:49:11 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.394
  1604. 08/19/2021 10:49:22 AM - INFO - engine_base.py: Extra Trees Classifier w/ Imputer:
  1605. 08/19/2021 10:49:22 AM - INFO - engine_base.py: Starting cross validation
  1606. 08/19/2021 10:49:22 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1607. 08/19/2021 10:49:22 AM - DEBUG - engine_base.py: Fold 0: starting training
  1608. 08/19/2021 10:49:22 AM - DEBUG - engine_base.py: Fold 0: finished training
  1609. 08/19/2021 10:49:22 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.293)
  1610. 08/19/2021 10:49:22 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1611. 08/19/2021 10:49:22 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.540
  1612. 08/19/2021 10:49:22 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1613. 08/19/2021 10:49:22 AM - DEBUG - engine_base.py: Fold 1: starting training
  1614. 08/19/2021 10:49:22 AM - DEBUG - engine_base.py: Fold 1: finished training
  1615. 08/19/2021 10:49:22 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.287)
  1616. 08/19/2021 10:49:22 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1617. 08/19/2021 10:49:22 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.545
  1618. 08/19/2021 10:49:22 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1619. 08/19/2021 10:49:22 AM - DEBUG - engine_base.py: Fold 2: starting training
  1620. 08/19/2021 10:49:22 AM - DEBUG - engine_base.py: Fold 2: finished training
  1621. 08/19/2021 10:49:22 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.294)
  1622. 08/19/2021 10:49:22 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1623. 08/19/2021 10:49:22 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.542
  1624. 08/19/2021 10:49:22 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.542
  1625. 08/19/2021 10:49:26 AM - INFO - engine_base.py: CatBoost Classifier w/ Imputer:
  1626. 08/19/2021 10:49:26 AM - INFO - engine_base.py: Starting cross validation
  1627. 08/19/2021 10:49:26 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1628. 08/19/2021 10:49:26 AM - DEBUG - engine_base.py: Fold 0: starting training
  1629. 08/19/2021 10:49:26 AM - DEBUG - engine_base.py: Fold 0: finished training
  1630. 08/19/2021 10:49:26 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.434)
  1631. 08/19/2021 10:49:26 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1632. 08/19/2021 10:49:26 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.630
  1633. 08/19/2021 10:49:26 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1634. 08/19/2021 10:49:26 AM - DEBUG - engine_base.py: Fold 1: starting training
  1635. 08/19/2021 10:49:26 AM - DEBUG - engine_base.py: Fold 1: finished training
  1636. 08/19/2021 10:49:26 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.444)
  1637. 08/19/2021 10:49:26 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1638. 08/19/2021 10:49:26 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.631
  1639. 08/19/2021 10:49:26 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1640. 08/19/2021 10:49:26 AM - DEBUG - engine_base.py: Fold 2: starting training
  1641. 08/19/2021 10:49:26 AM - DEBUG - engine_base.py: Fold 2: finished training
  1642. 08/19/2021 10:49:26 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.434)
  1643. 08/19/2021 10:49:26 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1644. 08/19/2021 10:49:26 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.626
  1645. 08/19/2021 10:49:26 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.629
  1646. 08/19/2021 10:49:27 AM - INFO - logger.py:
  1647. *****************************
  1648. 08/19/2021 10:49:27 AM - INFO - logger.py: * Evaluating Batch Number 2 *
  1649. 08/19/2021 10:49:27 AM - INFO - logger.py: *****************************
  1650. 08/19/2021 10:49:27 AM - INFO - logger.py:
  1651. 08/19/2021 10:49:34 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  1652. 08/19/2021 10:49:34 AM - INFO - engine_base.py: Starting cross validation
  1653. 08/19/2021 10:49:34 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1654. 08/19/2021 10:49:34 AM - DEBUG - engine_base.py: Fold 0: starting training
  1655. 08/19/2021 10:49:34 AM - DEBUG - engine_base.py: Fold 0: finished training
  1656. 08/19/2021 10:49:34 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.307)
  1657. 08/19/2021 10:49:34 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1658. 08/19/2021 10:49:34 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.485
  1659. 08/19/2021 10:49:34 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1660. 08/19/2021 10:49:34 AM - DEBUG - engine_base.py: Fold 1: starting training
  1661. 08/19/2021 10:49:34 AM - DEBUG - engine_base.py: Fold 1: finished training
  1662. 08/19/2021 10:49:34 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.325)
  1663. 08/19/2021 10:49:34 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1664. 08/19/2021 10:49:34 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.492
  1665. 08/19/2021 10:49:34 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1666. 08/19/2021 10:49:34 AM - DEBUG - engine_base.py: Fold 2: starting training
  1667. 08/19/2021 10:49:34 AM - DEBUG - engine_base.py: Fold 2: finished training
  1668. 08/19/2021 10:49:34 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.318)
  1669. 08/19/2021 10:49:34 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1670. 08/19/2021 10:49:34 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.487
  1671. 08/19/2021 10:49:34 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.488
  1672. 08/19/2021 10:49:42 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  1673. 08/19/2021 10:49:42 AM - INFO - engine_base.py: Starting cross validation
  1674. 08/19/2021 10:49:42 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1675. 08/19/2021 10:49:42 AM - DEBUG - engine_base.py: Fold 0: starting training
  1676. 08/19/2021 10:49:42 AM - DEBUG - engine_base.py: Fold 0: finished training
  1677. 08/19/2021 10:49:42 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.293)
  1678. 08/19/2021 10:49:42 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1679. 08/19/2021 10:49:42 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.522
  1680. 08/19/2021 10:49:42 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1681. 08/19/2021 10:49:42 AM - DEBUG - engine_base.py: Fold 1: starting training
  1682. 08/19/2021 10:49:42 AM - DEBUG - engine_base.py: Fold 1: finished training
  1683. 08/19/2021 10:49:42 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.249)
  1684. 08/19/2021 10:49:42 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1685. 08/19/2021 10:49:42 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.520
  1686. 08/19/2021 10:49:42 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1687. 08/19/2021 10:49:42 AM - DEBUG - engine_base.py: Fold 2: starting training
  1688. 08/19/2021 10:49:42 AM - DEBUG - engine_base.py: Fold 2: finished training
  1689. 08/19/2021 10:49:42 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.252)
  1690. 08/19/2021 10:49:42 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1691. 08/19/2021 10:49:42 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.523
  1692. 08/19/2021 10:49:42 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.522
  1693. 08/19/2021 10:49:51 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  1694. 08/19/2021 10:49:51 AM - INFO - engine_base.py: Starting cross validation
  1695. 08/19/2021 10:49:51 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1696. 08/19/2021 10:49:51 AM - DEBUG - engine_base.py: Fold 0: starting training
  1697. 08/19/2021 10:49:51 AM - DEBUG - engine_base.py: Fold 0: finished training
  1698. 08/19/2021 10:49:51 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.288)
  1699. 08/19/2021 10:49:51 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1700. 08/19/2021 10:49:51 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.491
  1701. 08/19/2021 10:49:51 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1702. 08/19/2021 10:49:51 AM - DEBUG - engine_base.py: Fold 1: starting training
  1703. 08/19/2021 10:49:51 AM - DEBUG - engine_base.py: Fold 1: finished training
  1704. 08/19/2021 10:49:51 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.290)
  1705. 08/19/2021 10:49:51 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1706. 08/19/2021 10:49:51 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.495
  1707. 08/19/2021 10:49:51 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1708. 08/19/2021 10:49:51 AM - DEBUG - engine_base.py: Fold 2: starting training
  1709. 08/19/2021 10:49:51 AM - DEBUG - engine_base.py: Fold 2: finished training
  1710. 08/19/2021 10:49:51 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.298)
  1711. 08/19/2021 10:49:51 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1712. 08/19/2021 10:49:51 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.493
  1713. 08/19/2021 10:49:51 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.493
  1714. 08/19/2021 10:50:04 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  1715. 08/19/2021 10:50:04 AM - INFO - engine_base.py: Starting cross validation
  1716. 08/19/2021 10:50:04 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1717. 08/19/2021 10:50:04 AM - DEBUG - engine_base.py: Fold 0: starting training
  1718. 08/19/2021 10:50:04 AM - DEBUG - engine_base.py: Fold 0: finished training
  1719. 08/19/2021 10:50:04 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.350)
  1720. 08/19/2021 10:50:04 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1721. 08/19/2021 10:50:04 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.579
  1722. 08/19/2021 10:50:04 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1723. 08/19/2021 10:50:04 AM - DEBUG - engine_base.py: Fold 1: starting training
  1724. 08/19/2021 10:50:04 AM - DEBUG - engine_base.py: Fold 1: finished training
  1725. 08/19/2021 10:50:04 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.495)
  1726. 08/19/2021 10:50:04 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1727. 08/19/2021 10:50:04 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.612
  1728. 08/19/2021 10:50:04 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1729. 08/19/2021 10:50:04 AM - DEBUG - engine_base.py: Fold 2: starting training
  1730. 08/19/2021 10:50:04 AM - DEBUG - engine_base.py: Fold 2: finished training
  1731. 08/19/2021 10:50:04 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.218)
  1732. 08/19/2021 10:50:04 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1733. 08/19/2021 10:50:04 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.601
  1734. 08/19/2021 10:50:04 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.597
  1735. 08/19/2021 10:50:15 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  1736. 08/19/2021 10:50:15 AM - INFO - engine_base.py: Starting cross validation
  1737. 08/19/2021 10:50:15 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1738. 08/19/2021 10:50:15 AM - DEBUG - engine_base.py: Fold 0: starting training
  1739. 08/19/2021 10:50:15 AM - DEBUG - engine_base.py: Fold 0: finished training
  1740. 08/19/2021 10:50:15 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.223)
  1741. 08/19/2021 10:50:15 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1742. 08/19/2021 10:50:15 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.390
  1743. 08/19/2021 10:50:15 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1744. 08/19/2021 10:50:15 AM - DEBUG - engine_base.py: Fold 1: starting training
  1745. 08/19/2021 10:50:15 AM - DEBUG - engine_base.py: Fold 1: finished training
  1746. 08/19/2021 10:50:15 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.339)
  1747. 08/19/2021 10:50:15 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1748. 08/19/2021 10:50:15 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.413
  1749. 08/19/2021 10:50:15 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1750. 08/19/2021 10:50:15 AM - DEBUG - engine_base.py: Fold 2: starting training
  1751. 08/19/2021 10:50:15 AM - DEBUG - engine_base.py: Fold 2: finished training
  1752. 08/19/2021 10:50:15 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.323)
  1753. 08/19/2021 10:50:15 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1754. 08/19/2021 10:50:15 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.420
  1755. 08/19/2021 10:50:15 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.408
  1756. 08/19/2021 10:50:15 AM - INFO - logger.py:
  1757. *****************************
  1758. 08/19/2021 10:50:15 AM - INFO - logger.py: * Evaluating Batch Number 3 *
  1759. 08/19/2021 10:50:15 AM - INFO - logger.py: *****************************
  1760. 08/19/2021 10:50:15 AM - INFO - logger.py:
  1761. 08/19/2021 10:52:23 AM - INFO - engine_base.py: XGBoost Classifier w/ Imputer:
  1762. 08/19/2021 10:52:23 AM - INFO - engine_base.py: Starting cross validation
  1763. 08/19/2021 10:52:23 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1764. 08/19/2021 10:52:23 AM - DEBUG - engine_base.py: Fold 0: starting training
  1765. 08/19/2021 10:52:23 AM - DEBUG - engine_base.py: Fold 0: finished training
  1766. 08/19/2021 10:52:23 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.272)
  1767. 08/19/2021 10:52:23 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1768. 08/19/2021 10:52:23 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.583
  1769. 08/19/2021 10:52:23 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1770. 08/19/2021 10:52:23 AM - DEBUG - engine_base.py: Fold 1: starting training
  1771. 08/19/2021 10:52:23 AM - DEBUG - engine_base.py: Fold 1: finished training
  1772. 08/19/2021 10:52:23 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.146)
  1773. 08/19/2021 10:52:23 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1774. 08/19/2021 10:52:23 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.655
  1775. 08/19/2021 10:52:23 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1776. 08/19/2021 10:52:23 AM - DEBUG - engine_base.py: Fold 2: starting training
  1777. 08/19/2021 10:52:23 AM - DEBUG - engine_base.py: Fold 2: finished training
  1778. 08/19/2021 10:52:23 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.327)
  1779. 08/19/2021 10:52:23 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1780. 08/19/2021 10:52:23 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.641
  1781. 08/19/2021 10:52:23 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.626
  1782. 08/19/2021 10:52:23 AM - INFO - automl_search.py:
  1783. Search finished after 05:23
  1784. 08/19/2021 10:52:29 AM - INFO - automl_search.py: Best pipeline: LightGBM Classifier w/ Imputer
  1785. 08/19/2021 10:52:29 AM - INFO - automl_search.py: Best pipeline Log Loss Binary: 0.387466
  1786. 08/19/2021 10:52:33 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1787. 08/19/2021 10:52:33 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1788. 08/19/2021 11:32:45 AM - INFO - automl_search.py: Generating pipelines to search over...
  1789. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1790. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1791. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1792. 08/19/2021 11:32:48 AM - DEBUG - automl_search.py: allowed_estimators set to ['Decision Tree Classifier', 'LightGBM Classifier', 'Extra Trees Classifier', 'Elastic Net Classifier', 'CatBoost Classifier', 'XGBoost Classifier', 'Random Forest Classifier', 'Logistic Regression Classifier']
  1793. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1794. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1795. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1796. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1797. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1798. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1799. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1800. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1801. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1802. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1803. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1804. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1805. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1806. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1807. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1808. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1809. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1810. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1811. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1812. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1813. 08/19/2021 11:32:48 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1814. 08/19/2021 11:32:49 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1815. 08/19/2021 11:32:49 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1816. 08/19/2021 11:32:49 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1817. 08/19/2021 11:32:49 AM - INFO - automl_search.py: 8 pipelines ready for search.
  1818. 08/19/2021 11:32:49 AM - DEBUG - automl_search.py: allowed_pipelines set to ['Decision Tree Classifier w/ Imputer', 'LightGBM Classifier w/ Imputer', 'Extra Trees Classifier w/ Imputer', 'Elastic Net Classifier w/ Imputer + Standard Scaler', 'CatBoost Classifier w/ Imputer', 'XGBoost Classifier w/ Imputer', 'Random Forest Classifier w/ Imputer', 'Logistic Regression Classifier w/ Imputer + Standard Scaler']
  1819. 08/19/2021 11:32:49 AM - DEBUG - automl_search.py: allowed_model_families set to [ModelFamily.CATBOOST, ModelFamily.XGBOOST, ModelFamily.RANDOM_FOREST, ModelFamily.DECISION_TREE, ModelFamily.LIGHTGBM, ModelFamily.LINEAR_MODEL, ModelFamily.EXTRA_TREES]
  1820. 08/19/2021 11:32:49 AM - INFO - logger.py:
  1821. *****************************
  1822. 08/19/2021 11:32:49 AM - INFO - logger.py: * Beginning pipeline search *
  1823. 08/19/2021 11:32:49 AM - INFO - logger.py: *****************************
  1824. 08/19/2021 11:32:49 AM - INFO - logger.py:
  1825. 08/19/2021 11:32:49 AM - INFO - automl_search.py: Optimizing for Log Loss Binary.
  1826. 08/19/2021 11:32:49 AM - INFO - automl_search.py: Lower score is better.
  1827. 08/19/2021 11:32:49 AM - INFO - automl_search.py: Using SequentialEngine to train and score pipelines.
  1828. 08/19/2021 11:32:49 AM - INFO - automl_search.py: Will stop searching for new pipelines after 300 seconds.
  1829. 08/19/2021 11:32:49 AM - INFO - automl_search.py: Allowed model families: catboost, xgboost, random_forest, decision_tree, lightgbm, linear_model, extra_trees
  1830. 08/19/2021 11:32:54 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1831. 08/19/2021 11:32:54 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1832. 08/19/2021 11:32:54 AM - INFO - automl_search.py: Evaluating Baseline Pipeline: Mode Baseline Binary Classification Pipeline
  1833. 08/19/2021 11:33:03 AM - INFO - engine_base.py: Mode Baseline Binary Classification Pipeline:
  1834. 08/19/2021 11:33:03 AM - INFO - engine_base.py: Starting cross validation
  1835. 08/19/2021 11:33:03 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1836. 08/19/2021 11:33:03 AM - DEBUG - engine_base.py: Fold 0: starting training
  1837. 08/19/2021 11:33:03 AM - DEBUG - engine_base.py: Fold 0: finished training
  1838. 08/19/2021 11:33:03 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.000)
  1839. 08/19/2021 11:33:03 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1840. 08/19/2021 11:33:03 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 9.393
  1841. 08/19/2021 11:33:03 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1842. 08/19/2021 11:33:03 AM - DEBUG - engine_base.py: Fold 1: starting training
  1843. 08/19/2021 11:33:03 AM - DEBUG - engine_base.py: Fold 1: finished training
  1844. 08/19/2021 11:33:03 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.000)
  1845. 08/19/2021 11:33:03 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1846. 08/19/2021 11:33:03 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 9.393
  1847. 08/19/2021 11:33:03 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1848. 08/19/2021 11:33:03 AM - DEBUG - engine_base.py: Fold 2: starting training
  1849. 08/19/2021 11:33:03 AM - DEBUG - engine_base.py: Fold 2: finished training
  1850. 08/19/2021 11:33:03 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.000)
  1851. 08/19/2021 11:33:03 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1852. 08/19/2021 11:33:03 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 9.401
  1853. 08/19/2021 11:33:03 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 9.396
  1854. 08/19/2021 11:33:04 AM - INFO - logger.py:
  1855. *****************************
  1856. 08/19/2021 11:33:04 AM - INFO - logger.py: * Evaluating Batch Number 1 *
  1857. 08/19/2021 11:33:04 AM - INFO - logger.py: *****************************
  1858. 08/19/2021 11:33:04 AM - INFO - logger.py:
  1859. 08/19/2021 11:33:20 AM - INFO - engine_base.py: Elastic Net Classifier w/ Imputer + Standard Scaler:
  1860. 08/19/2021 11:33:20 AM - INFO - engine_base.py: Starting cross validation
  1861. 08/19/2021 11:33:20 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1862. 08/19/2021 11:33:20 AM - DEBUG - engine_base.py: Fold 0: starting training
  1863. 08/19/2021 11:33:20 AM - DEBUG - engine_base.py: Fold 0: finished training
  1864. 08/19/2021 11:33:20 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.201)
  1865. 08/19/2021 11:33:20 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1866. 08/19/2021 11:33:20 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.562
  1867. 08/19/2021 11:33:20 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1868. 08/19/2021 11:33:20 AM - DEBUG - engine_base.py: Fold 1: starting training
  1869. 08/19/2021 11:33:20 AM - DEBUG - engine_base.py: Fold 1: finished training
  1870. 08/19/2021 11:33:20 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.240)
  1871. 08/19/2021 11:33:20 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1872. 08/19/2021 11:33:20 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.555
  1873. 08/19/2021 11:33:20 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1874. 08/19/2021 11:33:20 AM - DEBUG - engine_base.py: Fold 2: starting training
  1875. 08/19/2021 11:33:20 AM - DEBUG - engine_base.py: Fold 2: finished training
  1876. 08/19/2021 11:33:20 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.242)
  1877. 08/19/2021 11:33:20 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1878. 08/19/2021 11:33:20 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.559
  1879. 08/19/2021 11:33:20 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.559
  1880. 08/19/2021 11:33:27 AM - INFO - engine_base.py: Decision Tree Classifier w/ Imputer:
  1881. 08/19/2021 11:33:27 AM - INFO - engine_base.py: Starting cross validation
  1882. 08/19/2021 11:33:27 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1883. 08/19/2021 11:33:27 AM - DEBUG - engine_base.py: Fold 0: starting training
  1884. 08/19/2021 11:33:27 AM - DEBUG - engine_base.py: Fold 0: finished training
  1885. 08/19/2021 11:33:27 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.377)
  1886. 08/19/2021 11:33:27 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1887. 08/19/2021 11:33:27 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.637
  1888. 08/19/2021 11:33:27 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1889. 08/19/2021 11:33:27 AM - DEBUG - engine_base.py: Fold 1: starting training
  1890. 08/19/2021 11:33:27 AM - DEBUG - engine_base.py: Fold 1: finished training
  1891. 08/19/2021 11:33:27 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.250)
  1892. 08/19/2021 11:33:27 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1893. 08/19/2021 11:33:27 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.562
  1894. 08/19/2021 11:33:27 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1895. 08/19/2021 11:33:27 AM - DEBUG - engine_base.py: Fold 2: starting training
  1896. 08/19/2021 11:33:27 AM - DEBUG - engine_base.py: Fold 2: finished training
  1897. 08/19/2021 11:33:27 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (-0.000)
  1898. 08/19/2021 11:33:27 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1899. 08/19/2021 11:33:27 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.609
  1900. 08/19/2021 11:33:27 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.603
  1901. 08/19/2021 11:33:44 AM - INFO - engine_base.py: Random Forest Classifier w/ Imputer:
  1902. 08/19/2021 11:33:44 AM - INFO - engine_base.py: Starting cross validation
  1903. 08/19/2021 11:33:44 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1904. 08/19/2021 11:33:44 AM - DEBUG - engine_base.py: Fold 0: starting training
  1905. 08/19/2021 11:33:44 AM - DEBUG - engine_base.py: Fold 0: finished training
  1906. 08/19/2021 11:33:44 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.344)
  1907. 08/19/2021 11:33:44 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1908. 08/19/2021 11:33:44 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.466
  1909. 08/19/2021 11:33:44 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1910. 08/19/2021 11:33:44 AM - DEBUG - engine_base.py: Fold 1: starting training
  1911. 08/19/2021 11:33:44 AM - DEBUG - engine_base.py: Fold 1: finished training
  1912. 08/19/2021 11:33:44 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.326)
  1913. 08/19/2021 11:33:44 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1914. 08/19/2021 11:33:44 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.466
  1915. 08/19/2021 11:33:44 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1916. 08/19/2021 11:33:44 AM - DEBUG - engine_base.py: Fold 2: starting training
  1917. 08/19/2021 11:33:44 AM - DEBUG - engine_base.py: Fold 2: finished training
  1918. 08/19/2021 11:33:44 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.293)
  1919. 08/19/2021 11:33:44 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1920. 08/19/2021 11:33:44 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.462
  1921. 08/19/2021 11:33:44 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.464
  1922. 08/19/2021 11:45:08 AM - INFO - automl_search.py: Generating pipelines to search over...
  1923. 08/19/2021 11:45:10 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1924. 08/19/2021 11:45:10 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1925. 08/19/2021 11:45:10 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1926. 08/19/2021 11:45:10 AM - DEBUG - automl_search.py: allowed_estimators set to ['Decision Tree Classifier', 'LightGBM Classifier', 'Extra Trees Classifier', 'Elastic Net Classifier', 'CatBoost Classifier', 'XGBoost Classifier', 'Random Forest Classifier', 'Logistic Regression Classifier']
  1927. 08/19/2021 11:45:10 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1928. 08/19/2021 11:45:10 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1929. 08/19/2021 11:45:10 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1930. 08/19/2021 11:45:10 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1931. 08/19/2021 11:45:10 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1932. 08/19/2021 11:45:10 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1933. 08/19/2021 11:45:10 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1934. 08/19/2021 11:45:10 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1935. 08/19/2021 11:45:10 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1936. 08/19/2021 11:45:10 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1937. 08/19/2021 11:45:10 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1938. 08/19/2021 11:45:11 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1939. 08/19/2021 11:45:11 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1940. 08/19/2021 11:45:11 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1941. 08/19/2021 11:45:11 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1942. 08/19/2021 11:45:11 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1943. 08/19/2021 11:45:11 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1944. 08/19/2021 11:45:11 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1945. 08/19/2021 11:45:11 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1946. 08/19/2021 11:45:11 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1947. 08/19/2021 11:45:11 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1948. 08/19/2021 11:45:11 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1949. 08/19/2021 11:45:11 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1950. 08/19/2021 11:45:11 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1951. 08/19/2021 11:45:11 AM - INFO - automl_search.py: 8 pipelines ready for search.
  1952. 08/19/2021 11:45:11 AM - DEBUG - automl_search.py: allowed_pipelines set to ['Decision Tree Classifier w/ Imputer', 'LightGBM Classifier w/ Imputer', 'Extra Trees Classifier w/ Imputer', 'Elastic Net Classifier w/ Imputer + Standard Scaler', 'CatBoost Classifier w/ Imputer', 'XGBoost Classifier w/ Imputer', 'Random Forest Classifier w/ Imputer', 'Logistic Regression Classifier w/ Imputer + Standard Scaler']
  1953. 08/19/2021 11:45:11 AM - DEBUG - automl_search.py: allowed_model_families set to [ModelFamily.EXTRA_TREES, ModelFamily.RANDOM_FOREST, ModelFamily.LINEAR_MODEL, ModelFamily.LIGHTGBM, ModelFamily.CATBOOST, ModelFamily.XGBOOST, ModelFamily.DECISION_TREE]
  1954. 08/19/2021 11:45:11 AM - INFO - logger.py:
  1955. *****************************
  1956. 08/19/2021 11:45:11 AM - INFO - logger.py: * Beginning pipeline search *
  1957. 08/19/2021 11:45:11 AM - INFO - logger.py: *****************************
  1958. 08/19/2021 11:45:11 AM - INFO - logger.py:
  1959. 08/19/2021 11:45:11 AM - INFO - automl_search.py: Optimizing for Log Loss Binary.
  1960. 08/19/2021 11:45:11 AM - INFO - automl_search.py: Lower score is better.
  1961. 08/19/2021 11:45:11 AM - INFO - automl_search.py: Using SequentialEngine to train and score pipelines.
  1962. 08/19/2021 11:45:11 AM - INFO - automl_search.py: Will stop searching for new pipelines after 300 seconds.
  1963. 08/19/2021 11:45:11 AM - INFO - automl_search.py: Allowed model families: extra_trees, random_forest, linear_model, lightgbm, catboost, xgboost, decision_tree
  1964. 08/19/2021 11:45:13 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1965. 08/19/2021 11:45:13 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  1966. 08/19/2021 11:45:13 AM - INFO - automl_search.py: Evaluating Baseline Pipeline: Mode Baseline Binary Classification Pipeline
  1967. 08/19/2021 11:45:23 AM - INFO - engine_base.py: Mode Baseline Binary Classification Pipeline:
  1968. 08/19/2021 11:45:23 AM - INFO - engine_base.py: Starting cross validation
  1969. 08/19/2021 11:45:23 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1970. 08/19/2021 11:45:23 AM - DEBUG - engine_base.py: Fold 0: starting training
  1971. 08/19/2021 11:45:23 AM - DEBUG - engine_base.py: Fold 0: finished training
  1972. 08/19/2021 11:45:23 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.000)
  1973. 08/19/2021 11:45:23 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  1974. 08/19/2021 11:45:23 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 9.254
  1975. 08/19/2021 11:45:23 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  1976. 08/19/2021 11:45:23 AM - DEBUG - engine_base.py: Fold 1: starting training
  1977. 08/19/2021 11:45:23 AM - DEBUG - engine_base.py: Fold 1: finished training
  1978. 08/19/2021 11:45:23 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.000)
  1979. 08/19/2021 11:45:23 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  1980. 08/19/2021 11:45:23 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 9.254
  1981. 08/19/2021 11:45:23 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  1982. 08/19/2021 11:45:23 AM - DEBUG - engine_base.py: Fold 2: starting training
  1983. 08/19/2021 11:45:23 AM - DEBUG - engine_base.py: Fold 2: finished training
  1984. 08/19/2021 11:45:23 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.000)
  1985. 08/19/2021 11:45:23 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  1986. 08/19/2021 11:45:23 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 9.254
  1987. 08/19/2021 11:45:23 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 9.254
  1988. 08/19/2021 11:45:23 AM - INFO - logger.py:
  1989. *****************************
  1990. 08/19/2021 11:45:23 AM - INFO - logger.py: * Evaluating Batch Number 1 *
  1991. 08/19/2021 11:45:23 AM - INFO - logger.py: *****************************
  1992. 08/19/2021 11:45:23 AM - INFO - logger.py:
  1993. 08/19/2021 11:45:34 AM - INFO - engine_base.py: Elastic Net Classifier w/ Imputer + Standard Scaler:
  1994. 08/19/2021 11:45:34 AM - INFO - engine_base.py: Starting cross validation
  1995. 08/19/2021 11:45:34 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  1996. 08/19/2021 11:45:34 AM - DEBUG - engine_base.py: Fold 0: starting training
  1997. 08/19/2021 11:45:34 AM - DEBUG - engine_base.py: Fold 0: finished training
  1998. 08/19/2021 11:45:34 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.202)
  1999. 08/19/2021 11:45:34 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  2000. 08/19/2021 11:45:34 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.557
  2001. 08/19/2021 11:45:34 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  2002. 08/19/2021 11:45:34 AM - DEBUG - engine_base.py: Fold 1: starting training
  2003. 08/19/2021 11:45:34 AM - DEBUG - engine_base.py: Fold 1: finished training
  2004. 08/19/2021 11:45:34 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.258)
  2005. 08/19/2021 11:45:34 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  2006. 08/19/2021 11:45:34 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.551
  2007. 08/19/2021 11:45:34 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  2008. 08/19/2021 11:45:34 AM - DEBUG - engine_base.py: Fold 2: starting training
  2009. 08/19/2021 11:45:34 AM - DEBUG - engine_base.py: Fold 2: finished training
  2010. 08/19/2021 11:45:34 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.234)
  2011. 08/19/2021 11:45:34 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  2012. 08/19/2021 11:45:34 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.554
  2013. 08/19/2021 11:45:34 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.554
  2014. 08/19/2021 11:45:42 AM - INFO - engine_base.py: Decision Tree Classifier w/ Imputer:
  2015. 08/19/2021 11:45:42 AM - INFO - engine_base.py: Starting cross validation
  2016. 08/19/2021 11:45:42 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  2017. 08/19/2021 11:45:42 AM - DEBUG - engine_base.py: Fold 0: starting training
  2018. 08/19/2021 11:45:42 AM - DEBUG - engine_base.py: Fold 0: finished training
  2019. 08/19/2021 11:45:42 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.267)
  2020. 08/19/2021 11:45:42 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  2021. 08/19/2021 11:45:42 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.601
  2022. 08/19/2021 11:45:42 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  2023. 08/19/2021 11:45:42 AM - DEBUG - engine_base.py: Fold 1: starting training
  2024. 08/19/2021 11:45:42 AM - DEBUG - engine_base.py: Fold 1: finished training
  2025. 08/19/2021 11:45:42 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.255)
  2026. 08/19/2021 11:45:42 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  2027. 08/19/2021 11:45:42 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.635
  2028. 08/19/2021 11:45:42 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  2029. 08/19/2021 11:45:42 AM - DEBUG - engine_base.py: Fold 2: starting training
  2030. 08/19/2021 11:45:42 AM - DEBUG - engine_base.py: Fold 2: finished training
  2031. 08/19/2021 11:45:42 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (-0.000)
  2032. 08/19/2021 11:45:42 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  2033. 08/19/2021 11:45:42 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.662
  2034. 08/19/2021 11:45:42 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.633
  2035. 08/19/2021 11:46:01 AM - INFO - engine_base.py: Random Forest Classifier w/ Imputer:
  2036. 08/19/2021 11:46:01 AM - INFO - engine_base.py: Starting cross validation
  2037. 08/19/2021 11:46:01 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  2038. 08/19/2021 11:46:01 AM - DEBUG - engine_base.py: Fold 0: starting training
  2039. 08/19/2021 11:46:01 AM - DEBUG - engine_base.py: Fold 0: finished training
  2040. 08/19/2021 11:46:01 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.300)
  2041. 08/19/2021 11:46:01 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  2042. 08/19/2021 11:46:01 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.453
  2043. 08/19/2021 11:46:01 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  2044. 08/19/2021 11:46:01 AM - DEBUG - engine_base.py: Fold 1: starting training
  2045. 08/19/2021 11:46:01 AM - DEBUG - engine_base.py: Fold 1: finished training
  2046. 08/19/2021 11:46:01 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.305)
  2047. 08/19/2021 11:46:01 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  2048. 08/19/2021 11:46:01 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.457
  2049. 08/19/2021 11:46:01 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  2050. 08/19/2021 11:46:01 AM - DEBUG - engine_base.py: Fold 2: starting training
  2051. 08/19/2021 11:46:01 AM - DEBUG - engine_base.py: Fold 2: finished training
  2052. 08/19/2021 11:46:01 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.300)
  2053. 08/19/2021 11:46:01 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  2054. 08/19/2021 11:46:01 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.453
  2055. 08/19/2021 11:46:01 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.454
  2056. 08/19/2021 11:53:57 AM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  2057. 08/19/2021 11:53:57 AM - INFO - engine_base.py: Starting cross validation
  2058. 08/19/2021 11:53:57 AM - DEBUG - engine_base.py: Training and scoring on fold 0
  2059. 08/19/2021 11:53:57 AM - DEBUG - engine_base.py: Fold 0: starting training
  2060. 08/19/2021 11:53:57 AM - DEBUG - engine_base.py: Fold 0: finished training
  2061. 08/19/2021 11:53:57 AM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.374)
  2062. 08/19/2021 11:53:57 AM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  2063. 08/19/2021 11:53:57 AM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.385
  2064. 08/19/2021 11:53:57 AM - DEBUG - engine_base.py: Training and scoring on fold 1
  2065. 08/19/2021 11:53:57 AM - DEBUG - engine_base.py: Fold 1: starting training
  2066. 08/19/2021 11:53:57 AM - DEBUG - engine_base.py: Fold 1: finished training
  2067. 08/19/2021 11:53:57 AM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.318)
  2068. 08/19/2021 11:53:57 AM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  2069. 08/19/2021 11:53:57 AM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.384
  2070. 08/19/2021 11:53:57 AM - DEBUG - engine_base.py: Training and scoring on fold 2
  2071. 08/19/2021 11:53:57 AM - DEBUG - engine_base.py: Fold 2: starting training
  2072. 08/19/2021 11:53:57 AM - DEBUG - engine_base.py: Fold 2: finished training
  2073. 08/19/2021 11:53:57 AM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.346)
  2074. 08/19/2021 11:53:57 AM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  2075. 08/19/2021 11:53:57 AM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.392
  2076. 08/19/2021 11:53:57 AM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.387
  2077. 08/19/2021 11:53:58 AM - INFO - automl_search.py:
  2078. Search finished after 08:44
  2079. 08/19/2021 11:56:38 AM - INFO - automl_search.py: Best pipeline: LightGBM Classifier w/ Imputer
  2080. 08/19/2021 11:56:38 AM - INFO - automl_search.py: Best pipeline Log Loss Binary: 0.386912
  2081. 08/19/2021 11:59:07 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2082. 08/19/2021 11:59:07 AM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2083. 08/19/2021 02:18:39 PM - INFO - automl_search.py: Generating pipelines to search over...
  2084. 08/19/2021 02:18:45 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2085. 08/19/2021 02:18:46 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2086. 08/19/2021 02:18:46 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2087. 08/19/2021 02:18:46 PM - DEBUG - automl_search.py: allowed_estimators set to ['Decision Tree Classifier', 'LightGBM Classifier', 'Extra Trees Classifier', 'Elastic Net Classifier', 'CatBoost Classifier', 'XGBoost Classifier', 'Random Forest Classifier', 'Logistic Regression Classifier']
  2088. 08/19/2021 02:18:46 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2089. 08/19/2021 02:18:46 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2090. 08/19/2021 02:18:46 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2091. 08/19/2021 02:18:47 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2092. 08/19/2021 02:18:47 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2093. 08/19/2021 02:18:47 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2094. 08/19/2021 02:18:47 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2095. 08/19/2021 02:18:47 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2096. 08/19/2021 02:18:47 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2097. 08/19/2021 02:18:47 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2098. 08/19/2021 02:18:47 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2099. 08/19/2021 02:18:47 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2100. 08/19/2021 02:18:47 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2101. 08/19/2021 02:18:47 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2102. 08/19/2021 02:18:47 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2103. 08/19/2021 02:18:48 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2104. 08/19/2021 02:18:48 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2105. 08/19/2021 02:18:48 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2106. 08/19/2021 02:18:48 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2107. 08/19/2021 02:18:48 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2108. 08/19/2021 02:18:48 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2109. 08/19/2021 02:18:48 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2110. 08/19/2021 02:18:48 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2111. 08/19/2021 02:18:48 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2112. 08/19/2021 02:18:48 PM - INFO - automl_search.py: 8 pipelines ready for search.
  2113. 08/19/2021 02:18:48 PM - DEBUG - automl_search.py: allowed_pipelines set to ['Decision Tree Classifier w/ Imputer', 'LightGBM Classifier w/ Imputer', 'Extra Trees Classifier w/ Imputer', 'Elastic Net Classifier w/ Imputer + Standard Scaler', 'CatBoost Classifier w/ Imputer', 'XGBoost Classifier w/ Imputer', 'Random Forest Classifier w/ Imputer', 'Logistic Regression Classifier w/ Imputer + Standard Scaler']
  2114. 08/19/2021 02:18:48 PM - DEBUG - automl_search.py: allowed_model_families set to [ModelFamily.LINEAR_MODEL, ModelFamily.CATBOOST, ModelFamily.LIGHTGBM, ModelFamily.DECISION_TREE, ModelFamily.RANDOM_FOREST, ModelFamily.XGBOOST, ModelFamily.EXTRA_TREES]
  2115. 08/19/2021 02:18:50 PM - INFO - logger.py:
  2116. *****************************
  2117. 08/19/2021 02:18:50 PM - INFO - logger.py: * Beginning pipeline search *
  2118. 08/19/2021 02:18:50 PM - INFO - logger.py: *****************************
  2119. 08/19/2021 02:18:50 PM - INFO - logger.py:
  2120. 08/19/2021 02:18:50 PM - INFO - automl_search.py: Optimizing for Log Loss Binary.
  2121. 08/19/2021 02:18:50 PM - INFO - automl_search.py: Lower score is better.
  2122. 08/19/2021 02:18:50 PM - INFO - automl_search.py: Using SequentialEngine to train and score pipelines.
  2123. 08/19/2021 02:18:50 PM - INFO - automl_search.py: Will stop searching for new pipelines after 300 seconds.
  2124. 08/19/2021 02:18:50 PM - INFO - automl_search.py: Allowed model families: linear_model, catboost, lightgbm, decision_tree, random_forest, xgboost, extra_trees
  2125. 08/19/2021 02:18:58 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2126. 08/19/2021 02:19:00 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2127. 08/19/2021 02:19:00 PM - INFO - automl_search.py: Evaluating Baseline Pipeline: Mode Baseline Binary Classification Pipeline
  2128. 08/19/2021 02:19:19 PM - INFO - engine_base.py: Mode Baseline Binary Classification Pipeline:
  2129. 08/19/2021 02:19:19 PM - INFO - engine_base.py: Starting cross validation
  2130. 08/19/2021 02:19:19 PM - DEBUG - engine_base.py: Training and scoring on fold 0
  2131. 08/19/2021 02:19:19 PM - DEBUG - engine_base.py: Fold 0: starting training
  2132. 08/19/2021 02:19:19 PM - DEBUG - engine_base.py: Fold 0: finished training
  2133. 08/19/2021 02:19:19 PM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.000)
  2134. 08/19/2021 02:19:19 PM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  2135. 08/19/2021 02:19:19 PM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 9.193
  2136. 08/19/2021 02:19:19 PM - DEBUG - engine_base.py: Training and scoring on fold 1
  2137. 08/19/2021 02:19:19 PM - DEBUG - engine_base.py: Fold 1: starting training
  2138. 08/19/2021 02:19:19 PM - DEBUG - engine_base.py: Fold 1: finished training
  2139. 08/19/2021 02:19:19 PM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.000)
  2140. 08/19/2021 02:19:19 PM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  2141. 08/19/2021 02:19:19 PM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 9.184
  2142. 08/19/2021 02:19:19 PM - DEBUG - engine_base.py: Training and scoring on fold 2
  2143. 08/19/2021 02:19:19 PM - DEBUG - engine_base.py: Fold 2: starting training
  2144. 08/19/2021 02:19:19 PM - DEBUG - engine_base.py: Fold 2: finished training
  2145. 08/19/2021 02:19:19 PM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.000)
  2146. 08/19/2021 02:19:19 PM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  2147. 08/19/2021 02:19:19 PM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 9.184
  2148. 08/19/2021 02:19:19 PM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 9.187
  2149. 08/19/2021 02:19:19 PM - INFO - logger.py:
  2150. *****************************
  2151. 08/19/2021 02:19:19 PM - INFO - logger.py: * Evaluating Batch Number 1 *
  2152. 08/19/2021 02:19:19 PM - INFO - logger.py: *****************************
  2153. 08/19/2021 02:19:19 PM - INFO - logger.py:
  2154. 08/19/2021 02:19:41 PM - INFO - engine_base.py: Elastic Net Classifier w/ Imputer + Standard Scaler:
  2155. 08/19/2021 02:19:41 PM - INFO - engine_base.py: Starting cross validation
  2156. 08/19/2021 02:19:41 PM - DEBUG - engine_base.py: Training and scoring on fold 0
  2157. 08/19/2021 02:19:41 PM - DEBUG - engine_base.py: Fold 0: starting training
  2158. 08/19/2021 02:19:41 PM - DEBUG - engine_base.py: Fold 0: finished training
  2159. 08/19/2021 02:19:41 PM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.246)
  2160. 08/19/2021 02:19:41 PM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  2161. 08/19/2021 02:19:41 PM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.552
  2162. 08/19/2021 02:19:41 PM - DEBUG - engine_base.py: Training and scoring on fold 1
  2163. 08/19/2021 02:19:41 PM - DEBUG - engine_base.py: Fold 1: starting training
  2164. 08/19/2021 02:19:41 PM - DEBUG - engine_base.py: Fold 1: finished training
  2165. 08/19/2021 02:19:41 PM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.229)
  2166. 08/19/2021 02:19:41 PM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  2167. 08/19/2021 02:19:41 PM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.549
  2168. 08/19/2021 02:19:41 PM - DEBUG - engine_base.py: Training and scoring on fold 2
  2169. 08/19/2021 02:19:41 PM - DEBUG - engine_base.py: Fold 2: starting training
  2170. 08/19/2021 02:19:41 PM - DEBUG - engine_base.py: Fold 2: finished training
  2171. 08/19/2021 02:19:41 PM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.236)
  2172. 08/19/2021 02:19:41 PM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  2173. 08/19/2021 02:19:41 PM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.555
  2174. 08/19/2021 02:19:41 PM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.552
  2175. 08/19/2021 02:20:01 PM - INFO - engine_base.py: Decision Tree Classifier w/ Imputer:
  2176. 08/19/2021 02:20:01 PM - INFO - engine_base.py: Starting cross validation
  2177. 08/19/2021 02:20:01 PM - DEBUG - engine_base.py: Training and scoring on fold 0
  2178. 08/19/2021 02:20:01 PM - DEBUG - engine_base.py: Fold 0: starting training
  2179. 08/19/2021 02:20:01 PM - DEBUG - engine_base.py: Fold 0: finished training
  2180. 08/19/2021 02:20:01 PM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.455)
  2181. 08/19/2021 02:20:01 PM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  2182. 08/19/2021 02:20:01 PM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.632
  2183. 08/19/2021 02:20:01 PM - DEBUG - engine_base.py: Training and scoring on fold 1
  2184. 08/19/2021 02:20:01 PM - DEBUG - engine_base.py: Fold 1: starting training
  2185. 08/19/2021 02:20:01 PM - DEBUG - engine_base.py: Fold 1: finished training
  2186. 08/19/2021 02:20:01 PM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.370)
  2187. 08/19/2021 02:20:01 PM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  2188. 08/19/2021 02:20:01 PM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.551
  2189. 08/19/2021 02:20:01 PM - DEBUG - engine_base.py: Training and scoring on fold 2
  2190. 08/19/2021 02:20:01 PM - DEBUG - engine_base.py: Fold 2: starting training
  2191. 08/19/2021 02:20:01 PM - DEBUG - engine_base.py: Fold 2: finished training
  2192. 08/19/2021 02:20:01 PM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.310)
  2193. 08/19/2021 02:20:01 PM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  2194. 08/19/2021 02:20:01 PM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.561
  2195. 08/19/2021 02:20:01 PM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.581
  2196. 08/19/2021 02:20:33 PM - INFO - engine_base.py: Random Forest Classifier w/ Imputer:
  2197. 08/19/2021 02:20:33 PM - INFO - engine_base.py: Starting cross validation
  2198. 08/19/2021 02:20:33 PM - DEBUG - engine_base.py: Training and scoring on fold 0
  2199. 08/19/2021 02:20:33 PM - DEBUG - engine_base.py: Fold 0: starting training
  2200. 08/19/2021 02:20:33 PM - DEBUG - engine_base.py: Fold 0: finished training
  2201. 08/19/2021 02:20:33 PM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.339)
  2202. 08/19/2021 02:20:33 PM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  2203. 08/19/2021 02:20:33 PM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.451
  2204. 08/19/2021 02:20:33 PM - DEBUG - engine_base.py: Training and scoring on fold 1
  2205. 08/19/2021 02:20:33 PM - DEBUG - engine_base.py: Fold 1: starting training
  2206. 08/19/2021 02:20:33 PM - DEBUG - engine_base.py: Fold 1: finished training
  2207. 08/19/2021 02:20:33 PM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.307)
  2208. 08/19/2021 02:20:33 PM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  2209. 08/19/2021 02:20:33 PM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.456
  2210. 08/19/2021 02:20:33 PM - DEBUG - engine_base.py: Training and scoring on fold 2
  2211. 08/19/2021 02:20:33 PM - DEBUG - engine_base.py: Fold 2: starting training
  2212. 08/19/2021 02:20:33 PM - DEBUG - engine_base.py: Fold 2: finished training
  2213. 08/19/2021 02:20:33 PM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.326)
  2214. 08/19/2021 02:20:33 PM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  2215. 08/19/2021 02:20:33 PM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.468
  2216. 08/19/2021 02:20:33 PM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.458
  2217. 08/19/2021 02:30:15 PM - INFO - engine_base.py: LightGBM Classifier w/ Imputer:
  2218. 08/19/2021 02:30:15 PM - INFO - engine_base.py: Starting cross validation
  2219. 08/19/2021 02:30:15 PM - DEBUG - engine_base.py: Training and scoring on fold 0
  2220. 08/19/2021 02:30:15 PM - DEBUG - engine_base.py: Fold 0: starting training
  2221. 08/19/2021 02:30:15 PM - DEBUG - engine_base.py: Fold 0: finished training
  2222. 08/19/2021 02:30:15 PM - DEBUG - engine_base.py: Fold 0: Optimal threshold found (0.275)
  2223. 08/19/2021 02:30:15 PM - DEBUG - engine_base.py: Fold 0: Scoring trained pipeline
  2224. 08/19/2021 02:30:15 PM - DEBUG - engine_base.py: Fold 0: Log Loss Binary score: 0.373
  2225. 08/19/2021 02:30:15 PM - DEBUG - engine_base.py: Training and scoring on fold 1
  2226. 08/19/2021 02:30:15 PM - DEBUG - engine_base.py: Fold 1: starting training
  2227. 08/19/2021 02:30:15 PM - DEBUG - engine_base.py: Fold 1: finished training
  2228. 08/19/2021 02:30:15 PM - DEBUG - engine_base.py: Fold 1: Optimal threshold found (0.378)
  2229. 08/19/2021 02:30:15 PM - DEBUG - engine_base.py: Fold 1: Scoring trained pipeline
  2230. 08/19/2021 02:30:15 PM - DEBUG - engine_base.py: Fold 1: Log Loss Binary score: 0.389
  2231. 08/19/2021 02:30:15 PM - DEBUG - engine_base.py: Training and scoring on fold 2
  2232. 08/19/2021 02:30:15 PM - DEBUG - engine_base.py: Fold 2: starting training
  2233. 08/19/2021 02:30:15 PM - DEBUG - engine_base.py: Fold 2: finished training
  2234. 08/19/2021 02:30:15 PM - DEBUG - engine_base.py: Fold 2: Optimal threshold found (0.349)
  2235. 08/19/2021 02:30:15 PM - DEBUG - engine_base.py: Fold 2: Scoring trained pipeline
  2236. 08/19/2021 02:30:15 PM - DEBUG - engine_base.py: Fold 2: Log Loss Binary score: 0.408
  2237. 08/19/2021 02:30:15 PM - INFO - engine_base.py: Finished cross validation - mean Log Loss Binary: 0.390
  2238. 08/19/2021 02:30:15 PM - INFO - automl_search.py:
  2239. Search finished after 11:17
  2240. 08/19/2021 02:33:28 PM - INFO - automl_search.py: Best pipeline: LightGBM Classifier w/ Imputer
  2241. 08/19/2021 02:33:28 PM - INFO - automl_search.py: Best pipeline Log Loss Binary: 0.390168
  2242. 08/19/2021 02:36:32 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
  2243. 08/19/2021 02:36:32 PM - DEBUG - gen_utils.py: Could not import class ProphetRegressor in get_importable_subclasses
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...