File size: 34,970 Bytes
e995acb a544449 cb0f6db a544449 9e81ba8 a544449 8f51864 a544449 0bf8457 a544449 5260553 a544449 9e81ba8 a544449 |
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 |
---
library_name: sklearn
tags:
- sklearn
- skops
- tabular-classification
model_file: xgb_model_bayse_optimization_00000.bin
widget:
structuredData:
x0:
- 0.0
- 0.0
- 0.0
x1:
- -0.013130102556764
- -0.0372637768817788
- -0.0437512975647952
x10:
- -0.210343288606412
- -0.2645676373667471
- -0.4320033675395561
x100:
- 0.3055914201236762
- 0.2749533695843366
- 0.0146227287555109
x101:
- -0.1779805569832547
- 0.3166702746595787
- 0.0897392490238795
x102:
- -0.6199290593363975
- 0.263605623247874
- 0.1043622216492785
x103:
- -0.484609131305077
- 0.1812420002320204
- 0.1146404901245996
x104:
- -0.1167637196250342
- 0.0175725517567192
- 0.1693337108553046
x105:
- -0.0386911176613607
- -0.1914134356241646
- 0.2414830034842935
x106:
- -0.0037774384366609
- -0.2841459816220057
- 0.2531543904435971
x107:
- 0.2224600574419022
- -0.2194560897803638
- 0.1560676765745033
x108:
- 0.3975154372976333
- -0.1107260474182654
- -0.0188880963264521
x109:
- 0.4921335347749677
- -0.0543681951390513
- -0.1786048251587926
x11:
- -0.2009282587514972
- -0.2626555332418879
- -0.4715691559076779
x110:
- 0.6081920191514165
- -0.021638135608412
- -0.2219889034164007
x111:
- 0.5320599126089988
- 0.1485937358993873
- -0.0887959300522843
x112:
- 0.1654376215291777
- 0.5257339100955389
- 0.1991970019965936
x113:
- -0.2704263504130088
- 0.8231707506203423
- 0.5138046682651495
x114:
- -0.5854057582823121
- 0.6865461046302451
- 0.6746090501434051
x115:
- -0.620303934669455
- 0.2224634296527504
- 0.5784354440496442
x116:
- -0.3604742999833408
- -0.1683542578184585
- 0.2734671694235341
x117:
- -0.1829307029317961
- -0.3664850232969303
- -0.1019195779062441
x118:
- -0.3185541827663106
- -0.5309226462179144
- -0.4263655565880691
x119:
- -0.43858912035068
- -0.6831091654664722
- -0.6334993319027377
x12:
- -0.271286242070191
- -0.2838029711247422
- -0.5167682872738942
x120:
- -0.2753138033200905
- -0.6616032356097269
- -0.6874343625750573
x121:
- 0.0334067202192617
- -0.4172735633957228
- -0.5749774198222461
x122:
- 0.3501761508611797
- -0.1190185444539205
- -0.3343459685955326
x123:
- 0.6148591116852102
- 0.0616891987333384
- -0.0591704928823698
x124:
- 0.7047941120173723
- 0.1476326860808355
- 0.1523297029958573
x125:
- 0.5966248517784695
- 0.238348727849827
- 0.2485581202225144
x126:
- 0.3690233856633122
- 0.3122960730865828
- 0.2332977379751025
x127:
- 0.0611367038990824
- 0.3212127667928892
- 0.1523769210845628
x128:
- -0.2448204753725282
- 0.3368761808361433
- 0.0751211441825705
x129:
- -0.4429541840791633
- 0.3926889535307951
- 0.0632934227524325
x13:
- -0.2894230017124795
- -0.3439547342507602
- -0.5573396170788784
x130:
- -0.5193932798392247
- 0.3466037405927842
- 0.1319639590732829
x131:
- -0.4231745551580038
- 0.0972851311559295
- 0.2246170010178244
x132:
- -0.0839317354745668
- -0.2192301662792488
- 0.2418841468200383
x133:
- 0.302415999221744
- -0.3922876233965638
- 0.1329185709831141
x134:
- 0.3874391859453692
- -0.3813543061848053
- -0.0426963020314723
x135:
- 0.1134621790713895
- -0.2922971694620132
- -0.1728843474924591
x136:
- -0.2530372715554387
- -0.1637678641136978
- -0.1987494116331937
x137:
- -0.4352691798058032
- 0.0739284057412157
- -0.1392850556741538
x138:
- -0.2981255960585677
- 0.3507086113672494
- -0.0441569634195602
x139:
- 0.0925764580763737
- 0.3742595214423575
- 0.0410180766875207
x14:
- -0.2386556743401929
- -0.3336663120329479
- -0.5711478972189021
x140:
- 0.3933313740128881
- 0.0309024288409405
- 0.0794235707872205
x141:
- 0.2776423419777328
- -0.3372274344035947
- 0.0450145134242256
x142:
- -0.0563432952219321
- -0.3544402443896478
- -0.0653210012934299
x143:
- -0.1405518535916275
- -0.1042148760718671
- -0.2120006155003625
x144:
- -0.014212974482765
- 0.0690613519550229
- -0.3086897435687394
x145:
- -0.0115104034240586
- 0.0255313333042892
- -0.2627924804594303
x146:
- 0.0289257460802526
- -0.094971915505277
- -0.0473341726569996
x147:
- 0.3456986281275241
- -0.0582893022174922
- 0.2571550470381357
x148:
- 0.5120638701103652
- 0.2354966561865293
- 0.5026086179805038
x149:
- 0.1600613302797757
- 0.5341412549574736
- 0.5697029010790874
x15:
- -0.3438724608963448
- -0.3515607873285862
- -0.5268045414087037
x150:
- -0.2924451485189848
- 0.434049017761769
- 0.4352838936007032
x151:
- -0.4196608402390494
- -0.015840711853915
- 0.1726862447398541
x152:
- -0.3296111209551507
- -0.2753613879289424
- -0.0851661468337341
x153:
- -0.12590821916172
- -0.0732118500921634
- -0.2101811318133296
x154:
- 0.1521059730203104
- 0.2306767583568661
- -0.1670981406687517
x155:
- 0.2279586063040568
- 0.2102906522587823
- -0.0500034990825794
x156:
- 0.0290958013789074
- -0.1066441247375355
- -0.0063992517826932
x157:
- -0.1122850276486822
- -0.4032897893109888
- -0.1141293371569533
x158:
- -0.0924166940244928
- -0.4669848487261894
- -0.3220458217292081
x159:
- -0.1116845000912174
- -0.3351117336796295
- -0.4913005172507833
x16:
- -0.3368273125299442
- -0.3725017858165791
- -0.2981661158034927
x160:
- -0.0919890268446783
- -0.1633522861784279
- -0.4984550511334146
x161:
- 0.1719721842852195
- -0.0211425241332435
- -0.3214962805310634
x162:
- 0.4233669232834225
- 0.1153273005905147
- -0.0404894605639579
x163:
- 0.2379658163727268
- 0.2334065558140967
- 0.2351601938681233
x164:
- -0.2391319715204528
- 0.3026441985386845
- 0.4352229607790538
x165:
- -0.4819420026604121
- 0.3440121607154
- 0.539717498545079
x166:
- -0.3637701055990897
- 0.3556925992521863
- 0.5461912049343786
x167:
- -0.1338996456853114
- 0.2734870850885846
- 0.445883901780196
x168:
- 0.1229985175661451
- 0.0492447728457935
- 0.2422556821775038
x169:
- 0.316442838314819
- -0.2823019706414043
- -0.0154170235280688
x17:
- 0.2865018066643063
- 0.0257429155628199
- 0.2248691285269514
x170:
- 0.1405880192333436
- -0.5437933195427493
- -0.2369506290786413
x171:
- -0.2675432407022828
- -0.5034653110468245
- -0.3450579286603124
x172:
- -0.2568172643064971
- -0.1985855477626152
- -0.3346426955576149
x173:
- 0.2347440348233545
- 0.0444097889572201
- -0.2797077660354575
x174:
- 0.5311123960638265
- 0.0640617489260748
- -0.2667914744404763
x175:
- 0.3385165879509713
- -0.0088993746835236
- -0.3088670978028436
x176:
- -0.0142341812242583
- -0.0779732573728841
- -0.3265931581623822
x177:
- -0.2305441513827204
- -0.0867350453167633
- -0.2197389242006799
x178:
- -0.2016147751603464
- 0.113656291310484
- 0.0338446008538945
x179:
- 0.0068640353849946
- 0.4634387843337572
- 0.3362926669733296
x18:
- 1.0
- 0.7613157100390677
- 0.8144352666081836
x180:
- 0.0722688802762561
- 0.6056617060791964
- 0.5265159119069819
x181:
- -0.1754238516464608
- 0.3896879069428479
- 0.4965070112815283
x182:
- -0.4591535895990185
- 0.0245149826828904
- 0.2700291895441666
x183:
- -0.442481606417944
- -0.3171367734062589
- -0.0219232156503684
x184:
- -0.0481369966574823
- -0.5666188573952903
- -0.2441922424546556
x185:
- 0.4773028401363529
- -0.5868921638127342
- -0.3467611936592509
x186:
- 0.6146699779030509
- -0.3568938269630673
- -0.3573656606781709
x187:
- 0.1894975886365062
- -0.0846190437066232
- -0.3008573928906233
x188:
- -0.2267447884759935
- 0.0980672671950684
- -0.1635959970066829
x189:
- -0.1385284562892402
- 0.2574912087296845
- 0.0539041686686756
x19:
- 0.8079989494002089
- 1.0
- 1.0
x190:
- 0.2165149241611196
- 0.4154890941556797
- 0.292572517196367
x191:
- 0.4437912309641625
- 0.4701448071145573
- 0.4654072123941457
x192:
- 0.4237343798947619
- 0.3530975894984843
- 0.5105941211447775
x193:
- 0.1139485882329929
- 0.1157956412106527
- 0.419860966533371
x194:
- -0.3393553405355429
- -0.0976921237704087
- 0.2498957943514974
x195:
- -0.5747001584733152
- -0.1523374715759687
- 0.0974299043118993
x196:
- -0.5247418486015037
- -0.0428244423544051
- 0.0201415784931335
x197:
- -0.4807964177426924
- 0.1203427631255
- -0.0218865134171967
x198:
- -0.5618396714637403
- 0.1958333504699866
- -0.1164046102950491
x199:
- -0.5401347764214789
- 0.0485127103357422
- -0.2882025308847318
x2:
- -0.0448822598299484
- -0.0378602725831229
- -0.0851187047378867
x20:
- -0.033513369778664
- 0.4534465885321243
- 0.6267288156967095
x200:
- -0.1486884578600992
- -0.3190734691582296
- -0.4632447396545294
x201:
- 0.5282382149135854
- -0.650335073835729
- -0.5466325057779164
x202:
- 0.9509850766641488
- -0.68317178201042
- -0.5111457259402966
x203:
- 0.7187409269472568
- -0.4599161830500928
- -0.4006612492687009
x204:
- 0.2002026666440462
- -0.1789761112420054
- -0.2710337667084321
x205:
- 0.0497639758046013
- 0.0676117250163451
- -0.1476064717770484
x206:
- 0.2731617477803316
- 0.2320922719207888
- -0.0328578509705293
x207:
- 0.3314007311874392
- 0.2611948552714114
- 0.0642119772532892
x208:
- 0.0099083037396932
- 0.2070600093916404
- 0.1225211392659041
x209:
- -0.3084523431057206
- 0.159486320027428
- 0.1379021324970557
x21:
- -0.495396389844028
- -0.2166845695763892
- 0.0226426743800738
x210:
- -0.2869438429799129
- 0.1470819286107941
- 0.1479873691449549
x211:
- -0.1521787483027748
- 0.2390293512707497
- 0.2124979749355296
x212:
- -0.2246764006535208
- 0.4668807210204211
- 0.3571822179037398
x213:
- -0.3192874953285103
- 0.6065603145624234
- 0.5332944933264089
x214:
- -0.1702944041925058
- 0.4166234882438427
- 0.6429978780909967
x215:
- 0.026704891669013
- 0.0258397513850496
- 0.6187628666295932
x216:
- 0.0602907767768897
- -0.2562010497692102
- 0.4712834751856951
x217:
- 0.0693340860223511
- -0.3239175695911551
- 0.2522037186044323
x218:
- 0.1065314619505149
- -0.2571195844910472
- -0.0044036826076962
x219:
- 0.037439347888697
- -0.1931854716723579
- -0.2789930942606036
x22:
- -0.4369162195186591
- -0.4989475530200319
- -0.4284689626678544
x220:
- -0.0510770668216029
- -0.2723401735162646
- -0.5272524692414824
x221:
- 0.0339323302180721
- -0.4355801400583953
- -0.6809487611712756
x222:
- 0.2062382950107006
- -0.3979429709835734
- -0.6955858967547804
x223:
- 0.231919438669602
- -0.0687460608744282
- -0.5855635721567111
x224:
- 0.0676240581578372
- 0.2354428267279329
- -0.4050315860229034
x225:
- -0.100637485865327
- 0.2183175154192967
- -0.1995375666530263
x226:
- -0.1311313815803864
- 0.0069806377850864
- 0.0098126219654212
x227:
- -0.1527126824970648
- -0.0706380286545153
- 0.1982341863891343
x228:
- -0.2511824381990038
- 0.0672194273156023
- 0.3254592271105042
x229:
- -0.1405881387755079
- 0.2390462045722529
- 0.3717109276330197
x23:
- -0.352697282236004
- -0.4923408512131829
- -0.5889774851739138
x230:
- 0.2792274900042166
- 0.3205969215341095
- 0.3640892348105428
x231:
- 0.4860781493326424
- 0.3262503872906956
- 0.3422311993149213
x232:
- 0.1716909945082467
- 0.2212689407530889
- 0.3085613240009651
x233:
- -0.1732345313428425
- -0.0468429278922408
- 0.2341042145403279
x234:
- -0.1384407921831867
- -0.3430159094046595
- 0.1046352134385359
x235:
- -0.0198800356105173
- -0.438222429685395
- -0.0622732917938076
x236:
- -0.1257980447281959
- -0.2821482664679346
- -0.2385512327515027
x237:
- -0.2452813115372701
- -0.0258800283002495
- -0.393059714862442
x238:
- -0.1036914822815202
- 0.1451908854328674
- -0.4742497212059632
x239:
- 0.1568000650403417
- 0.1568695352619949
- -0.4191830418987511
x24:
- -0.2387040718913522
- -0.3823284876877276
- -0.4836376641842804
x240:
- 0.1846725620314129
- 0.1049845051610423
- -0.210168691831107
x241:
- -0.0354971766930304
- 0.1032468098982464
- 0.0792514136655562
x242:
- -0.1271327106368728
- 0.0892141372228925
- 0.3176605075529524
x243:
- 0.058067757978145
- -0.0208781820030423
- 0.4096381766439853
x244:
- 0.1770795865392483
- -0.105484355520357
- 0.353224783998687
x245:
- -0.0043522810262484
- -0.0492099186829902
- 0.2125633265027759
x246:
- -0.2513608701170664
- 0.0166974972978867
- 0.0639712296509976
x247:
- -0.2833443562764229
- -0.0221388291259303
- -0.0305259864317946
x248:
- -0.0976882949296467
- -0.0135696028775943
- -0.0453577889517253
x249:
- 0.144538863210663
- 0.156302863308766
- -0.016382070652302
x25:
- 0.1409794733975083
- -0.148043370680923
- -0.1927771834404343
x250:
- 0.259555336236521
- 0.2580923073082704
- -0.0175181989647474
x251:
- 0.1954969262140061
- 0.0265919315742739
- -0.0875949646188722
x252:
- 0.1095800639031724
- -0.3825398565518238
- -0.1897515028293678
x253:
- 0.1286054919604171
- -0.5415184635402452
- -0.2542080876175668
x254:
- 0.1848701379337315
- -0.3056615674986564
- -0.2509880251997995
x255:
- 0.1829839826028431
- 0.0436174353029756
- -0.2021680611451713
x256:
- 0.0768515143614957
- 0.2131773154486101
- -0.1249728549295382
x257:
- -0.1653786903979531
- 0.2116322263836998
- 4.127193090286495e-05
x258:
- -0.4295633297800921
- 0.2084999731719076
- 0.1774447760226001
x259:
- -0.4844639570357595
- 0.2718296277915147
- 0.3441240632084772
x26:
- 0.4951036858945605
- 0.2455579148673769
- 0.1472130203768193
x260:
- -0.3170543459471827
- 0.3144368673161002
- 0.4086042970626066
x261:
- -0.1657054766677963
- 0.2306832949083942
- 0.3330315397404275
x262:
- -0.1123785988599205
- 0.0495127606605875
- 0.1553376936370673
x263:
- 0.0389531219542548
- -0.0852553536362968
- -0.0492822494924016
x264:
- 0.343785569760593
- -0.1005903810859115
- -0.2049791561271367
x265:
- 0.5096959326057077
- -0.0838030762174205
- -0.254777071185669
x266:
- 0.3363732978805077
- -0.1588151007924865
- -0.1857877327083846
x267:
- 0.0312429535521236
- -0.3320388096324342
- -0.0487706956859283
x268:
- -0.1724396203610336
- -0.462278726331622
- 0.0683442348007837
x269:
- -0.287136849663601
- -0.3736370025528137
- 0.1047434193161178
x27:
- 0.3553568736751062
- 0.5315982970589197
- 0.3633326682359922
x270:
- -0.2595351088058004
- -0.0546608415037547
- 0.0605472300362366
x271:
- 0.017652395446017
- 0.2733601583666836
- -0.0282578178488835
x272:
- 0.288201318476302
- 0.3763064612751233
- -0.1221694213472889
x273:
- 0.2021008680970154
- 0.2602173709127443
- -0.1843922991122818
x274:
- -0.1040687078471381
- 0.1089810034350369
- -0.1891316323122805
x275:
- -0.298209694271556
- 0.0297928591296282
- -0.1387640947220503
x276:
- -0.3347166826587205
- -0.0106423498931556
- -0.0569767597717075
x277:
- -0.2170788741698603
- -0.0410250544241591
- 0.0366604210153231
x278:
- 0.1017994286850182
- -0.031343175104556
- 0.1285114686152217
x279:
- 0.3792445044621992
- 0.0146770813526555
- 0.1916067700609503
x28:
- -0.1174712848495924
- 0.3300702412067637
- 0.3417616170078387
x280:
- 0.3213322026999324
- 0.0362143499781324
- 0.1931424066318647
x281:
- 0.0997986205907869
- -0.0079910102594668
- 0.1333520935416483
x282:
- 0.0427204865370894
- -0.1087002896951139
- 0.0547921666611837
x283:
- 0.1105732271722605
- -0.2231936086081764
- -0.0040842726323415
x284:
- 0.1173755447650662
- -0.2843728454390113
- -0.0469879173114336
x285:
- 0.0513418811423189
- -0.2311455913967796
- -0.0994608621036284
x286:
- -0.0776145634980505
- -0.0531938770489249
- -0.1704848491502344
x287:
- -0.2628998292814414
- 0.1815255160650988
- -0.2401515241312134
x288:
- -0.3024612317747345
- 0.3460820874271649
- -0.2664440708308516
x289:
- -0.0373930100812555
- 0.3758729126646959
- -0.2093357543725844
x29:
- -0.3210607490468353
- -0.145350757736902
- 0.1454103629267805
x290:
- 0.2510247259391098
- 0.3402569570759872
- -0.0661064573777737
x291:
- 0.1727227269882455
- 0.272207513612963
- 0.1244306297835348
x292:
- -0.1365728372970551
- 0.0764088945282952
- 0.3114602768015153
x293:
- -0.236858906673135
- -0.2142394262401547
- 0.4473374073837042
x294:
- -0.0949040952502167
- -0.353114511918893
- 0.4916366756814945
x295:
- -0.0116292772448067
- -0.2240886254614282
- 0.4327953033605045
x296:
- -0.0379414188879135
- 0.023564578673124
- 0.2946582666226828
x297:
- -0.0070050315873747
- 0.2084312837932171
- 0.1101015405397084
x298:
- 0.0934680160482024
- 0.2037726852590853
- -0.0886875762829613
x299:
- 0.1782878927448851
- -0.0269766501233337
- -0.2578132282906458
x3:
- -0.0693358302346098
- -0.071117704229731
- -0.1290599285620453
x30:
- -0.1191665950344288
- -0.2751758784877089
- -0.0221943504574172
x300:
- 0.1999383622560085
- -0.2775620086196435
- -0.3577054199115906
x31:
- 0.1248921049683953
- -0.054147249473349
- -0.0304946916273777
x32:
- 0.3074289341707539
- 0.0994212841696518
- 0.0852755624740589
x33:
- 0.4959645272335234
- 0.2455775551035494
- 0.2420809493876036
x34:
- 0.4194350262040433
- 0.4961731381075894
- 0.3629871876436715
x35:
- 0.0107902965748468
- 0.4571388173422509
- 0.347456675399789
x36:
- -0.216110670084196
- 0.0289338291719758
- 0.161181956660739
x37:
- -0.1184405060751869
- -0.2625650927014508
- -0.0825365235219516
x38:
- -0.2070886567200662
- -0.2165397448899416
- -0.239909912947599
x39:
- -0.4995921610294927
- -0.1954009657128377
- -0.2720375524937649
x4:
- -0.0744465580407553
- -0.1124718911285359
- -0.1727938264988633
x40:
- -0.3827034292918304
- -0.3223379892219368
- -0.2156537867531672
x41:
- 0.1372838747173999
- -0.2917858840738835
- -0.1038002851064981
x42:
- 0.3491328449227069
- 0.0183350359775929
- 0.0388928729086348
x43:
- 0.1173005111311161
- 0.2835078010414762
- 0.1698181174987772
x44:
- 0.0286795095094112
- 0.2416291279172376
- 0.2395180998438624
x45:
- 0.177714723915483
- 0.1233628361736804
- 0.2204599556720209
x46:
- 0.0570795070267163
- 0.155122869980449
- 0.1019908411857817
x47:
- -0.2506915941562642
- 0.0610024317488423
- -0.1103187984961721
x48:
- -0.1667631218614175
- -0.2930132478761735
- -0.3415839901930546
x49:
- 0.1533066326592383
- -0.4402230707195312
- -0.4445877062287808
x5:
- -0.1000257183894814
- -0.1130030916918574
- -0.2139379101723679
x50:
- 0.185161198247526
- -0.1508501589029934
- -0.3230592943508312
x51:
- 0.1358980223460563
- 0.1753340616274505
- -0.0270460060041358
x52:
- 0.2499115563028478
- 0.3003011801146319
- 0.3034883227542618
x53:
- 0.1463580342661465
- 0.3516712576467417
- 0.5453083894548855
x54:
- -0.1184522942228122
- 0.3304802386293533
- 0.6436556704569057
x55:
- 0.0034939106419903
- 0.223938328592185
- 0.6052144071988311
x56:
- 0.2576038511072122
- 0.1701043956908904
- 0.450296215648524
x57:
- 0.0732681118221277
- 0.1244779775354716
- 0.1931115654972278
x58:
- -0.2485017547224711
- -0.0488771053462279
- -0.1113137039896085
x59:
- -0.3177355544548841
- -0.2330570202875752
- -0.3601477855923922
x6:
- -0.1379877416754586
- -0.1422040271897547
- -0.2582244954501528
x60:
- -0.3400769177703804
- -0.3007679951484147
- -0.4872346142926959
x61:
- -0.2991232566496449
- -0.3285786125069685
- -0.5134864521816901
x62:
- 0.0109720760336311
- -0.3495436881165142
- -0.4965161164864886
x63:
- 0.2516077240113669
- -0.299662888824013
- -0.4606073025152589
x64:
- 0.0961500740659044
- -0.1611034896160029
- -0.3768971697143707
x65:
- -0.1519204959888191
- 0.0329020230955674
- -0.2057089884088869
x66:
- -0.1370148135933296
- 0.1621540289676897
- 0.0399092006348235
x67:
- 0.1028340310162351
- 0.1285024647313296
- 0.2933116790755171
x68:
- 0.3058366531240773
- 0.1021946761553529
- 0.4920993205270609
x69:
- 0.2290666893464485
- 0.2567391176029215
- 0.6021529675395757
x7:
- -0.1397579903077487
- -0.1880295244745729
- -0.3021546937531442
x70:
- 0.0008450772359869
- 0.3862984965792541
- 0.6031931086413074
x71:
- 0.0279011904810872
- 0.2783693553396243
- 0.493168372847853
x72:
- 0.2714055454492201
- 0.0988454235409233
- 0.2951655088397751
x73:
- 0.2270299314037827
- 0.0324764572961691
- 0.0424913823281791
x74:
- -0.2398249262363333
- 0.0163738323929577
- -0.2304793630253777
x75:
- -0.6474151591346705
- -0.0678823025845206
- -0.4872267679712155
x76:
- -0.548288079271082
- -0.3155283192323549
- -0.6902010059902697
x77:
- -0.1576871460726581
- -0.6716703315093698
- -0.7935605620486068
x78:
- -0.0723310652767188
- -0.7559976654652095
- -0.742219913386833
x79:
- -0.2453781221510442
- -0.3446906642896691
- -0.5077806301918896
x8:
- -0.1523899684427481
- -0.1881035231015312
- -0.3427862107009545
x80:
- -0.0002589971811065
- 0.1324132021049026
- -0.1362458166498772
x81:
- 0.619310405123024
- 0.2266731463659703
- 0.2528299715660096
x82:
- 0.7966263624089649
- 0.1755817316983371
- 0.5343952196221745
x83:
- 0.4213692862392926
- 0.3479298950009487
- 0.658562485218289
x84:
- 0.1384232797178878
- 0.5756897164215118
- 0.6632442630838516
x85:
- 0.1472860927747486
- 0.5618913922427393
- 0.6107092078011443
x86:
- 0.1778063139933672
- 0.3805462093767623
- 0.5241551029476116
x87:
- 0.0546979150643701
- 0.2235510846104617
- 0.3822103456033429
x88:
- -0.278012145191086
- 0.0914559733920926
- 0.1639188287674686
x89:
- -0.6131868889165166
- -0.0872720191269462
- -0.0985874345354066
x9:
- -0.2053302166447158
- -0.2131620999845103
- -0.3876123114824097
x90:
- -0.5814501564381319
- -0.2815387690027177
- -0.3169002949200921
x91:
- -0.2897653103526833
- -0.3801222501432613
- -0.4114362258281492
x92:
- -0.142358780511407
- -0.3448000245349567
- -0.3814452704778858
x93:
- -0.1518920823047868
- -0.2903438854443278
- -0.3053492846739091
x94:
- -0.1438853230748354
- -0.3054291723020227
- -0.2703605660877289
x95:
- -0.0825669664123788
- -0.3027283784045821
- -0.2971723525315612
x96:
- 0.0896328938197741
- -0.2179465709954212
- -0.3343656547012192
x97:
- 0.320390262171177
- -0.1340516178654097
- -0.3222080774374629
x98:
- 0.4345954402831039
- -0.057088579929216
- -0.2420413734810701
x99:
- 0.4489098709933811
- 0.1028697923461384
- -0.1139231003917056
---
# Model description
[More Information Needed]
## Intended uses & limitations
[More Information Needed]
## Training Procedure
### Hyperparameters
The model is trained with below hyperparameters.
<details>
<summary> Click to expand </summary>
| Hyperparameter | Value |
|-------------------------|-----------------|
| objective | binary:logistic |
| use_label_encoder | True |
| base_score | 0.5 |
| booster | gbtree |
| colsample_bylevel | 1 |
| colsample_bynode | 1 |
| colsample_bytree | 1 |
| enable_categorical | False |
| gamma | 0 |
| gpu_id | -1 |
| importance_type | |
| interaction_constraints | |
| learning_rate | 0.300000012 |
| max_delta_step | 0 |
| max_depth | 6 |
| min_child_weight | 1 |
| missing | nan |
| monotone_constraints | () |
| n_estimators | 100 |
| n_jobs | 8 |
| num_parallel_tree | 1 |
| predictor | auto |
| random_state | 0 |
| reg_alpha | 0 |
| reg_lambda | 1 |
| scale_pos_weight | |
| subsample | 1 |
| tree_method | auto |
| validate_parameters | 1 |
| verbosity | |
</details>
### Model Plot
The model plot is below.
<style>#sk-f64fd6a0-a686-4957-adf1-8209c466f428 {color: black;background-color: white;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 pre{padding: 0;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-toggleable {background-color: white;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 label.sk-toggleable__label {cursor: pointer;display: block;width: 100%;margin-bottom: 0;padding: 0.3em;box-sizing: border-box;text-align: center;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 label.sk-toggleable__label-arrow:before {content: "▸";float: left;margin-right: 0.25em;color: #696969;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 label.sk-toggleable__label-arrow:hover:before {color: black;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-estimator:hover label.sk-toggleable__label-arrow:before {color: black;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-toggleable__content {max-height: 0;max-width: 0;overflow: hidden;text-align: left;background-color: #f0f8ff;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-toggleable__content pre {margin: 0.2em;color: black;border-radius: 0.25em;background-color: #f0f8ff;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 input.sk-toggleable__control:checked~div.sk-toggleable__content {max-height: 200px;max-width: 100%;overflow: auto;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 input.sk-toggleable__control:checked~label.sk-toggleable__label-arrow:before {content: "▾";}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-estimator input.sk-toggleable__control:checked~label.sk-toggleable__label {background-color: #d4ebff;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-label input.sk-toggleable__control:checked~label.sk-toggleable__label {background-color: #d4ebff;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 input.sk-hidden--visually {border: 0;clip: rect(1px 1px 1px 1px);clip: rect(1px, 1px, 1px, 1px);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-estimator {font-family: monospace;background-color: #f0f8ff;border: 1px dotted black;border-radius: 0.25em;box-sizing: border-box;margin-bottom: 0.5em;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-estimator:hover {background-color: #d4ebff;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-parallel-item::after {content: "";width: 100%;border-bottom: 1px solid gray;flex-grow: 1;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-label:hover label.sk-toggleable__label {background-color: #d4ebff;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-serial::before {content: "";position: absolute;border-left: 1px solid gray;box-sizing: border-box;top: 2em;bottom: 0;left: 50%;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-serial {display: flex;flex-direction: column;align-items: center;background-color: white;padding-right: 0.2em;padding-left: 0.2em;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-item {z-index: 1;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-parallel {display: flex;align-items: stretch;justify-content: center;background-color: white;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-parallel::before {content: "";position: absolute;border-left: 1px solid gray;box-sizing: border-box;top: 2em;bottom: 0;left: 50%;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-parallel-item {display: flex;flex-direction: column;position: relative;background-color: white;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-parallel-item:first-child::after {align-self: flex-end;width: 50%;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-parallel-item:last-child::after {align-self: flex-start;width: 50%;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-parallel-item:only-child::after {width: 0;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-dashed-wrapped {border: 1px dashed gray;margin: 0 0.4em 0.5em 0.4em;box-sizing: border-box;padding-bottom: 0.4em;background-color: white;position: relative;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-label label {font-family: monospace;font-weight: bold;background-color: white;display: inline-block;line-height: 1.2em;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-label-container {position: relative;z-index: 2;text-align: center;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-container {/* jupyter's `normalize.less` sets `[hidden] { display: none; }` but bootstrap.min.css set `[hidden] { display: none !important; }` so we also need the `!important` here to be able to override the default hidden behavior on the sphinx rendered scikit-learn.org. See: https://github.com/scikit-learn/scikit-learn/issues/21755 */display: inline-block !important;position: relative;}#sk-f64fd6a0-a686-4957-adf1-8209c466f428 div.sk-text-repr-fallback {display: none;}</style><div id="sk-f64fd6a0-a686-4957-adf1-8209c466f428" class="sk-top-container" style="overflow: auto;"><div class="sk-text-repr-fallback"><pre>XGBClassifier(base_score=0.5, booster='gbtree', colsample_bylevel=1,colsample_bynode=1, colsample_bytree=1, enable_categorical=False,gamma=0, gpu_id=-1, importance_type=None,interaction_constraints='', learning_rate=0.300000012,max_delta_step=0, max_depth=6, min_child_weight=1, missing=nan,monotone_constraints='()', n_estimators=100, n_jobs=8,num_parallel_tree=1, predictor='auto', random_state=0,reg_alpha=0, reg_lambda=1, scale_pos_weight=None, subsample=1,tree_method='auto', validate_parameters=1, verbosity=None)</pre><b>Please rerun this cell to show the HTML repr or trust the notebook.</b></div><div class="sk-container" hidden><div class="sk-item"><div class="sk-estimator sk-toggleable"><input class="sk-toggleable__control sk-hidden--visually" id="e5865982-53b6-475b-9bbf-6ee40514c813" type="checkbox" checked><label for="e5865982-53b6-475b-9bbf-6ee40514c813" class="sk-toggleable__label sk-toggleable__label-arrow">XGBClassifier</label><div class="sk-toggleable__content"><pre>XGBClassifier(base_score=0.5, booster='gbtree', colsample_bylevel=1,colsample_bynode=1, colsample_bytree=1, enable_categorical=False,gamma=0, gpu_id=-1, importance_type=None,interaction_constraints='', learning_rate=0.300000012,max_delta_step=0, max_depth=6, min_child_weight=1, missing=nan,monotone_constraints='()', n_estimators=100, n_jobs=8,num_parallel_tree=1, predictor='auto', random_state=0,reg_alpha=0, reg_lambda=1, scale_pos_weight=None, subsample=1,tree_method='auto', validate_parameters=1, verbosity=None)</pre></div></div></div></div></div>
## Evaluation Results
You can find the details about evaluation process and the evaluation results.
| Metric | Value |
|----------|---------|
# How to Get Started with the Model
Use the code below to get started with the model.
```python
import joblib
import json
import pandas as pd
clf = joblib.load(xgb_model_bayse_optimization_00000.bin)
with open("config.json") as f:
config = json.load(f)
clf.predict(pd.DataFrame.from_dict(config["sklearn"]["example_input"]))
```
# Model Card Authors
This model card is written by following authors:
[More Information Needed]
# Model Card Contact
You can contact the model card authors through following channels:
[More Information Needed]
# Citation
Below you can find information related to citation.
**BibTeX:**
```
[More Information Needed]
``` |