-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlgbm_grid_search_model.txt
2518 lines (2313 loc) · 260 KB
/
lgbm_grid_search_model.txt
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
tree
version=v3
num_class=1
num_tree_per_iteration=1
label_index=0
max_feature_idx=560
objective=binary sigmoid:1
feature_names=image_0 image_1 image_2 image_3 image_4 image_5 image_6 image_7 image_8 image_9 image_10 image_11 image_12 image_13 image_14 image_15 image_16 image_17 image_18 image_19 image_20 image_21 image_22 image_23 image_24 image_25 image_26 image_27 image_28 image_29 image_30 image_31 image_32 image_33 image_34 image_35 image_36 image_37 image_38 image_39 image_40 image_41 image_42 image_43 image_44 image_45 image_46 image_47 image_48 image_49 image_50 image_51 image_52 image_53 image_54 image_55 image_56 image_57 image_58 image_59 image_60 image_61 image_62 image_63 image_64 image_65 image_66 image_67 image_68 image_69 image_70 image_71 image_72 image_73 image_74 image_75 image_76 image_77 image_78 image_79 image_80 image_81 image_82 image_83 image_84 image_85 image_86 image_87 image_88 image_89 image_90 image_91 image_92 image_93 image_94 image_95 image_96 image_97 image_98 image_99 image_100 image_101 image_102 image_103 image_104 image_105 image_106 image_107 image_108 image_109 image_110 image_111 image_112 image_113 image_114 image_115 image_116 image_117 image_118 image_119 image_120 image_121 image_122 image_123 image_124 image_125 image_126 image_127 image_128 image_129 image_130 image_131 image_132 image_133 image_134 image_135 image_136 image_137 image_138 image_139 image_140 image_141 image_142 image_143 image_144 image_145 image_146 image_147 image_148 image_149 image_150 image_151 image_152 image_153 image_154 image_155 image_156 image_157 image_158 image_159 image_160 image_161 image_162 image_163 image_164 image_165 image_166 image_167 image_168 image_169 image_170 image_171 image_172 image_173 image_174 image_175 image_176 image_177 image_178 image_179 image_180 image_181 image_182 image_183 image_184 image_185 image_186 image_187 image_188 image_189 image_190 image_191 image_192 image_193 image_194 image_195 image_196 image_197 image_198 image_199 image_200 image_201 image_202 image_203 image_204 image_205 image_206 image_207 image_208 image_209 image_210 image_211 image_212 image_213 image_214 image_215 image_216 image_217 image_218 image_219 image_220 image_221 image_222 image_223 image_224 image_225 image_226 image_227 image_228 image_229 image_230 image_231 image_232 image_233 image_234 image_235 image_236 image_237 image_238 image_239 image_240 image_241 image_242 image_243 image_244 image_245 image_246 image_247 image_248 image_249 image_250 image_251 image_252 image_253 image_254 image_255 text_0 text_1 text_2 text_3 text_4 text_5 text_6 text_7 text_8 text_9 text_10 text_11 text_12 text_13 text_14 text_15 text_16 text_17 text_18 text_19 text_20 text_21 text_22 text_23 text_24 text_25 text_26 text_27 text_28 text_29 text_30 text_31 text_32 text_33 text_34 text_35 text_36 text_37 text_38 text_39 text_40 text_41 text_42 text_43 text_44 text_45 text_46 text_47 text_48 text_49 text_50 text_51 text_52 text_53 text_54 text_55 text_56 text_57 text_58 text_59 text_60 text_61 text_62 text_63 text_64 text_65 text_66 text_67 text_68 text_69 text_70 text_71 text_72 text_73 text_74 text_75 text_76 text_77 text_78 text_79 text_80 text_81 text_82 text_83 text_84 text_85 text_86 text_87 text_88 text_89 text_90 text_91 text_92 text_93 text_94 text_95 text_96 text_97 text_98 text_99 text_100 text_101 text_102 text_103 text_104 text_105 text_106 text_107 text_108 text_109 text_110 text_111 text_112 text_113 text_114 text_115 text_116 text_117 text_118 text_119 text_120 text_121 text_122 text_123 text_124 text_125 text_126 text_127 text_128 text_129 text_130 text_131 text_132 text_133 text_134 text_135 text_136 text_137 text_138 text_139 text_140 text_141 text_142 text_143 text_144 text_145 text_146 text_147 text_148 text_149 text_150 text_151 text_152 text_153 text_154 text_155 text_156 text_157 text_158 text_159 text_160 text_161 text_162 text_163 text_164 text_165 text_166 text_167 text_168 text_169 text_170 text_171 text_172 text_173 text_174 text_175 text_176 text_177 text_178 text_179 text_180 text_181 text_182 text_183 text_184 text_185 text_186 text_187 text_188 text_189 text_190 text_191 text_192 text_193 text_194 text_195 text_196 text_197 text_198 text_199 text_200 text_201 text_202 text_203 text_204 text_205 text_206 text_207 text_208 text_209 text_210 text_211 text_212 text_213 text_214 text_215 text_216 text_217 text_218 text_219 text_220 text_221 text_222 text_223 text_224 text_225 text_226 text_227 text_228 text_229 text_230 text_231 text_232 text_233 text_234 text_235 text_236 text_237 text_238 text_239 text_240 text_241 text_242 text_243 text_244 text_245 text_246 text_247 text_248 text_249 text_250 text_251 text_252 text_253 text_254 text_255 text_256 text_257 text_258 text_259 text_260 text_261 text_262 text_263 text_264 text_265 text_266 text_267 text_268 text_269 text_270 text_271 text_272 text_273 text_274 text_275 text_276 text_277 text_278 text_279 text_280 text_281 text_282 text_283 text_284 text_285 text_286 text_287 text_288 text_289 text_290 text_291 text_292 text_293 text_294 text_295 text_296 text_297 text_298 text_299 emotion_anger emotion_fear emotion_happy emotion_love emotion_sadness
feature_infos=[0.00057779439999999999:0.0051696742999999996] [0.010362497:0.65290517000000003] [0.0033261992999999998:0.21608669999999999] [0.0050435675999999999:0.048626540000000003] [0.00059087110000000001:0.33341019999999999] [0.00078120874:0.0041148570000000004] [0.0004529995:0.019620568000000001] [0.00099381300000000007:0.0123166265] [0.0072584357000000004:0.44924876000000002] [0.0053639114:0.055965029999999999] [0.010214796:1.3342049] [0.00022246171999999999:0.0075261392999999999] [0.0014034246999999999:0.037032432999999997] [0.00090713890000000002:0.011270250000000001] [0.0017307631:0.059514514999999997] [0.0093676060000000005:0.064243540000000002] [0.00016318222000000001:0.0075026219999999996] [0.0011613967000000001:0.044667114000000001] [0.0014375843000000001:0.0089860449999999998] [0.00038477580000000002:0.002869033] [0.0044842822999999997:0.10192627] [0.0094309019999999997:0.19897465] [0.04964698:0.76829742999999995] [0.00081505979999999998:0.0046162642999999998] [0.0057516959999999997:1.5792571] [0.01470396:0.80847274999999996] [0.019970453999999999:0.91236569999999995] [0.00080141383999999996:0.0090164530000000007] [0.0023556699000000002:0.017223143999999999] [0.0051958947000000002:0.52133536000000003] [0.0020339367999999999:0.071168499999999996] [0.024747855999999999:1.0294642000000001] [0.0057077426000000002:0.37021175000000001] [0.022521729000000001:0.28871599999999997] [0.053909185999999998:1.3372177000000001] [0.00029218465000000002:0.62447375000000005] [0.0050320299999999998:0.14687425000000001] [0.004139144:0.070570949999999993] [0.079623689999999997:2.4002933999999998] [0.0011498107:0.040863916] [0.014359553000000001:1.0341673] [0.0073483773000000002:0.29272737999999998] [0.0050299372999999996:0.73082009999999997] [0.00050822520000000002:0.0034304840000000001] [0.0077767386000000003:0.088555954000000006] [0.0025562984:0.035223382999999997] [0.00079658850000000005:0.0059124019999999998] [0.0014027909:0.057753342999999999] [0.0037715349999999999:0.022978407999999999] [0.006407098:0.30623913000000003] [0.0013904852:0.074828245000000002] [0.0026983593000000001:0.18795766] [0.0032745562000000001:0.87274669999999999] [0.019224346:0.6553274] [9.8997040000000004e-05:0.0015694108999999999] [0.00032043514999999999:0.0042727249999999998] [0.00027702253999999999:0.0061310156999999999] [0.013936481000000001:0.50152092999999998] [0.060391015999999999:2.5631135] [0.0016608686:0.012743285] [0.0013398151000000001:0.18594796999999999] [0.0011807827:0.017154628000000002] [0.00025152231999999998:0.0016959206000000001] [0.0010465309:0.018651608] [0.0088866970000000007:0.18600406] [0.0020969561000000001:1.0388609] [0.00068679549999999998:0.0039550999999999996] [0.0016267871:0.093312820000000005] [0.00019114507999999999:0.0021717716000000001] [0.0024118870000000001:0.089977874999999999] [0.0012036148:0.056731696999999998] [0.020761689999999999:0.16122575] [0.00016504433:0.0028444469999999999] [0.0010121279999999999:0.72949845000000002] [0.00049115590000000005:0.0070155219999999997] [0.0068259146:0.87473749999999995] [0.045726509999999998:0.9541674] [0.020836779999999999:0.45943929999999999] [0.00053475919999999995:0.0095311800000000002] [0.023552923999999999:0.20553087] [0.00095988192999999996:0.010771126000000001] [0.0021317240000000002:0.016783300000000001] [0.0043323514999999996:0.18775757000000001] [0.0072657223999999998:0.59294619999999998] [0.00023388721000000001:0.011967299000000001] [0.00079340056999999999:0.0046787529999999999] [0.0089617529999999994:0.11115738999999999] [0.0078464764999999995:0.17913696000000001] [0.0086904589999999993:0.51227725000000002] [0.0019190176000000001:0.10754950000000001] [0.002269999:0.031132724000000001] [0.0035615077:0.015998708] [0.0070451343999999999:0.063466739999999994] [0.00076009839999999999:0.0050739384999999998] [0.061405476000000001:2.0070079999999999] [0.0019584752:0.011479863999999999] [0.034399539999999999:0.6923494] [0.001457381:0.021065395000000001] [0.00054326386000000003:0.0032117249999999999] [0.0018439661999999999:0.029562464] [0.0024044076000000001:0.018219128000000001] [0.00020441854999999999:0.0028834892] [0.0035337221:0.96248739999999999] [0.00052162754999999996:0.034774425999999997] [0.0011100763999999999:0.0061249114000000004] [0.0010105167:0.0096484510000000006] [0.013569888:1.6595743999999999] [0.00039227713999999999:0.0028200019999999998] [0.0068467220000000004:0.2439509] [0.015086774000000001:2.0786614000000001] [0.0036795486000000001:0.022184329999999999] [0.014359252499999999:0.33691727999999999] [0.018937764999999999:0.67380519999999999] [0.00078093284000000003:0.051263652999999999] [0.0054951339999999996:0.029634049999999999] [0.00053570983999999999:1.0980357000000001] [0.035878769999999997:1.0075755] [0.00035515144999999999:0.0063928235000000003] [0.027864335:0.82628959999999996] [0.0011646866000000001:0.0099311669999999994] [0.0032244239:0.021241644] [0.00035932915999999999:0.0082947239999999998] [0.00024456340000000002:0.0013950167] [0.00099564579999999992:0.01366027] [0.0074978359999999999:0.26323518000000001] [0.00094678345999999998:0.017129947] [0.038101822:1.9605252] [0.0026847853:0.12659606000000001] [0.037096009999999999:1.6300205000000001] [0.034860604000000003:2.0726879999999999] [0.0085577369999999993:1.5751265999999999] [0.022666324000000002:1.2051122000000001] [0.025798560000000002:1.8468912] [0.044244266999999997:2.8132495999999998] [0.033864386000000003:1.521037] [0.052624657999999998:2.3543177000000002] [0.07893008:3.1712570000000002] [0.026730641999999999:2.6013253000000001] [0.11239534599999999:3.0170423999999998] [0.064299659999999995:2.7288966000000001] [0.0022076083999999999:2.1504788000000001] [0.045802124:2.8299875000000001] [0.047696860000000001:2.9616456000000002] [0.063995620000000003:1.7737973] [0.019475111999999999:1.7269334000000001] [0.015477263:1.6744934] [0.065471865000000004:1.8450580999999999] [0.023932226000000001:1.9629502000000001] [0.023029069999999999:1.5679358000000001] [0.040838149999999997:2.7898087999999999] [0.12767582999999999:1.7349414999999999] [0.00090095865999999995:1.9967824999999999] [0.068342953999999997:2.9249668] [0.044063999999999999:1.9940336000000001] [0.014863372999999999:2.8403923999999998] [0.00085559446999999996:2.7414972999999998] [0.014144131000000001:3.1576979999999999] [0.0058055570000000003:2.1993849999999999] [1.0328145999999999e-05:1.2404252] [0.050897657999999998:2.2550222999999998] [0.012075106:2.3609323999999998] [0.00034936510000000001:1.9517553999999999] [0.054904886:2.6047570000000002] [0.0056756847000000001:2.6235911999999999] [0.029979255:2.9249299] [0.0061606914000000004:2.6228950000000002] [0.026638687000000001:2.467114] [0.022794696999999999:2.5517821000000001] [0.0098062860000000009:2.7161222] [0.10968818:2.8819965999999999] [0.042689629999999999:2.7944555000000002] [0.031971513999999999:3.018907] [0.0069771735000000003:2.2023199999999998] [0.031707180000000001:3.2052266999999999] [0.113955:4.3102999999999998] [0.015037554:2.4412598999999999] [0.13612073999999999:2.6018520000000001] [0.072434604:3.3115025] [0.034330807999999997:3.119275] [0.0020871345999999998:2.1588137000000001] [0.079781359999999996:3.3253496] [0.018228802999999998:3.9221344] [0.0096749569999999997:1.9906051] [0.038803565999999998:2.7440199999999999] [0.027155760000000001:2.9625058000000002] [0.018492749999999999:2.640069] [0.0043173439999999999:2.1367652000000001] [0.0047565730000000001:3.3863382] [0.011494923000000001:3.2087514000000001] [0.043753260000000002:2.2533449999999999] [0.030657397999999999:2.2803469000000001] [0.0073933493999999997:1.8430333999999999] [0.021912520000000001:2.4784906000000002] [0.017345900000000001:2.5236800000000001] [0.025667130999999999:2.9724917] [0.022185610000000001:2.4549413000000002] [0.0071433744999999998:2.4564354000000002] [0.025781732000000002:3.1729835999999998] [0.025780316000000001:2.4400567999999998] [0.0095463939999999997:2.4830641999999998] [0.013298826:3.0357202999999999] [0.056123979999999997:3.1465413999999998] [0.072495970000000007:3.5486813000000001] [0.028541016999999998:2.7663774000000001] [0.020259734000000001:2.4168767999999998] [0.010113628:2.2284316999999998] [0.042392856999999999:3.3330549999999999] [0.013280729:2.1840703000000001] [0.032164579999999998:2.7230042999999999] [0.054125033000000003:2.163462] [0.103523664:2.5052013] [0.054070983000000003:3.5551480999999998] [0.021444958:2.8788228] [0.0076624984000000004:2.9078786000000001] [0.0235088:2.4627270000000001] [0.064068180000000002:3.7404397] [0:3.6846344000000002] [0.014023732000000001:3.5716510000000001] [0.14355615999999999:3.442431] [0.023983511999999998:2.8497333999999999] [0.067423369999999996:2.5304036000000001] [0.032821980000000001:3.2055289999999999] [0.10588023000000001:3.1229930000000001] [0.068941279999999994:2.8276203] [0.010488493:2.5823236000000001] [0.021822755999999999:3.2171113] [0.0085092029999999999:2.2692199] [0.034983575000000003:3.0178940000000001] [0.020854062999999999:2.0393384000000001] [0.027628786999999998:2.5682626000000002] [0.0010363777:3.0462866000000002] [0.078399339999999998:2.4499692999999998] [0.036613323000000003:2.6713517000000002] [0.081112660000000003:3.6305565999999998] [0.0023090758000000001:3.6191125] [0.053396593999999999:2.252313] [0.069928939999999995:2.7224347999999998] [0.055042426999999998:3.6037547999999999] [0.031006059999999998:2.4819114] [0.075544834000000005:3.1471342999999998] [0.0029199705000000002:3.2969583999999998] [0.067784055999999995:5.6585207000000004] [0.029111171000000002:2.1921382] [0.0015923809000000001:3.09945] [0.032314790000000003:1.967937] [0.008832688:1.8220657] [0.017263863000000001:2.6452195999999999] [0.015485416:2.0404859000000002] [0.078577309999999997:2.8003187] [0.037577144999999999:2.4385319999999999] [0.011235185:3.4603882000000001] [0.070009299999999997:2.9524879999999998] [0.043017329999999999:3.0367316999999998] [0.033628374000000003:3.2693455] [0.039937519999999997:3.733463] [0.069311750000000005:3.4710589999999999] [-0.079250379999999995:0.16356598] [-0.11091998:0.058278943999999999] [-0.096914680000000003:0.089561544000000007] [-0.040192097000000003:0.16020408] [-0.19285211999999999:0.13497047000000001] [-0.16072358:0.14720526] [-0.079114290000000004:0.108390875] [-0.058374339999999997:0.090974330000000006] [-0.12848572:0.092996754000000001] [-0.16086341000000001:0.044599662999999998] [-0.10198558000000001:0.11629865] [-0.093663159999999995:0.057508605999999997] [-0.081715640000000006:0.042913913999999997] [-0.068567550000000005:0.12844544999999999] [-0.10988732399999999:0.13103126000000001] [-0.13666328999999999:0.046714793999999997] [-0.12274500000000001:0.082174910000000004] [-0.10422706599999999:0.12364580999999999] [-0.11457498000000001:0.11381160999999999] [-0.039220089999999999:0.15087597] [-0.13287383:0.10225361600000001] [-0.12881239999999999:0.078934489999999996] [-0.061399160000000001:0.118199885] [-0.12849511:0.1178887] [-0.096737770000000001:0.10192245] [-0.082029179999999993:0.063306816000000002] [-0.075811370000000003:0.15560482] [-0.073166444999999997:0.11502322] [-0.18165322:0.12797621000000001] [-0.066485520000000006:0.11108571] [-0.123307735:0.13086106] [-0.20459042:0.033374973000000002] [-0.114425026:0.076824770000000001] [-0.1217816:0.098989779999999999] [-0.20898538999999999:0.1223312] [-0.067690520000000004:0.13605215000000001] [-0.093442865:0.080378920000000006] [-0.093741340000000006:0.13542993] [-0.092576935999999999:0.11800197] [-0.12079739:0.0679448] [-0.082821110000000003:0.13600838000000001] [-0.14343512:0.058752680000000002] [-0.14884567000000001:0.080151360000000005] [-0.11204056:0.15906791000000001] [-0.123051904:0.074219060000000003] [-0.2291456:0.085736670000000001] [-0.084312540000000005:0.097202540000000004] [-0.123096436:0.047241703000000003] [-0.086608669999999999:0.085694989999999999] [-0.10945249999999999:0.079852804999999999] [-0.042853995999999998:0.15684824] [-0.14094897000000001:0.067116019999999998] [-0.12240107:0.060036199999999998] [-0.16521295999999999:0.14523420000000001] [-0.074400649999999999:0.10678269999999999] [-0.12738487000000001:0.15917576999999999] [-0.17590079:0.10709900999999999] [-0.037710276000000001:0.10880376999999999] [-0.14197199999999999:0.12324184000000001] [-0.10401154999999999:0.074465885999999995] [-0.099988610000000006:0.087638914999999998] [-0.11651752:0.087657094000000005] [-0.091054364999999998:0.081775039999999993] [-0.084616839999999999:0.083809629999999996] [-0.092150523999999998:0.11466666] [-0.15577437999999999:0.099638389999999993] [-0.17087051:0.071088020000000002] [-0.050992474000000003:0.12495410999999999] [-0.039937769999999997:0.11124647] [-0.079791165999999997:0.080787300000000006] [-0.10475590999999999:0.14323685999999999] [-0.17564225:0.053094584] [-0.117648184:0.095317885000000005] [-0.097437560000000006:0.095629915999999995] [-0.091039499999999995:0.088648476000000004] [-0.079337759999999993:0.1388837] [-0.092862749999999994:0.109227635] [-0.20855534000000001:0.0022986149999999999] [-0.06899885:0.092430114999999993] [-0.068007979999999996:0.16254139000000001] [-0.068274795999999999:0.094289555999999997] [-0.19918962000000001:0.078203090000000003] [-0.071472960000000002:0.15620653000000001] [-0.113427795:0.11248311] [-0.086734500000000006:0.064571716000000001] [-0.075403300000000006:0.17505799999999999] [-0.14704292999999999:0.086966870000000002] [-0.21049301000000001:0.039129730000000001] [-0.11194343:0.094301819999999995] [-0.10953279:0.078623520000000002] [-0.093080200000000002:0.113617204] [-0.049053892000000002:0.12337951] [-0.14542875999999999:0.085075040000000005] [-0.091488175000000005:0.068879579999999996] [-0.18365961:0.16379568] [-0.85674289999999997:-0.034900031999999998] [-0.079366914999999996:0.077131549999999993] [-0.052425496000000002:0.120530955] [-0.054476876:0.15767682] [-0.090427270000000004:0.14791016000000001] [-0.23415743999999999:0.069476300000000005] [-0.14019844000000001:0.10870423] [-0.14066428:0.078453339999999996] [-0.096378684000000006:0.092131086000000001] [-0.075351760000000004:0.12440321999999999] [-0.091731850000000004:0.09018814] [-0.105937526:0.17644108999999999] [-0.10324071999999999:0.19173773999999999] [-0.19920766000000001:0.083050379999999993] [-0.068031474999999994:0.083728739999999996] [-0.10066377:0.139824] [-0.27466032000000001:0.065262219999999996] [-0.14214020999999999:0.10035395599999999] [-0.11306901:0.13147702999999999] [-0.076884284999999997:0.19406377999999999] [-0.075810630000000004:0.10279744] [-0.13938092999999999:0.13444655] [-0.09813827:0.083811670000000005] [-0.085735989999999998:0.096086679999999994] [-0.067340029999999995:0.062496564999999997] [-0.18648028:0.18358861000000001] [-0.10399120000000001:0.119209446] [-0.070721560000000003:0.085555844000000006] [-0.097073026000000007:0.10898239] [-0.090428599999999998:0.12100609] [-0.13962374999999999:0.049323667000000002] [-0.12218001000000001:0.088182269999999993] [-0.069506100000000001:0.21463667] [-0.13173169000000001:0.05255253] [-0.099803420000000004:0.073941569999999998] [-0.085625603999999994:0.084374144999999998] [-0.078163709999999997:0.12989333] [-0.10468434:0.11308248999999999] [-0.075488799999999995:0.085254460000000004] [-0.067647860000000004:0.21825436000000001] [-0.22509176:0.046208470000000001] [-0.081103019999999998:0.088146290000000002] [-0.12715620999999999:0.12858574] [-0.061213765000000003:0.12407461] [-0.077374520000000002:0.10340226] [-0.030961652999999999:0.22704600999999999] [-0.22446743:0.17226203000000001] [-0.1288907:0.087840050000000003] [-0.080469479999999996:0.116030514] [-0.13172022999999999:0.18527493] [-0.085668296000000005:0.093963735000000007] [-0.13787256000000001:0.055271345999999999] [-0.11586901500000001:0.085003209999999996] [-0.085504789999999997:0.09967993] [-0.11627648:0.080526619999999993] [-0.19135028000000001:0.077206289999999997] [-0.19892712000000001:0.063431799999999997] [-0.18597934999999999:0.20099573000000001] [-0.12105039500000001:0.081844139999999996] [-0.28731570000000001:0.16400969000000001] [-0.1164796:0.20874139999999999] [-0.07901764:0.14766779999999999] [-0.20766847999999999:0.077900045000000001] [-0.057941828000000001:0.079074439999999996] [-0.15575337:0.11217728] [-0.099679610000000002:0.19459908000000001] [-0.081085320000000002:0.16535436000000001] [-0.16698869:0.044955443999999997] [-0.056308758:0.11289356] [-0.15486005:0.10132877] [-0.1509993:0.13744102] [-0.079777749999999995:0.12279249] [-0.114035524:0.11977589] [-0.096379439999999997:0.069983770000000001] [-0.18974568:0.059996939999999999] [-0.057368424000000001:0.1656087] [-0.080612820000000002:0.069052749999999996] [-0.049399079999999998:0.23156509] [-0.11861916:0.058573159999999999] [-0.16947777999999999:0.062421682999999999] [-0.055060076999999999:0.11983006] [-0.076179449999999996:0.15964513999999999] [-0.17954938000000001:0.094106145000000002] [-0.112271436:0.061301120000000001] [-0.12408096:0.075704499999999994] [-0.052828338000000002:0.11931360000000001] [-0.093380409999999997:0.11837989] [-0.097558870000000006:0.092028244999999995] [-0.19508027:0.0067133046999999996] [-0.058542516000000003:0.10420295] [-0.13683672:0.11914872] [-0.087212689999999995:0.28808686] [-0.064082360000000005:0.20393438999999999] [-0.16280581:0.060482606000000001] [-0.17070268:0.087502730000000001] [-0.11853818000000001:0.13280232] [-0.12437934:0.12254298499999999] [-0.14105965000000001:0.091707860000000002] [-0.098929584000000001:0.18091452] [-0.13549120000000001:0.085269899999999996] [-0.088960330000000004:0.11832485] [-0.109623425:0.17407791] [-0.079080819999999996:0.1193367] [-0.094488890000000006:0.085042660000000006] [-0.15177748999999999:0.11146519000000001] [-0.23400360000000001:0.070420555999999995] [-0.088666209999999995:0.066120269999999995] [-0.10081045:0.068544893999999995] [-0.1495051:0.17055598] [-0.078096390000000002:0.14837491999999999] [-0.098202676000000003:0.109026074] [-0.10634591:0.069071986000000002] [-0.14937441000000001:0.065159074999999997] [-0.097852506000000006:0.12839223] [-0.083047904000000006:0.083945489999999998] [-0.15543659000000001:0.073889270000000007] [-0.29780867999999999:0.074241440000000006] [-0.10706024:0.13869092] [-0.057067993999999997:0.14964105] [-0.10127544400000001:0.091101550000000003] [-0.10044815:0.068294729999999998] [-0.11424653:0.052266985000000002] [-0.055796760000000001:0.17651612] [-0.13456766000000001:0.015740592000000001] [-0.13068135:0.096057359999999994] [-0.10465911:0.094574800000000001] [-0.11709747:0.14994386000000001] [-0.17923495:0.046819409999999999] [-0.13511841999999999:0.074488860000000004] [-0.12007846:0.082440529999999998] [-0.11049671:0.060332227000000002] [-0.14594309:0.18770501000000001] [-0.029293699999999999:0.60001689999999996] [-0.069689340000000002:0.098173280000000002] [-0.13620402000000001:0.098506179999999999] [-0.10177919000000001:0.10900496] [-0.06617547:0.17078689999999999] [-0.123794995:0.052182859999999998] [-0.092208139999999994:0.11343938000000001] [-0.11612686999999999:0.056443094999999999] [-0.116342:0.085946380000000003] [-0.16710486999999999:0.2555867] [-0.11638463:0.091342209999999993] [-0.166659:0.078787969999999999] [-0.068085893999999994:0.12223444] [-0.047102273:0.16851367] [-0.085498599999999994:0.11496378] [-0.12284353000000001:0.051785980000000002] [-0.16007407000000001:0.16342282] [-0.090839564999999997:0.11331157] [-0.064245570000000002:0.11198387999999999] [-0.15404147000000001:0.16114229999999999] [-0.044967755999999998:0.12122851599999999] [-0.077569700000000005:0.12827258] [-0.096604414:0.17936294999999999] [-0.076426709999999995:0.16210297000000001] [-0.15116663:0.051837213] [-0.16790711999999999:0.093915045000000003] [-0.15020262000000001:0.10686142999999999] [-0.12583162000000001:0.048327639999999998] [-0.024256476999999999:0.16323673999999999] [-0.095059395000000005:0.097914370000000001] [-0.037551094:0.19420965000000001] [-0.12875502999999999:0.10868899] [-0.104127675:0.078485620000000006] [-0.069943389999999994:0.12311659] [-0.14801049999999999:0.089152899999999993] [-0.078550389999999998:0.1006924] [-0.12131676:0.052693784] [-0.15184555999999999:0.096190269999999994] [-0.072383879999999998:0.105716825] [-0.109928966:0.11836461] [-0.10876312:0.12251049] [-0.06692091:0.10061846000000001] [-0.15146673999999999:0.098513043999999994] [-0.093484044000000002:0.06761557] [-0.12168624:0.087011729999999995] [-0.30568953999999998:0.013433169] [-0.12941061000000001:0.078451759999999995] [-0.15656391:0.089919959999999993] [-0.12225133000000001:0.10151479400000001] [-0.22589068000000001:0.042594224] [-0.12000406499999999:0.103985995] [-0.14625874:0.29028144] [-0.084976666000000006:0.062766336000000006] [-0.3398371:0.067809839999999996] [-0.065177693999999994:0.13571268] [-0.082321290000000005:0.1527249] [-0.16251019:0.23946377999999999] [-0.14159954999999999:0.11938971] [-0.12275622:0.12426627] [-0.15225069999999999:0.071601345999999996] [-0.12672646000000001:0.069078730000000005] [-0.110013865:0.081008319999999995] [-0.15760244000000001:0.070841126000000004] [-0.15685877000000001:0.10541237000000001] [-0.15199819000000001:0.073242509999999997] [-0.114272095:0.11193582000000001] [-0.07969205:0.103972204] [-0.14784452000000001:0.11207520999999999] [-0.085862315999999994:0.13470013] [-0.058975241999999997:0.093016065999999994] [-0.12962494999999999:0.10841244] [-0.11690757:0.059617110000000001] [-0.25633830000000002:0.13859600999999999] [0:1] [0:1] [0:1] none [0:1]
tree_sizes=2221 2231 2227 2221 2249 2244 2230 2232 2240 2219 2236 2230 2241 2235 2219 2246 2240 2241 2244 2233 2247 2254 2255 2255 2242 2274 2275 2282 2279 2286 2273 2282 2278 2271 2275 2277 2290 2273 2282 2288 2271 2289 2281 2293 2278 2297 2304 2297 2301 2313 2310 2335 2333 2333 2330 2334 2326 2330 2339 2337 2349 2340 2351 2324 2343 2336 2352 2351 2354 2352 2363 2362 2364 2344 2362 2377 2376 2371 2392 2387 2385 2394 2391 2385 2393 2401 2400 2389 2376 2390 2398 2401 2408 2413 2393 2409 2406 2414 2415 2434
Tree=0
num_leaves=20
num_cat=0
split_feature=533 115 142 186 280 427 75 364 408 172 517 216 85 10 530 363 3 456 421
split_gain=156.259 92.297 58.2082 37.3112 33.2817 27.9051 20.9563 20.0522 24.2262 19.909 19.2499 18.7281 18.2619 18.0575 16.914 16.9112 21.5078 15.1037 11.7412
threshold=-0.032004472999999999 0.071156262500000012 0.8759915250000001 0.14936788500000001 -0.010234430499999997 -0.019735379499999997 0.3666499250000001 -0.0092494904999999971 -0.013920103499999998 0.83572215000000016 -0.0091907294999999979 0.90357445000000014 0.0026185768500000006 0.3166566950000001 -0.045233239999999994 -0.019548160999999998 0.019855936000000005 0.018403553500000003 -0.014172780499999997
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=2 3 6 -2 5 -5 -1 8 11 17 15 -6 -11 14 -4 16 -3 -7 -17
right_child=1 10 13 4 7 9 -8 -9 -10 12 -12 -13 -14 -15 -16 18 -18 -19 -20
leaf_value=-1.4346947573700761 -0.42683504837367492 -1.4434834801466541 -0.47211525424267331 -0.35807621723927174 -1.2764977473916721 -1.3491002398938383 -0.67686716158969118 -1.3970985543813814 -1.385291482368403 -0.51054145149381935 -1.4667431675593852 -0.58286470364020815 -1.2931963206671704 -1.1673147682826455 -1.0155825399620126 -1.0155825399620126 -0.67686716158969107 -0.77554054912672599 -1.4852299133353999
leaf_weight=6.5018387138843554 2.9087173193693152 2.3954142630100277 14.030283540487295 2.7376163005828884 2.395414263010025 7.8706468641757947 1.8821112066507337 21.558728367090225 5.6463336199522001 3.9353234320878974 106.25373266637325 4.4486264884471893 1.7110101878643034 2.2243132442235938 2.7376163005828849 2.7376163005828866 3.7642224133014679 2.395414263010025 9.5816570520400965
leaf_count=38 17 14 82 16 14 46 11 126 33 23 621 26 10 13 16 16 22 14 56
internal_value=-1.27086 -1.33844 -0.825636 -1.12416 -1.16264 -0.947888 -1.26457 -1.28027 -1.07863 -1.04936 -1.43398 -0.825636 -0.74771 -0.631873 -0.560845 -1.24557 -0.974996 -1.21527 -1.38086
internal_weight=0 180.34 27.3762 55.6078 52.6991 18.65 8.38395 34.0491 12.4904 15.9124 124.733 6.84404 5.64633 18.9922 16.7679 18.4789 6.15964 10.2661 12.3193
internal_count=1214 1054 160 325 308 109 49 199 73 93 729 40 33 111 98 108 36 60 72
is_linear=0
shrinkage=1
Tree=1
num_leaves=20
num_cat=0
split_feature=115 280 417 364 386 398 417 56 388 553 71 136 259 89 382 268 214 169 103
split_gain=100.65 49.7431 26.2884 25.8918 24.0908 17.7731 16.8506 16.7151 19.1495 16.0392 15.3869 16.4047 16.2398 11.401 11.3866 15.6985 11.0938 12.1205 10.1714
threshold=0.13222501500000003 -0.011760257499999998 0.039179327000000007 -0.0092494904999999971 -0.012340231499999998 0.030267453500000003 0.072819640000000005 0.0024037858000000001 0.030350832000000005 -0.045238831999999993 0.048088826000000008 0.65788637000000005 0.087596015000000013 0.028257295500000005 0.018468656500000003 -0.021925018499999997 0.40566854500000005 0.81264752500000015 0.015326073500000001
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 4 7 14 9 -5 18 8 16 -1 11 -6 -12 -8 -4 -16 17 -3 -2
right_child=6 2 3 5 10 -7 13 -9 -10 -11 12 -13 -14 -15 15 -17 -18 -19 -20
leaf_value=-0.0050579098422257893 -0.20938347392153811 -0.16717688040245612 0.63135774946613987 -0.090759384962991282 0.50712688522425775 0.61657792195359162 -0.24624510349856404 -0.1921611779032627 0.43484537671297946 0.43858829146214068 -0.21302866121295594 -0.11456135128770494 0.3463776109435085 0.42161494237973041 0.49695283727021505 -0.18357231772531005 -0.14504920078120384 0.4685281422038749 0.074977050017893856
leaf_weight=3.7314027100801495 77.055984765291214 2.0288583189249101 4.9654623121023196 11.957316443324087 5.2340455502271679 1.6125444173812855 1.5252687484025944 25.072616532444954 4.137280359864234 25.781294211745262 7.8391368985176069 2.5129119902849197 2.823448047041893 3.101283848285675 3.274435743689537 2.3141881972551346 12.406082779169081 2.9354982227087021 5.383040562272071
leaf_count=21 499 12 24 73 26 10 10 154 21 121 46 14 14 16 16 13 75 16 33
internal_value=0 0.113189 0.00656551 0.176025 0.2705 -0.00670452 -0.169972 -0.0811976 0.0481581 0.382496 0.0909561 0.305467 -0.0648981 0.201437 0.410969 0.215155 -0.0439429 0.208725 -0.190816
internal_weight=0 118.627 70.7043 24.1239 47.9222 13.5699 87.0656 46.5803 21.5077 29.5127 18.4095 7.74696 10.6626 4.62655 10.5541 5.58862 17.3704 4.96436 82.439
internal_count=1214 656 414 136 242 83 558 278 124 142 100 40 60 26 53 29 103 28 532
is_linear=0
shrinkage=0.2
Tree=2
num_leaves=20
num_cat=0
split_feature=560 53 16 386 297 110 483 179 12 16 28 527 60 482 90 163 1 94 115
split_gain=71.5102 35.1678 21.7595 20.2716 19.1119 16.9862 14.3776 14.0864 13.5419 13.1761 12.4199 13.0075 11.4989 11.2944 11.2295 9.87843 9.9785 9.16578 8.38835
threshold=1.0000000180025095e-35 0.21301492000000002 0.0034597594000000003 -0.0081737129999999974 -0.021090785999999997 0.011985174500000003 0.016193561000000002 1.1247773500000002 0.0065006599500000003 0.0020840763000000003 0.0059965464000000012 0.0046105031500000013 0.035392967000000004 -0.036971409999999989 0.013787322500000003 0.3669410050000001 0.074061515000000008 0.19908717000000004 0.074535508000000014
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=2 4 18 9 8 6 -4 10 -2 -3 11 -5 13 -7 15 -10 -17 -11 -1
right_child=1 3 5 7 -6 12 -8 -9 14 17 -12 -13 -14 -15 -16 16 -18 -19 -20
leaf_value=-0.059789083947983636 -0.15288806160066351 -0.25717707676038953 0.28279129669209385 -0.13565507581789193 -0.18526904705485925 0.57667231222390258 -0.14848647292700765 0.57791704367430508 -0.03294856596525416 -0.041491705642837884 -0.25636684538477733 0.4120390319205578 -0.23929767624636433 0.090178830665006482 -0.15315452282694925 -0.12995758093151286 0.39678550050630174 0.36533862908040926 -0.2227062781311272
leaf_weight=16.420304656028748 6.9078233093023327 1.5594201534986485 3.6804672181606319 3.4467538744211179 16.343734011054039 3.9902136325836177 19.336493730545044 1.6645880341529835 4.0101632922887864 2.379717528820037 5.8121702075004578 3.4916096925735474 1.6424449384212492 3.6594334393739687 3.5134029090404502 1.6564785391092289 10.934951737523077 32.031838357448578 54.934236317873001
leaf_count=95 44 10 19 23 108 19 130 10 24 13 37 17 12 20 22 11 53 146 401
internal_value=0 0.11749 -0.123557 0.23113 -0.0145452 0.012616 -0.0795241 0.0307355 0.0887107 0.311437 -0.0406993 0.139962 0.240852 0.343944 0.17168 0.240424 0.327489 0.337204 -0.185215
internal_weight=0 93.7527 103.664 50.3861 43.3666 32.3091 23.017 14.4151 27.0228 35.971 12.7505 6.93836 9.29209 7.64965 20.115 16.6016 12.5914 34.4116 71.3545
internal_count=1214 518 696 256 262 200 149 87 154 169 77 40 51 39 110 88 64 159 496
is_linear=0
shrinkage=0.2
Tree=3
num_leaves=20
num_cat=0
split_feature=115 552 533 246 176 142 136 260 34 220 470 547 255 107 15 251 240 141 517
split_gain=51.6091 23.7177 15.6779 13.4435 11.7499 10.9007 14.6145 9.52333 9.34086 10.5046 9.57425 8.9532 8.71508 8.64701 8.27418 8.21514 7.92596 7.61346 6.86424
threshold=0.13344489000000001 0.014636122000000001 -0.019219093999999996 1.0325138500000002 0.67041875000000017 1.0713691500000002 0.65461143000000022 -0.0034708242999999996 0.42681199500000006 1.1812124000000004 -0.018775962999999996 0.00026645056000000004 1.1914332000000003 0.0016485033500000001 0.018343354500000002 1.0915379500000002 1.0318480500000002 0.79226833500000005 -0.0085770354999999982
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 4 14 8 7 -2 16 -1 -4 10 15 -5 -13 -9 -3 -10 -7 -15 -6
right_child=5 2 3 11 18 6 -8 13 9 -11 -12 12 -14 17 -16 -17 -18 -19 -20
leaf_value=-0.15763784692780122 -0.18384948603025481 -0.10663110949370976 -0.19447628318235718 0.36938870174324823 0.07455462768395027 0.46547236854061941 -0.18515155149855911 -0.098853017357637935 0.40046575939337281 0.3846447437226117 -0.1671484130146777 -0.21525947346424812 0.25111094528725364 0.44499034667822557 0.27551444783508139 -0.14023215080204474 0.0033380210215900466 0.018317736085545322 -0.15258403695983075
leaf_weight=3.8752877786755571 57.005199283361435 2.4522209763526908 8.9664932042360324 7.1843764707446081 6.7005539014935485 3.1660024374723417 6.4784419164061546 2.7190555110573733 2.9858669340610478 3.203394189476966 7.2847408652305612 2.8670038282871246 3.6346932575106621 5.4797336459159851 29.900790594518185 1.8025496602058408 2.7950223982334137 2.4079103842377663 25.866697452962399
leaf_count=27 470 12 60 34 37 15 50 17 14 15 52 17 19 25 135 12 18 14 171
internal_value=0 0.0706998 0.144272 0.0570305 -0.0392021 -0.146834 0.0227922 0.110679 -0.0324329 0.0626776 -0.0227505 0.215503 0.0454591 0.208712 0.246549 0.196926 0.248785 0.314737 -0.105851
internal_weight=0 117.331 70.2821 37.9291 47.0492 69.4447 12.4395 14.482 24.243 15.2766 12.0732 13.6861 6.5017 10.6067 32.353 4.78842 5.96102 7.88764 32.5673
internal_count=1214 661 370 223 291 553 83 83 153 93 78 70 36 56 147 26 33 39 208
is_linear=0
shrinkage=0.2
Tree=4
num_leaves=20
num_cat=0
split_feature=560 533 142 276 36 451 246 324 140 296 402 384 58 446 341 517 507 114 120
split_gain=39.0785 17.328 15.1441 12.7417 10.6644 11.0051 10.5508 10.4194 11.6607 9.96782 9.93646 8.92336 7.68958 7.3626 7.34236 7.01093 6.4104 6.39859 8.4913
threshold=1.0000000180025095e-35 -0.017950117499999998 0.81380830000000015 0.017655131500000004 0.066181723000000012 0.0044870540000000016 1.0265472500000004 0.032762834500000011 0.79462708000000004 0.0078409225000000016 0.0026699997000000004 0.00065906575000000006 0.62233415000000014 -0.022863707999999996 0.047328613000000012 0.0063851143000000004 -0.064105594999999987 0.017640664000000004 0.011264234000000003
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=2 4 -1 6 12 -6 14 17 15 -5 11 -8 -2 -7 -3 16 -9 -4 -19
right_child=1 3 7 9 5 13 10 8 -10 -11 -12 -13 -14 -15 -16 -17 -18 18 -20
leaf_value=-0.18717007490494528 0.2615569767432025 -0.15986555708750838 -0.19749624209265992 -0.17320388523400798 0.33930522076745229 0.15525912481771031 0.3301864454981297 -0.052301005277570124 -0.15609412045597551 0.35749182992574874 -0.12774775084958634 -0.16840324630327683 -0.087820641115539944 -0.26090071577529877 0.24142925754769884 -0.00012635173871521996 0.40109902668472169 -0.086289225922343671 0.32848440267186618
leaf_weight=44.515553191304207 29.481599278748035 22.679805323481563 13.364243425428869 1.8586638793349255 2.7977946549653989 2.5354358702898026 6.7186038941144925 1.5448141172528265 5.1243315711617461 5.9401106238365173 5.164924442768096 1.8260736539959905 2.7553415372967711 5.1636813953518867 1.9832446798682202 4.4104353561997405 6.4773571565747279 8.8049418181180936 2.5449357181787482
leaf_count=401 139 174 104 14 12 11 31 10 45 30 35 13 18 28 13 31 31 61 13
internal_value=0 0.0829047 -0.105758 -0.00204077 0.174683 -0.000405099 -0.049406 -0.0200221 0.0977865 0.231012 0.0912549 0.223633 0.231695 -0.123853 -0.127596 0.202428 0.313789 -0.103713 0.00671374
internal_weight=0 88.9053 86.7866 46.1714 42.7339 10.4969 38.3727 42.2711 17.5569 7.79877 13.7096 8.54468 32.2369 7.69912 24.6631 12.4326 8.02217 24.7141 11.3499
internal_count=1214 518 696 310 208 51 266 295 117 44 79 44 157 39 187 72 41 178 74
is_linear=0
shrinkage=0.2
Tree=5
num_leaves=20
num_cat=0
split_feature=115 552 37 386 220 512 16 444 204 364 295 336 246 179 102 302 491 320 486
split_gain=29.5062 13.1139 10.5064 9.46068 9.40865 9.07184 12.8384 9.16357 8.42825 8.23199 8.09136 7.59366 7.49902 7.07064 5.97005 5.78128 5.47173 5.39774 8.51536
threshold=0.13344489000000001 0.014521770250000001 0.030495385500000003 -0.0093681599999999986 0.58457787500000002 -0.016252323999999995 0.0033941886000000004 -0.0048028731499999994 1.1321862000000003 -0.0097533984999999979 -0.0038431203999999999 0.040819620000000008 0.81065982000000014 1.1247773500000002 0.060917549000000008 -0.011683265499999998 -0.020927253999999996 -0.023316467999999996 0.013313439500000001
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 9 3 8 -5 6 -2 -8 16 10 12 13 -1 14 -6 -16 -3 18 -18
right_child=5 2 -4 4 11 -7 7 -9 -10 -11 -12 -13 -14 -15 15 -17 17 -19 -20
leaf_value=-0.17869501070304347 -0.11310915980107812 -0.073129793060907361 -0.18386977429168772 -0.22776956358760467 -0.25194269828467819 -0.17708686629032255 0.44941363379640831 -0.2284217653270984 -0.10585780993505159 -0.11750114843756572 -0.10323277082308874 0.45231426855810936 0.23734948793649574 0.30877934574277865 0.27847025086388272 -0.049402899825347679 -0.11715528590667242 0.30644841551285545 0.24481240567338994
leaf_weight=2.1098707765340832 10.961400285363196 2.3773994594812384 4.6249959394335738 4.6180768981575993 3.3153768703341546 40.794556222856045 3.3944001197814941 1.0428666546940792 3.502265401184558 22.805968426167965 7.4424046054482451 2.0709189921617499 9.7003128081560117 3.2688356935977927 3.2111166715622002 6.5168722048401762 3.6783084049820856 19.741308562457565 8.8656051456928235
leaf_count=14 111 16 31 33 24 415 17 10 22 173 53 10 48 18 16 46 23 91 43
internal_value=0 0.0510215 0.106782 0.12876 0.0274403 -0.127715 0.00308088 0.290106 0.189823 -0.036204 0.0600979 0.0915524 0.163024 0.0457518 -0.0201663 0.0588249 0.219698 0.241261 0.138671
internal_weight=0 107.85 65.7911 61.1661 23.0012 56.1932 15.3987 4.43727 38.1649 42.0586 19.2526 18.3831 11.8102 16.3122 13.0434 9.72799 34.6626 32.2852 12.5439
internal_count=1214 661 373 342 147 553 138 27 195 288 115 114 62 104 86 62 173 157 66
is_linear=0
shrinkage=0.2
Tree=6
num_leaves=20
num_cat=0
split_feature=142 364 169 60 311 260 73 99 465 316 414 16 54 322 159 179 551 71 138
split_gain=22.6691 12.1285 10.4 9.55405 8.29126 8.10538 7.50938 7.66134 7.46474 6.85669 7.59486 6.38608 6.29522 5.88124 5.88933 5.53832 5.4588 5.63759 5.23154
threshold=0.81380830000000015 -0.0033355017499999994 1.1796688000000002 0.020864668000000003 0.033878753000000005 0.0097064255000000026 0.30300212500000007 0.010801527500000001 0.012930654500000001 -0.0057203881499999993 0.0027289152000000007 0.0035290777000000005 0.00087143754500000007 0.0033472078000000003 0.48501520000000004 0.42853805000000006 -0.0065100139999999989 0.060889960000000007 0.93800737500000009
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=2 3 6 8 13 -5 -1 -8 18 10 -4 -6 -10 16 -15 -7 17 -3 -2
right_child=1 4 9 5 11 15 7 -9 12 -11 -12 -13 -14 14 -16 -17 -18 -19 -20
leaf_value=-0.17771983992161305 0.26179989458248137 0.29423847619829252 0.39738999963711885 -0.15199404364306801 -0.12069816532407836 -0.23829655602579752 -0.16820111624814793 0.33525208102502069 -0.046353632812259411 -0.087057343248544306 -0.064229593126199427 0.31904023448712426 0.24341694969235511 0.32082297730899179 -0.22398343565333781 0.15916842737370684 -0.17183384353230496 -0.2329339191483748 0.025207915089752633
leaf_weight=41.655979156494141 22.191068112850193 2.1988065466284819 3.5370036438107491 8.846026077866556 2.0094110444188109 1.634708784520625 2.3987271636724463 2.4378142654895782 9.815470412373541 6.4162789434194547 2.3882767111063004 3.8559535816311836 4.3182506263256064 2.4352163523435588 1.1774081885814665 9.8633050695061666 19.724149763584137 1.2859946787357328 4.4958204403519622
leaf_count=456 109 12 19 71 16 17 24 18 66 54 19 19 23 12 13 56 170 12 28
internal_value=0 0.0513397 -0.107008 0.103899 -0.0470105 -0.00806929 -0.150331 0.0855598 0.159701 0.0561994 0.211327 0.168391 0.0421795 -0.0941146 0.143262 0.10266 -0.131064 0.0996963 0.221942
internal_weight=0 93.8516 58.8341 61.1646 32.6869 20.344 46.4925 4.83654 40.8206 12.3416 5.92528 5.86536 14.1337 26.8216 3.61262 11.498 23.209 3.4848 26.6869
internal_count=1214 624 590 370 254 144 498 42 226 92 38 35 89 219 25 73 194 24 137
is_linear=0
shrinkage=0.2
Tree=7
num_leaves=20
num_cat=0
split_feature=560 131 103 324 384 483 503 178 147 386 12 41 509 230 518 116 114 484 393
split_gain=19.0026 9.11036 8.4054 9.06372 7.40115 7.03686 6.26072 6.87228 7.49147 6.84506 6.17016 5.96065 5.70862 5.49974 6.08452 7.78937 5.33276 5.37101 5.96174
threshold=1.0000000180025095e-35 0.24419660000000001 0.0089964515000000023 0.027747234000000006 0.0044497577500000008 0.018649289500000003 0.014833498500000002 1.3260935500000002 1.0081503000000003 0.0076830637000000002 0.0035935827000000004 0.098428527500000015 -0.059897033499999995 0.55289735000000018 0.0036365593500000005 0.30379028000000002 0.010245153000000002 0.013049500000000002 0.0082796135000000014
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=2 12 -1 5 6 11 7 8 -3 10 -8 -4 -2 -5 15 -15 -12 18 -18
right_child=1 4 3 13 -6 -7 9 -9 -10 -11 16 -13 -14 14 -16 -17 17 -19 -20
leaf_value=-0.17628847047087084 0.069772236729199466 -0.13679848146148196 0.20306568638339351 -0.15457850451085042 -0.12822040125444709 -0.19456776448391072 1.7365910223335821 0.23868880248093874 0.20601702024221216 -0.12640809937516453 1.5558753644523806 -0.2255766065012324 -0.20009440203737411 -0.089036638403765092 0.27472079131985661 0.29070009894287141 -0.017721293232977827 0.27192074200036931 0.19607675007342024
leaf_weight=25.83141990378499 5.2164417654275894 10.432487271726133 3.9680864661932018 3.7204371243715313 5.602243833243846 15.17661193013191 0.10190445929765601 4.217460721731185 3.3745825812220565 3.1181079894304267 0.11202118545770545 1.928260490298271 7.8593326173722726 7.3728632703423518 6.0234944000840178 3.0564415752887726 8.5785348340868968 13.714501801878212 13.314017333090304
leaf_count=333 38 83 23 40 44 161 1 24 17 26 1 21 79 67 34 17 54 76 75
internal_value=0 0.0593942 -0.0868265 -0.0307988 0.0911251 -0.12253 0.112697 0.0152422 -0.053011 0.157808 0.182548 0.0628884 -0.092434 0.0650234 0.114682 0.0222501 0.178115 0.17378 0.112301
internal_weight=0 75.6416 67.0776 41.2462 62.5659 21.073 56.9636 18.0245 13.8071 38.9391 35.821 5.89635 13.0758 20.1732 16.4528 10.4293 35.7191 35.6071 21.8926
internal_count=1214 518 696 363 401 205 357 124 100 233 207 44 117 158 118 84 206 205 129
is_linear=0
shrinkage=0.2
Tree=8
num_leaves=20
num_cat=0
split_feature=11 533 247 220 311 503 530 70 505 316 3 89 355 506 149 285 161 553 476
split_gain=14.6652 10.7327 8.80297 9.86153 7.64293 7.80642 7.53832 8.37119 6.68324 6.54787 5.56416 5.00622 4.59613 4.41574 4.33189 4.30443 13.3652 4.55807 4.09845
threshold=0.0018547605500000002 -0.032004472999999999 0.64530580000000015 0.55705225000000003 0.0080276860000000009 0.0076552096000000007 -0.077849849999999984 0.011809011500000003 -0.031122546499999997 -0.014828773499999998 0.020512935500000003 0.031900588000000007 -0.0086346574999999984 0.030274125500000002 1.1860181500000002 0.0016179560000000003 0.028572599000000001 -0.034374836999999998 0.026187693000000005
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=6 10 3 12 13 9 7 -1 -7 -6 11 -2 -3 -5 -12 17 -17 -10 -4
right_child=1 2 18 4 5 8 -8 -9 15 -11 14 -13 -14 -15 -16 16 -18 -19 -20
leaf_value=0.47239336093147488 -0.19592026811147933 0.097908464242010676 -0.15220298812878472 -0.13536589104832339 0.21253436962855057 -0.1068188662129067 -0.20126750726696493 -0.22008674180187301 -0.23328406845959038 -0.10975865894886301 0.25464440890967166 0.15538868825026231 -0.19740056835642505 0.17269500755267414 -0.014260175554515093 3.2880258396559157 0.22481372982408515 0.25097716481952065 0.085364833373433258
leaf_weight=1.4968143850564986 3.116953797638419 2.6900027878582469 19.679966401308779 9.6547679752111417 3.4487434625625601 3.1895854398608163 19.508829906582832 1.3089094310998914 1.7448478229343893 9.3782567717134935 13.253300480544569 3.3841307498514652 9.7460502125322801 2.3056610748171797 2.9251941703259936 0.057126875966789892 21.369991518557072 1.4023020565509892 3.4076881296932688
leaf_count=9 23 23 209 91 24 26 284 18 16 88 73 20 110 15 20 1 131 8 25
internal_value=0 0.020537 -0.0110562 0.026631 0.0645308 0.105933 -0.157184 0.149342 0.16555 -0.023105 0.143228 -0.0130469 -0.133523 -0.0759797 0.206024 0.200901 0.232981 -0.0175077 -0.117138
internal_weight=0 110.755 88.075 64.9873 52.5513 40.5909 22.3146 2.80572 27.7639 12.827 22.6796 6.50108 12.4361 11.9604 16.1785 24.5743 21.4271 3.14715 23.0877
internal_count=1214 903 767 533 400 294 311 27 182 112 136 43 133 106 93 156 132 24 234
is_linear=0
shrinkage=0.2
Tree=9
num_leaves=20
num_cat=0
split_feature=115 41 51 498 393 460 31 271 524 216 517 142 506 18 95 168 344 454 324
split_gain=12.4031 7.83632 6.41701 5.98228 5.61603 5.40668 5.13509 5.09757 5.47103 4.93471 4.76372 4.47168 4.33623 4.3122 4.1241 3.99636 3.83667 3.8283 4.54489
threshold=0.17040199500000003 0.086722155000000009 0.025049194000000004 -0.0092505662499999981 0.0014898134500000001 0.017769955 0.10215335500000002 0.0028929180500000006 0.017394847000000001 1.9364571000000004 0.010782001500000001 1.6828596000000002 0.0030470111000000005 0.0068710444000000008 0.0061635478500000002 0.70487773500000006 0.020837941000000002 -0.0018477187499999998 0.032762834500000011
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 2 -1 5 12 14 16 9 -9 11 -11 13 -4 -2 15 -3 -5 -6 -19
right_child=7 3 4 6 17 -7 -8 8 -10 10 -12 -13 -14 -15 -16 -17 -18 18 -20
leaf_value=-0.15966517155426665 -0.19823313552524835 -0.014730164335196881 -0.22524354517235401 -0.06644733297092173 0.2283676793583875 -0.12065098989534651 -0.15478465045184397 -0.13216793875651042 0.47689165618690876 0.37067214544400323 -0.21746668685735904 0.23910189192528089 0.067072941058200733 0.13087376308822937 -0.028260280620850869 0.24577081136042966 0.38817592954562796 0.0042839362198211321 0.19781992074556579
leaf_weight=3.893148146569728 25.015723798424016 3.3842662759125286 3.0420485362410528 1.7404765300452738 13.602252475917334 6.6007082276046267 17.088912483304739 1.1994011625647538 1.1609927266836164 1.4195018522441381 0.9002137817442416 1.0731152035295952 6.1005762554705143 1.7007919959723938 7.1254041530191889 7.750049501657486 1.2950012385845182 10.914184261113411 8.7404409162700158
leaf_count=37 414 31 24 18 85 63 164 20 6 8 13 7 46 20 59 48 8 88 55
internal_value=0 0.0283045 0.0860717 -0.0311422 0.108635 0.034478 -0.112205 -0.115622 0.167407 -0.13781 0.142433 -0.161203 -0.0301903 -0.177282 0.0905556 0.166592 0.127505 0.1468 0.0903497
internal_weight=0 91.2775 46.2927 44.9848 42.3995 24.8604 20.1244 32.4697 2.36039 30.1093 2.31972 27.7896 9.14262 26.7165 18.2597 11.1343 3.03548 33.2569 19.6546
internal_count=1214 726 335 391 298 201 190 488 26 462 21 441 70 434 138 79 26 228 143
is_linear=0
shrinkage=0.2
Tree=10
num_leaves=20
num_cat=0
split_feature=103 267 64 347 27 352 53 324 417 280 193 506 280 9 216 474 386 364 18
split_gain=10.1573 7.0068 6.30978 5.66312 6.32899 5.21046 6.68565 5.12881 4.73952 5.34943 4.07832 3.75193 3.69174 3.80874 3.60508 3.5765 3.52943 3.2459 3.04533
threshold=0.0089964515000000023 -0.018802547999999999 0.095701370000000022 0.025655531500000002 0.0048994985500000017 -0.0074068592999999988 0.16897242000000004 0.0039622262000000011 0.026267885000000005 -0.023163437499999998 1.1616267500000002 0.042941160000000006 0.0036467413000000003 0.020998656500000004 2.0015539000000007 -0.020070375999999997 0.0063945016500000012 -0.013089326499999998 0.0065983260000000007
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=5 8 3 4 11 6 -1 -5 9 -2 -11 -3 13 17 18 -14 -10 -9 -7
right_child=1 2 -4 7 -6 14 -8 12 16 10 -12 -13 15 -15 -16 -17 -18 -19 -20
leaf_value=-0.19821053073998085 0.19161476679650863 -0.16370631867243352 -0.19360358757707993 -0.2140550258618939 0.12278665778850828 -0.1889697947076811 0.22116798282620445 0.17320072007681686 0.18842370576160461 -0.12222397849998112 0.20713925494393073 0.24200577795434064 -0.19188448317750051 0.19816906580779389 0.17146631691325701 0.22355847881838087 -0.11199521246846107 -0.18728738985042959 0.066826346099882847
leaf_weight=2.5207639485597637 4.6472933292388907 13.734360106289387 7.2310386039316645 2.2202868498861816 5.0468069277703753 21.306796453893192 3.8319155871868134 1.8251333646476267 17.66065984219313 8.7744946330785734 1.81483744829893 0.97658824920654375 2.7870406322181229 13.086896765977142 1.3336654230952252 1.179756388068198 1.7162787616252888 2.2075728699564996 2.0399209633469573
leaf_count=43 35 147 86 23 41 369 29 14 116 89 12 6 29 86 11 8 21 25 24
internal_value=0 0.0269332 -0.0207288 0.00829901 -0.0704726 -0.106773 0.0547572 0.075076 0.0961887 0.0127299 -0.0657765 -0.136773 0.10552 0.145803 -0.14835 -0.0683285 0.161815 -0.0241367 -0.16662
internal_weight=0 84.909 50.2955 43.0644 19.7578 31.0331 6.35268 23.3067 34.6136 15.2366 10.5893 14.7109 21.0864 17.1196 24.6804 3.9668 19.3769 4.03271 23.3467
internal_count=1214 738 465 379 194 476 72 185 273 136 101 153 162 125 404 37 137 39 393
is_linear=0
shrinkage=0.2
Tree=11
num_leaves=20
num_cat=0
split_feature=560 322 369 107 216 115 468 338 106 192 16 78 392 104 13 183 80 541 184
split_gain=8.31168 5.1891 5.15215 4.94453 4.83042 5.15749 4.81675 4.66683 4.37294 3.70355 3.55024 4.01905 3.5168 3.46658 3.39927 3.38351 3.28221 3.21474 3.00471
threshold=1.0000000180025095e-35 -0.023410646999999996 -0.005720961499999999 0.0016017498 1.5262124500000003 0.039356505500000007 -0.0056273009999999986 -0.0035669738999999996 0.10262272500000001 1.1178195500000003 0.0041946518000000009 0.0029271303000000005 0.023838130500000002 0.0038617023000000004 0.0056796078500000015 0.73715239500000007 0.0025476847000000008 -0.021938699999999995 0.78795918500000017
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=4 2 17 -3 5 14 7 8 -5 16 -7 -12 13 -6 -1 -13 -4 -2 -9
right_child=1 3 9 6 12 10 -8 18 -10 -11 11 15 -14 -15 -16 -17 -18 -19 -20
leaf_value=-0.09393069776863977 0.21481956537302557 -0.17791799730900804 -0.13211853028652673 0.13080289305587242 -0.072311965889736332 -0.17740740851827877 -0.16126212776204246 0.2425883802489871 -0.16085222475126987 -0.099005362834901842 -0.20369630899906419 0.252355149706597 0.38278554652140606 0.20997392187622702 0.15288677221925573 -0.17055141915201655 0.17931614564909723 -0.17055253941469539 0.0080236424756952498
leaf_weight=4.399409953504799 1.1097011044621465 6.184889335185292 1.4436391852796138 3.5266009904444289 5.8379939235746843 23.496129354462031 4.5123141556978181 6.487330935895443 4.9323593191802502 2.4434099793434134 2.4567112512886515 2.5619798861444001 1.1655167173594225 2.4790712166577578 4.5305004604160786 1.0739280171692369 21.704874452203512 3.940365161746743 3.2933815494179726
leaf_count=43 7 92 12 26 70 464 50 41 45 23 30 17 8 16 33 15 152 42 28
internal_value=0 0.0413864 0.0987448 -0.0193519 -0.0704461 -0.101925 0.0237526 0.0695234 -0.0392591 0.135175 -0.14213 -0.00608181 0.0574239 0.0118291 0.0312897 0.127442 0.159894 -0.0858709 0.163605
internal_weight=0 59.5789 30.642 28.9369 48.0012 38.5187 22.752 18.2397 8.45896 25.5919 29.5887 6.09262 9.48258 8.31707 8.92991 3.63591 23.1485 5.05007 9.78071
internal_count=1214 518 236 282 696 602 190 140 71 187 526 62 94 86 76 32 164 49 69
is_linear=0
shrinkage=0.2
Tree=12
num_leaves=20
num_cat=0
split_feature=552 53 264 3 530 419 246 189 217 327 364 56 446 450 463 209 37 495 388
split_gain=7.53558 6.17762 5.29221 4.56025 4.27079 3.94814 3.79438 3.74606 4.11222 3.67054 4.08847 3.6352 3.35217 3.0345 2.99242 2.94168 2.9314 2.80189 2.79294
threshold=0.019120323500000005 0.19087836000000002 -0.026643853499999998 0.021239450000000003 -0.086563972999999975 -0.00303971905 0.88481717500000012 0.7230549500000002 0.82434505000000013 -0.058021221499999991 -0.0010468040999999997 0.0027839634500000003 -0.011475570499999999 -0.063360039999999992 -0.0038262223999999995 0.18841522000000002 0.031127274500000003 -0.0058290577999999989 0.0064772501500000006
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 4 -3 5 18 6 17 16 -9 -4 11 12 -11 -7 -10 -14 -5 -2 -1
right_child=3 2 9 7 -6 13 -8 8 14 10 -12 -13 15 -15 -16 -17 -18 -19 -20
leaf_value=-0.22494246373746096 0.14341951007844303 0.19496185084637851 0.17268661564578469 0.17010126915051565 -0.17308136980559277 0.15094420426719085 0.1638388558158092 -0.15380522352864795 0.19411440783626008 0.14988443407328203 -0.18782597471719206 -0.1442648678209125 0.24610906184272652 -0.21103882533533522 -0.13603719790590166 -0.15043784254822967 -0.10912829561353297 -0.18845751410172806 0.23157188098734791
leaf_weight=0.75412407144904436 1.4885093290358788 4.6334145385772016 2.9797114878892925 18.385472349822528 19.343890348449349 1.1092930883169172 5.2531473431736231 4.1830542925745231 4.1877462062984705 6.4983302317559808 7.2638630438595966 5.2980103250592938 0.93346990272402752 5.6166549567133179 1.4884430132806299 3.7719129640609026 1.6378480531275261 3.2160795927047738 1.8538184016942976
leaf_count=10 18 38 25 144 388 10 43 40 31 54 108 57 6 84 17 39 27 59 16
internal_value=0 -0.0593071 -0.0023732 0.0508064 -0.14069 -0.0329564 0.0470043 0.0975719 -0.00334279 -0.03656 -0.0627951 -0.00775805 0.0567933 -0.151338 0.10754 -0.0717695 0.147261 -0.0834532 0.0995642
internal_weight=0 53.3305 31.3787 46.5662 21.9518 16.6837 9.95774 29.8826 9.85924 26.7453 23.7656 16.5017 11.2037 6.72595 5.67619 4.70538 20.0233 4.70459 2.60794
internal_count=1214 741 327 473 414 214 120 259 88 289 264 156 99 94 48 45 171 77 26
is_linear=0
shrinkage=0.2
Tree=13
num_leaves=20
num_cat=0
split_feature=115 26 508 3 41 249 91 296 296 280 175 220 364 182 304 354 419 189 231
split_gain=5.61628 4.33099 3.91245 3.76862 3.29008 4.28552 3.91355 3.20218 3.02733 2.98112 2.98075 2.94259 2.89417 2.86486 2.6509 2.61415 2.6021 2.88964 2.57137
threshold=0.13344489000000001 0.18385674000000005 -0.015740836999999997 0.020642928000000001 0.08402227800000002 0.35415540500000003 0.0092746305000000005 0.016695197000000005 0.0049149850000000011 0.0054568968000000004 0.56957912500000007 0.53280440000000007 0.0061761245500000011 0.7567233000000001 0.0096917650000000015 0.0044230178000000007 0.0089048582500000015 0.59993656500000014 0.35884792500000001
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=2 -2 16 -3 5 -4 7 -6 -5 12 11 18 15 -12 -9 -8 -1 -18 -7
right_child=1 3 4 8 6 10 9 14 -10 -11 13 -13 -14 -15 -16 -17 17 -19 -20
leaf_value=0.20746045800464868 -0.15294679578805692 -0.12737318257106159 -0.14039613073646617 -0.15774579492638119 -0.16946367809858523 0.22888061750115152 -0.063211154399892458 -0.17517726618594517 0.19409843091335321 -0.14585607655754262 0.056428567983707503 0.17779245578456027 -0.18073422421950799 -0.20910707871336343 0.12570428524564103 0.19371857631946066 0.16488296320134066 -0.22516053943405914 -0.22657441868248218
leaf_weight=6.8483919277787191 15.639501402154567 4.295702198520301 3.9618780352175262 1.2420286890119312 11.14637010544539 0.74950794503093066 2.0860697422176582 1.7959164138883341 4.6046646609902382 2.7503194585442534 6.9078554846346361 12.448682531714438 1.3720519673079241 2.1252620778977871 3.367613174021244 6.581874830648303 1.6528752557933333 1.406085370108485 1.4649650342762468
leaf_count=60 373 109 40 27 140 5 25 22 44 35 63 100 17 21 30 53 13 20 17
internal_value=0 -0.0869345 0.0229898 0.0148561 0.00274713 0.0521389 -0.0441971 -0.109148 0.119355 0.0386262 0.0843297 0.140004 0.0891626 -0.00604519 0.0210553 0.131885 0.138958 -0.0144049 -0.0724216
internal_weight=0 25.7819 66.6657 10.1424 56.7584 27.6582 29.1002 16.3099 5.84669 12.7903 23.6963 14.6632 10.04 9.03312 5.16353 8.66794 9.90735 3.05896 2.21447
internal_count=1214 553 661 180 568 246 322 192 71 130 206 122 95 84 52 78 93 33 22
is_linear=0
shrinkage=0.2
Tree=14
num_leaves=20
num_cat=0
split_feature=552 169 280 257 134 189 169 526 253 194 239 42 243 255 170 457 32 455 486
split_gain=5.27646 4.96841 4.7606 4.02531 3.62948 3.6127 3.14362 3.00542 2.94421 2.854 2.74668 2.71778 2.4672 2.0284 2.01189 2.01181 2.0716 2.41698 1.94774
threshold=0.014821335500000003 1.1539693000000002 0.0045455880500000012 -0.012646503999999998 0.78134459000000012 0.6859308500000002 0.60866743500000009 -0.0039481024999999991 0.27570425000000004 0.39595079500000002 0.92080450000000014 0.31496885000000002 0.97728557500000013 1.4182093000000002 0.27860941000000006 0.015575374500000001 0.19820737500000005 0.058029056000000002 0.0030047123000000006
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 4 3 18 -1 6 8 12 -2 -5 14 13 15 -12 -8 16 17 -7 -3
right_child=5 2 -4 9 -6 7 10 -9 -10 -11 11 -13 -14 -15 -16 -17 -18 -19 -20
leaf_value=-0.15314803506702568 0.21011192267323447 -0.042213091677367531 -0.17403594087423302 0.160533489707956 0.10730006193401763 -0.19746715375307844 -0.18573951488062027 -0.15389757926530598 -0.10233605413874827 -0.23181051833644162 -0.19110625648828813 0.23533330776032432 0.17458869275512981 0.19029741443363679 0.15085864063396104 0.15171017610755244 0.14212549949874154 0.14746176594070065 0.23929143818756948
leaf_weight=19.621502563357357 1.5079719461500634 1.1981259379535902 3.3918904997408381 1.1850696168839925 2.402271417900919 4.6062994152307528 0.73664085566998139 5.9794761426746836 6.0312377363443375 1.981877854093909 2.8685557097196575 1.1617886684834955 3.0633707679808131 0.6923824343830346 19.861818803474307 1.843018803745508 1.317762767896056 0.98664612136781205 5.4793727733194828
leaf_count=419 21 12 52 12 25 81 7 88 93 33 52 9 31 8 187 19 12 10 43
internal_value=0 -0.0665377 0.0303032 0.100708 -0.124739 0.0342203 0.0735262 -0.038356 -0.0398411 -0.0849957 0.107281 -0.0302861 0.0201083 -0.116947 0.138821 -0.0339522 -0.0834665 -0.136619 0.188782
internal_weight=0 35.2601 13.2363 9.84445 22.0238 50.657 32.8604 17.7966 7.53921 3.16695 25.3212 4.72273 11.8171 3.56094 20.5985 8.75373 6.91071 5.59295 6.6775
internal_count=1214 596 152 100 444 618 377 241 114 45 263 69 153 60 194 122 103 91 55
is_linear=0
shrinkage=0.2
Tree=15
num_leaves=20
num_cat=0
split_feature=533 135 151 142 550 551 534 285 254 176 123 35 1 148 63 533 7 471 249
split_gain=4.27062 3.92498 3.80513 3.77071 3.41028 2.91523 3.05137 2.74214 2.69493 2.89008 3.60436 2.59999 2.58164 2.55894 2.48335 2.09488 2.02865 1.86422 1.85018
threshold=-0.032617386499999991 0.51426378500000014 0.15056032000000003 0.77076888500000007 0.016946567500000002 -0.00032580784999999997 -0.038919517499999993 0.0072852699000000012 1.3653382500000002 1.1354928000000002 0.0063411831000000007 0.043801711500000007 0.083085655000000022 0.14806893500000004 0.0096884950000000018 -0.027527171999999999 0.0045005944500000009 -0.0065735836499999992 0.34359362500000007
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=11 2 3 14 -5 6 17 13 9 10 -9 12 -1 -4 -2 -8 -12 -3 -14
right_child=1 5 7 4 -6 -7 15 8 -10 -11 16 -13 18 -15 -16 -17 -18 -19 -20
leaf_value=-0.2222871005063643 -0.15333244474114266 -0.061515237513217115 0.22217326514501068 0.18697426598143307 -0.087840601275307767 -0.14984110427964861 0.24623946447704498 -0.11841586809558519 -0.16265056144017279 -0.13662867870655668 -0.14602534589423885 0.18031875488380233 -0.097870956688754979 -0.17946539244177825 0.16454036988492107 -0.22293154111259361 0.16478764347252325 0.23049482619598352 0.14017665206496729
leaf_weight=1.5195467490702848 3.6604114715009954 1.3562501352280381 0.69808891043067234 10.117854876443742 2.19873047992587 14.471104668453334 0.45360362529754672 2.9207099173218039 3.4114056397229424 3.1931361742317668 0.92895952612161536 6.8935891296714544 1.8680344521999357 6.9688525209203362 1.3440657090395687 2.3678138405084637 8.7696483284234983 2.4619858022779226 4.3408511057496071
leaf_count=18 98 16 5 87 30 307 3 52 55 62 19 71 20 152 13 50 91 19 46
internal_value=0 -0.0285513 0.0053253 0.0784325 0.137915 -0.0994984 0.0102234 -0.0417649 -0.00143163 0.03335 0.0763607 0.0910221 0.0113715 -0.142895 -0.0679605 -0.147502 0.135017 0.126772 0.0685565
internal_weight=0 65.3226 44.2119 17.3211 12.3166 21.1108 6.63965 26.8908 19.2239 15.8125 12.6193 14.622 7.72843 7.66694 5.00448 2.82142 9.69861 3.81824 6.20889
internal_count=1214 1059 664 228 117 395 88 436 279 224 162 155 84 157 111 53 110 35 66
is_linear=0
shrinkage=0.2
Tree=16
num_leaves=20
num_cat=0
split_feature=177 216 61 33 306 171 273 315 435 36 174 413 268 364 43 451 254 515 483
split_gain=3.63751 3.78443 3.15143 3.26273 2.78637 2.72577 2.64084 2.80881 2.60404 2.39356 2.35232 2.21588 2.22701 3.54529 2.19145 2.09246 2.04715 2.17415 2.03541
threshold=0.75323027500000006 1.5014088000000003 0.0053820670500000006 0.10578924750000002 0.027244913000000006 0.60264711500000012 -0.007008795249999999 -0.0038388004999999996 -0.0011343331999999998 0.064709879000000012 0.99933226500000016 -0.016194101499999999 -0.016541726999999996 -0.017282316499999995 0.0012950249500000002 0.021237944000000005 1.0497252000000004 -0.011915495999999999 0.017150705500000005
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=2 4 6 5 -2 -4 -1 10 9 15 -8 12 -7 -14 -3 -6 -5 -18 -16
right_child=1 14 3 16 8 11 7 -9 -10 -11 -12 -13 13 -15 18 -17 17 -19 -20
leaf_value=-0.15741459932811097 -0.13993732300152925 0.19520488319901849 -0.16891121570777862 0.18733832543261944 0.18555281931875084 0.1555741998643905 0.25482811963824659 -0.21646776983423358 -0.19819061239825242 -0.1691447534757658 -0.080929900920912914 -0.21512216681328714 0.19115979504354885 -0.15086757585595095 0.23581257458081414 -0.11881190158684372 0.14256945750118954 -0.13503347201268528 -0.081643573596460309
leaf_weight=5.3905885871499777 16.829812571406368 3.1412229016423208 2.9674970014020827 9.8275409843772632 4.2008225619792938 5.965358735993501 2.325474278070033 1.2201820183545331 2.0644017588347179 1.4557608552277086 1.3019288601353762 1.1877582026645548 1.9306567627936564 3.257768089883033 1.0114504769444463 1.1510716527700422 2.689330336637795 1.9444258976727713 4.0138334985822439
leaf_count=126 402 32 54 105 47 66 19 28 38 19 38 23 20 58 10 15 27 27 60
internal_value=0 -0.05444 0.0346262 0.0675438 -0.092125 0.00319234 -0.0610906 0.0460232 -0.00142762 0.0582402 0.13432 0.0445743 0.0722291 -0.0235963 0.0641634 0.120091 0.135668 0.0260812 -0.0177484
internal_weight=0 33.8684 40.0085 29.7703 25.7019 15.309 10.2382 4.84759 8.87206 6.80766 3.6274 12.3415 11.1538 5.18842 8.16651 5.35189 14.4613 4.63376 5.02528
internal_count=1214 623 591 380 521 221 211 85 119 81 57 167 144 78 102 62 159 54 70
is_linear=0
shrinkage=0.2
Tree=17
num_leaves=20
num_cat=0
split_feature=560 324 183 384 465 115 114 363 477 61 246 140 369 270 552 540 477 306 17
split_gain=3.43334 2.5743 2.94363 2.5287 2.57122 2.54428 2.41653 2.4001 2.18643 2.09299 2.02103 1.99377 2.56448 1.78061 1.84476 1.75248 1.72186 1.71634 1.67584
threshold=1.0000000180025095e-35 0.028769515500000006 0.81074087000000017 0.0053711032000000004 0.012010598500000002 0.048184505000000009 0.017640664000000004 -0.017818286499999999 0.034649327000000008 0.0041591734500000003 1.1350692000000002 0.78766162500000014 0.040273634500000009 0.031076736000000004 0.014521770250000001 -0.038593844999999995 0.018027879500000003 0.022647534 0.013502264000000002
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 6 11 4 9 -6 -1 18 -7 -2 -4 -3 -13 14 16 -16 17 -11 -8
right_child=3 2 10 -5 5 8 7 -9 -10 13 -12 12 -14 -15 15 -17 -18 -19 -20
leaf_value=-0.18702314089008734 -0.19240414536428205 0.11837294712004927 -0.21032493766019714 -0.14834912167208897 0.088493687955356615 -0.12977190316390697 -0.2126610483995223 -0.18094509512106893 0.15200195663574362 -0.15020800963466541 0.068191841293525318 -0.21289698088179973 0.22492568475256311 -0.13291669078406951 -0.19020928926840483 0.18005218541994303 0.16955334659671936 0.09329453939759863 0.13362337998023652
leaf_weight=8.3583685094490665 0.99904062971472996 7.2750887908041459 3.3988429028540841 2.8358400864526621 5.3742822557687751 7.2667258298024517 0.67609544098377261 2.3860916765406719 1.2983330544084308 2.4485212396830383 1.5029939282685516 1.842878192663193 0.75411249324679364 1.1976494211703528 0.53395679034292953 12.063604332506651 2.5471933931112289 2.1965846912935376 3.2282829601317644
leaf_count=282 24 94 117 50 57 127 20 63 16 41 22 52 7 19 8 126 24 26 39
internal_value=0 -0.0571423 0.00176529 0.0334702 0.0478223 -0.0193752 -0.116553 -0.0229167 -0.0870593 0.090425 -0.124927 0.0646723 -0.0857623 0.103888 0.118219 0.164358 0.0374049 -0.0350602 0.0736596
internal_weight=0 29.4228 14.7739 38.7617 35.9259 13.9393 14.6488 6.29047 8.56506 21.9866 4.90184 9.87208 2.59699 20.9875 19.7899 12.5976 7.1923 4.64511 3.90438
internal_count=1214 696 292 518 468 200 404 122 143 268 139 153 59 244 225 134 91 67 59
is_linear=0
shrinkage=0.2
Tree=18
num_leaves=20
num_cat=0
split_feature=386 444 259 553 530 95 551 506 503 322 351 473 136 189 150 372 351 151 501
split_gain=2.73844 2.64419 2.60276 2.54744 2.53796 2.29311 2.21522 2.1628 1.97158 1.96136 1.87163 1.83509 1.69553 1.64081 1.63267 2.29152 1.63627 1.56434 1.63363
threshold=-0.012048514249999998 -0.029831272499999995 0.078576895000000022 -0.034374836999999998 -0.052050798999999988 0.0044745454000000009 -0.0078810559999999991 0.013749105000000003 0.0067832695000000004 -0.030040853999999995 -0.13040266999999997 0.0102692865 0.31780542500000003 0.60433352500000004 0.75780536500000018 -0.010287049749999997 -0.087470244999999988 0.16461687500000002 0.004200759650000001
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=3 2 10 6 9 12 -1 -8 11 -3 -2 -7 -5 -4 16 -16 -11 -9 -19
right_child=1 4 13 5 -6 8 7 17 -10 14 -12 -13 -14 -15 15 -17 -18 18 -20
leaf_value=0.10623280154972894 -0.16014909087604232 0.084061080346319692 0.21908662363021089 0.1160678540087224 -0.17651240723106609 0.15180630114727611 -0.1892046331446694 0.17520414549041949 0.13861295728155773 -0.1858049379194488 0.18482191546545401 -0.13110539429927492 -0.22094036383071944 -0.0038396608498971136 -0.18383056790911281 0.13333055824189186 0.20226070517474454 0.16459969798301233 -0.17068195405623732
leaf_weight=3.1201599752530447 2.9678630474954848 3.9672197373583939 3.2651525940746069 0.93894289992749991 7.9577696332707992 1.4876145040616422 4.389570374041794 1.4982732543721793 13.932876822538672 5.1083220550790447 0.79830848891288209 2.3913193289190531 1.6404473781585691 2.2176620606333017 1.4478502981364729 2.458521087653935 0.47503159474581114 0.8075716067105535 2.0745846200734377
leaf_count=40 97 59 29 11 253 20 97 21 195 136 10 52 35 39 27 33 6 12 42
internal_value=0 -0.04838 0.0409862 0.0350792 -0.0869771 0.0779813 -0.0384964 -0.0899876 0.103504 -0.0340304 -0.0870262 -0.0226056 -0.0982635 0.128918 -0.0833991 0.0157785 -0.152788 0.00943642 -0.076737
internal_weight=0 30.6637 9.24899 32.2814 21.4147 20.3912 11.8902 8.77 17.8118 13.4569 3.76617 3.87893 2.57939 5.48281 9.48973 3.90637 5.58335 4.38043 2.88216
internal_count=1214 689 175 525 514 313 212 172 267 261 107 72 46 68 202 60 142 75 54
is_linear=0
shrinkage=0.2
Tree=19
num_leaves=20
num_cat=0
split_feature=53 264 83 26 552 270 177 246 242 378 63 108 476 328 530 516 472 333 480
split_gain=2.53326 2.3252 2.77792 2.29057 2.05714 2.16338 2.03419 1.97508 1.81409 1.64197 2.13294 1.82 1.63374 1.61229 2.07302 1.90109 1.69583 1.47417 1.46454
threshold=0.15902997500000002 -0.024038999499999995 0.14410993000000002 0.31457848500000002 0.019120323500000005 0.028866892000000002 0.52224438000000017 1.2584606500000002 0.38101199000000002 0.0063968270000000008 0.010016917000000002 0.035453837500000009 0.0087062510000000017 0.012780795000000003 -0.066038139999999981 0.027855511000000003 -0.0058485497499999994 -0.078847974499999987 0.017250306000000003
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=3 2 -2 9 6 13 8 -8 -3 -1 11 -11 -5 14 -6 18 -16 -9 -15
right_child=1 4 -4 12 5 -7 7 17 -10 10 -12 -13 -14 15 16 -17 -18 -19 -20
leaf_value=-0.17149594181700531 0.19306306221771172 -0.17902856961682528 -0.1846761911614051 -0.15950519955545883 0.18744898131621532 -0.1909741073125801 -0.13050139048735906 0.19840216582401429 0.11202794251188392 0.100081333256909 0.21617793301331376 -0.20914392936094234 0.17287303418208327 -0.17145987049817904 0.09362619675381173 0.11963937825049378 -0.1659853043153883 -0.081742050721969828 0.1680003187603174
leaf_weight=7.5930780097842199 5.0593779468908897 1.0606701234355593 0.92041617725044478 0.81628437992185299 6.3539581662043956 1.3974956898018707 10.223330014385281 1.456205300986767 4.4514865037053823 1.1775142233818772 1.1487799268215892 2.1541512222029269 2.1484068250283599 2.8608886543661352 3.1963833505287766 2.4216766273602843 1.4690018827095652 1.5522855147719372 0.61823208816349495
leaf_count=287 62 26 25 29 83 31 253 14 64 19 12 88 28 47 46 30 33 29 8
internal_value=0 0.0191937 0.134921 -0.0761607 0.000521364 0.048186 -0.0460591 -0.0885843 0.0560217 -0.11484 -0.0188239 -0.0998541 0.0813575 0.0679391 0.113117 -0.0164277 0.0118817 0.0538567 -0.111139
internal_weight=0 43.0414 5.97979 15.0382 37.0616 18.3176 18.744 13.2318 5.51216 12.0735 4.48045 3.33167 2.96469 16.9201 11.0193 5.9008 4.66539 3.00849 3.47912
internal_count=1214 751 87 463 664 278 386 296 90 406 119 107 57 247 162 85 79 43 55
is_linear=0
shrinkage=0.2
Tree=20
num_leaves=20
num_cat=0
split_feature=16 47 27 41 471 112 284 495 368 159 468 86 333 304 326 160 341 260 45
split_gain=2.16478 2.67791 2.00145 2.04764 2.19503 2.05867 1.88931 1.75986 1.63297 1.51537 1.4806 1.48022 1.67635 1.38576 1.21314 1.48542 1.14311 1.1436 1.28712
threshold=0.0020840763000000003 0.014954072000000001 0.0035816428500000004 0.087137767500000005 -0.014319601499999999 0.23640458000000003 0.080118380000000003 -0.016932232499999995 0.0059297525000000005 0.61053685000000013 -0.035396106499999989 0.053392560000000013 -0.049755973499999995 0.014991635000000001 0.033706575500000009 0.54930902000000004 -0.010783322999999999 0.021758836000000004 0.014665259250000002
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 8 10 7 6 11 -5 -4 -1 -9 -2 12 14 -11 -6 -16 -12 -18 -19
right_child=2 -3 3 4 5 -7 -8 9 -10 13 16 -13 -14 -15 15 -17 17 18 -20
leaf_value=-0.15405456661920869 0.092086077563780039 -0.19817850321128416 -0.13415797067003432 -0.16820026658914969 0.16297711174298013 -0.18678292791634221 0.13070547154337159 0.12878802666514796 0.14855848459062168 -0.15839032248691201 0.15130539216126615 0.1542242659246178 -0.21780869442336784 0.1027679946399529 0.16197894266239107 -0.1696565499267145 -0.1793036156115721 -0.12095510589717924 0.17763024752563408
leaf_weight=1.1057966882362955 1.911178690381347 4.6795474062673748 1.4021380855701888 4.7839372972957781 2.1441964497789714 1.454811799339949 1.0275298813357947 13.436183728277685 2.0094734844751656 1.5713139669969671 0.65036260429769654 4.426043258048594 1.1331466557458085 1.6834216713905332 0.86176009848713908 1.4479985265061257 5.1080129886977366 1.6216668533161285 0.89686553645879019
leaf_count=51 33 256 29 143 31 38 14 168 40 46 12 58 28 34 14 34 142 28 15
internal_value=0 -0.102532 0.0115273 0.0340241 -0.0152156 0.0355285 -0.115351 0.0810495 0.0411429 0.0991282 -0.0665804 0.0678282 -0.000613859 -0.0233134 0.0546435 -0.0459249 -0.103217 -0.124922 -0.0146269
internal_weight=0 7.79482 45.5606 35.3725 17.2794 11.468 5.81147 18.0931 3.11527 16.6909 10.1881 10.0131 5.5871 3.25474 4.45396 2.30976 8.27691 7.62655 2.51853
internal_count=1214 347 867 637 360 203 157 277 91 248 230 165 107 80 79 48 197 185 43
is_linear=0
shrinkage=0.2
Tree=21
num_leaves=20
num_cat=0
split_feature=560 135 140 150 517 131 288 452 27 405 328 265 230 267 509 131 268 303 293
split_gain=1.86081 1.75405 1.65406 1.77595 1.52612 1.50753 1.53334 1.35164 1.34482 1.30278 1.51245 1.62315 1.36345 1.32704 1.27874 1.26348 1.19127 1.42004 1.13303
threshold=1.0000000180025095e-35 0.55090231000000012 0.79116318500000016 0.47646474500000008 0.0070992117000000009 0.24419660000000001 0.013340274000000001 0.017594735000000004 0.0059230527500000003 0.0029730326500000005 0.028642192500000004 -0.035509150499999996 0.44303740500000005 -0.037846439999999988 -0.059897033499999995 0.60675794000000016 -0.0030340773999999993 0.0027701909500000006 0.019054169000000006
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 2 3 8 15 14 9 -4 -1 12 11 13 -7 -11 -2 -5 17 -6 -14
right_child=5 -3 7 4 16 6 -8 -9 -10 10 -12 -13 18 -15 -16 -17 -18 -19 -20
leaf_value=-0.19595547276244063 0.039239116149587035 -0.1496349531940982 -0.19486701938839182 0.16238978226487791 -0.20886202275570698 -0.14884047043097362 0.14684899154969683 0.11823522718269304 0.20478574574344052 0.18549848280065734 0.11854378593708817 0.19682858562123812 0.14790778286273271 -0.12506848727774184 -0.18456205336671627 -0.092635751454715559 0.12113091058393657 0.16668292208007585 -0.018926908828847153
leaf_weight=2.0724830487743051 1.8588709412142632 5.3279014667496076 2.9069204628467555 4.9167889254167658 1.8369221203029154 0.96316087106243387 4.913301518186926 0.68063665227964509 0.39953821664676059 0.6009267605841212 2.2183326175436378 0.8283792771398949 6.0019117747433466 6.5382572114467621 2.2662364449352053 0.92293525766581286 1.1599755645729608 0.5158515442162751 2.2344779502600431
leaf_count=79 38 238 152 76 73 22 73 20 6 9 36 15 90 125 79 21 23 8 31
internal_value=0 -0.0507115 -0.0165139 0.0195758 0.0594248 0.0280761 0.047054 -0.135465 -0.131186 0.0217606 -0.0275126 -0.0681777 0.0763168 -0.0989271 -0.083712 0.122084 -0.0447429 -0.126523 0.102647
internal_weight=0 20.74 15.4121 11.8245 9.35247 28.4239 24.2987 3.58756 2.47202 19.3854 10.1859 7.96756 9.19955 7.13918 4.12511 5.83972 3.51275 2.35277 8.23639
internal_count=1214 696 458 286 201 518 401 172 85 328 185 149 143 134 117 97 104 81 121
is_linear=0
shrinkage=0.2
Tree=22
num_leaves=20
num_cat=0
split_feature=103 465 460 311 64 143 541 284 419 309 175 126 157 246 159 264 289 527 295
split_gain=1.67093 1.48628 1.468 1.45234 1.68567 1.83642 1.53868 1.34264 1.30836 1.53795 1.24955 1.24075 1.14776 1.14666 1.17881 1.12021 1.11918 1.01921 0.980186
threshold=0.0089964515000000023 -0.0063293449999999992 0.016234496500000004 0.012029958000000002 0.10366527500000002 0.78909822500000015 -0.027684560499999993 -0.019797287999999996 0.0038223867000000008 -0.0023121761499999998 0.63315445000000004 0.69374183500000008 0.071227860000000018 1.1642540000000003 0.39886996000000002 -0.014820142749999999 -0.008651705749999997 0.027745420000000003 -0.009361661999999998
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 2 -1 6 5 8 16 -8 10 15 -5 -12 -3 18 -15 -10 -2 -6 -9
right_child=3 12 -4 4 17 -7 7 13 9 -11 11 -13 -14 14 -16 -17 -18 -19 -20
leaf_value=0.15092627541470097 -0.09692417833096735 0.13072026335441192 -0.20617700661156133 0.16549198174984447 -0.20462490377789144 -0.11296316038822754 0.19083177983677757 -0.060309687596224154 0.084562582668895894 0.18942272794753168 0.092314402459404254 -0.17404711764747624 -0.14048145248198679 0.14568621850674507 -0.1176158931349684 -0.13520449353325023 0.18149330962848342 0.17210269579432166 -0.20733415725336435
leaf_weight=1.8298981525003912 0.82498814444988999 0.68278483394533207 0.61529591167345632 8.4257126278244048 1.5161190568469454 2.0658290740102521 0.73699742369353671 3.8059292081743461 1.4383866977877913 1.3481053728610266 2.86011098511517 0.92599852196872223 7.2755271410569549 1.4437320083379748 1.2859390852972863 2.6133690942078829 1.9252593982964743 0.35440308414399613 3.4652334027923644
leaf_count=35 21 17 38 138 46 55 16 84 38 16 51 26 386 20 30 61 27 7 102
internal_value=0 -0.0753114 0.0610667 0.0159691 0.0481854 0.0654322 -0.0354986 -0.0696852 0.0863578 0.0043809 0.122607 0.0271683 -0.117214 -0.0888837 0.0216455 -0.0571865 0.0979768 -0.133247 -0.130377
internal_weight=0 10.4035 2.44519 35.0361 21.548 19.6775 13.4881 10.7378 17.6117 5.39986 12.2118 3.78611 7.95831 10.0008 2.72967 4.05176 2.75025 1.87052 7.27116
internal_count=1214 476 73 738 438 385 300 252 330 115 215 77 403 236 50 99 48 53 186
is_linear=0
shrinkage=0.2
Tree=23
num_leaves=20
num_cat=0
split_feature=533 377 189 72 396 329 446 391 141 3 159 190 95 344 53 365 259 362 253
split_gain=1.4794 1.71686 1.32389 1.59399 1.27179 1.31304 1.22309 1.17933 1.36158 1.17982 1.13725 1.07751 1.03611 0.973565 1.31824 0.886054 1.04973 0.840614 0.808072
threshold=-0.032004472999999999 -0.011768368999999999 0.6859308500000002 0.00095403585000000018 0.0111575765 -0.024303200499999997 -0.0035233168499999995 -0.0058037952999999984 0.80164747500000011 0.020719527000000005 0.56299195000000013 0.86682385000000017 0.0046384573500000007 0.013883115500000001 0.24468121500000004 0.015360453500000001 0.040860757000000004 0.0047735560000000008 0.53914368000000013
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=10 -2 3 -3 5 -5 15 8 9 -4 12 -8 -1 -7 -15 16 -6 -14 -11
right_child=1 2 7 4 6 13 11 -9 -10 18 -12 -13 17 14 -16 -17 -18 -19 -20
leaf_value=-0.068321260969468514 -0.14912347363408782 -0.16724972379259387 -0.095546399071720398 0.20598597958820997 -0.16864962076394485 -0.21295355951931177 -0.1317770032478299 -0.19782017021603332 -0.15258394048460724 -0.16674299783648525 -0.049456382249887063 0.13000390090300984 -0.040769107654848646 -0.16148454177714988 0.20681983548700919 -0.088633043153960089 0.12618622125153461 0.19247630475189484 0.13468081975340807
leaf_weight=0.97947503160685112 3.8184890691190949 1.6237099561840356 1.995189892593771 0.62043312750756774 0.50707663828507143 1.7622112738899915 1.9937441824004012 2.141927397111429 2.4913391591981053 0.40426279883831773 2.206482679117471 0.91875907406210888 0.72784862993285049 0.86750459112226941 0.70432894956320524 0.95731922378763634 10.187160281930117 4.097444792278111 2.9650735105387866
leaf_count=20 180 86 80 9 19 55 73 109 94 17 55 15 14 27 11 38 188 71 53
internal_value=0 -0.0227811 -0.00677461 0.0227567 0.0394165 -0.0611681 0.0667275 -0.0662704 -0.0304029 0.0263392 0.0727656 -0.0491973 0.119224 -0.110883 0.00355039 0.0957049 0.112206 0.157294 0.0985151
internal_weight=0 33.9585 30.14 20.1422 18.5185 3.95448 14.5641 9.99779 7.85587 5.36453 8.01125 2.9125 5.80477 3.33404 1.57183 11.6516 10.6942 4.82529 3.36934
internal_count=1214 1054 874 521 435 102 333 353 244 150 160 88 105 93 38 245 207 85 70
is_linear=0
shrinkage=0.2
Tree=24
num_leaves=20
num_cat=0
split_feature=220 177 362 212 22 28 321 476 146 449 248 232 40 404 217 491 47 19 129
split_gain=1.34991 1.36737 1.3716 1.49334 1.26034 1.19405 1.19197 1.16353 1.09785 1.08861 1.28269 1.14009 1.36977 1.05832 1.10672 0.975295 0.974638 0.964782 0.833499
threshold=0.52260982500000008 0.75323027500000006 0.021328385000000002 0.80473230000000007 0.34764561000000005 0.008763775250000003 -0.028294094999999995 0.035721061500000005 0.6903010650000001 0.024363980500000004 0.81418180500000015 0.65100402000000013 0.35294745000000005 -0.0031253500999999994 1.0797674500000003 0.0029018095000000002 0.017271555000000004 0.00090757713500000013 0.89480897500000012
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=6 5 7 4 -4 9 16 17 15 11 -11 18 13 -13 -15 -5 -1 -3 -2
right_child=1 2 3 8 -6 -7 -8 -9 -10 10 -12 12 -14 14 -16 -17 -18 -19 -20
leaf_value=0.16555147993682959 0.18706860180020368 0.050409177619554241 -0.19885553647957538 0.11581736247342411 0.055340228173697409 -0.203898944855082 -0.14143463006718293 0.12419219059117621 0.13844350431577943 0.071907202107527893 -0.16034064804140846 0.1325980372941305 -0.17056333789865435 0.086885427219191069 -0.18902899518527627 -0.16569816156675765 -0.18358554665835847 -0.17782752530563711 -0.086024277957804041
leaf_weight=1.0802907822653649 4.6995425401255542 0.89128200430422921 1.8705781702883526 0.86897973669692907 1.338479302357882 0.7103885707911094 4.5873652969021341 0.76783265266567458 3.9029164337553084 2.1133391857147212 1.729788922704756 4.3068613908253637 1.0660288943909106 1.3274101680144643 1.0348247494548557 1.1354775209911165 0.4543305484112351 4.3886757786385715 0.49403207749128331
leaf_count=22 88 32 78 21 43 66 233 15 75 53 51 79 27 26 25 36 31 203 10
internal_value=0 0.0119512 -0.0319972 0.0169942 -0.092832 0.0500724 -0.0903918 -0.105847 0.076655 0.0608296 -0.0326274 0.0886102 0.0399446 0.0735935 -0.0339845 -0.0436545 0.0621881 -0.1393 0.161091
internal_weight=0 32.6464 15.1642 9.11643 3.20906 17.4822 6.12199 6.04779 5.90737 16.7718 3.84313 12.9287 7.73513 6.6691 2.36223 2.00446 1.53462 5.27996 5.19357
internal_count=1214 928 503 253 121 425 286 250 132 359 104 255 157 130 51 57 53 235 98
is_linear=0
shrinkage=0.2
Tree=25
num_leaves=20
num_cat=0
split_feature=533 246 419 39 267 51 17 368 470 276 70 301 275 341 296 166 351 285 361
split_gain=1.30619 1.29428 1.24298 1.34732 1.08994 1.07197 1.21078 1.03236 1.17777 0.963714 1.00658 0.957787 0.910877 0.867228 0.844142 0.845673 0.809037 0.800218 0.852078
threshold=0.00068244664000000012 1.0080371500000003 -0.0052452580999999988 0.018014781000000004 -0.011177159499999997 0.060636871500000009 0.018700948000000005 0.0016425384500000002 -0.015518954749999998 0.020325245500000002 0.0071223540000000009 -0.0024880780999999995 0.010865722000000001 0.015493489500000001 0.0055856145000000006 0.49516916500000008 -0.090699769999999985 0.00041014999500000004 0.016864073500000003
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=2 9 3 7 5 6 -4 8 -1 10 13 -8 -6 -2 -3 -16 -14 -9 -19
right_child=1 14 4 -5 12 -7 11 17 -10 -11 -12 -13 16 -15 15 -17 -18 18 -20
leaf_value=0.11211557854894733 0.21000886802190988 -0.10283681439895281 -0.14616675586101618 -0.15079164704881556 0.08614232818521847 0.13939846144660775 0.16804309207749668 -0.091648902059181053 -0.15792685405459753 0.07431467415265712 -0.16167319517522521 -0.044635040134483946 -0.15665588381889198 -0.20354475793115068 -0.16654175218027456 0.11684686260106608 0.17501542749249366 0.19416143167738642 -0.064592656917076566
leaf_weight=1.5269114915281536 0.58201373415067603 1.4650071712676433 1.9359750144649277 0.92803768557496447 0.9605416783597337 2.4738335197325796 1.5495401504449529 0.51551162870600808 1.1198392964433859 1.0406680810265241 5.9973335631657392 1.868164573330434 3.7293746760115027 0.31132363178767264 0.48872530111111734 3.0489829676225781 0.31937241367995728 5.1417188947089016 0.56499214703217138
leaf_count=37 11 53 77 33 28 63 33 17 40 28 370 47 144 28 24 65 9 93 14
internal_value=0 -0.0548318 0.0248419 0.0784913 -0.0161031 0.0305177 -0.0197941 0.102483 -0.00213928 -0.105078 -0.132171 0.0517903 -0.0889528 0.0658875 0.0248294 0.0776975 -0.130493 0.146987 0.168544
internal_weight=0 12.9341 22.6338 9.79701 12.8368 7.82751 5.35368 8.86897 2.64675 7.93134 6.89067 3.4177 5.00929 0.893337 5.00272 3.53771 4.04875 6.22222 5.70671
internal_count=1214 579 635 234 401 220 157 201 77 437 409 80 181 39 142 89 153 124 107
is_linear=0
shrinkage=0.2
Tree=26
num_leaves=20
num_cat=0
split_feature=552 169 280 101 107 443 115 436 100 421 333 512 406 27 297 201 280 54 396
split_gain=1.14207 1.21929 1.20838 1.04175 1.11658 0.966695 1.38649 1.03443 0.940385 0.916477 0.889774 0.824849 0.772698 0.717378 0.961632 0.601437 0.581988 0.626448 0.579512
threshold=0.014821335500000003 1.1539693000000002 0.0045455880500000012 0.0011669303000000004 0.0017550047500000002 0.033125281500000013 0.059273602500000008 0.059432663000000004 0.0089767240000000019 0.023647844500000004 -0.047170258999999992 0.021106337000000003 -0.05241709549999999 0.0035816428500000004 -0.034370775999999992 0.41082685000000008 -0.025890347499999997 0.00077323563000000013 0.0025701337500000005
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 3 9 4 -1 6 7 -2 -6 -3 11 13 -8 14 -7 -12 17 -14 -15
right_child=5 2 -4 -5 8 10 12 -9 -10 -11 15 -13 16 18 -16 -17 -18 -19 -20
leaf_value=-0.18127681555995967 0.1128861614354934 0.11197011796049304 -0.15344221924821033 -0.16820128233876944 0.13567307613021576 0.16289734378337761 0.1342684374140117 -0.15910638165113891 -0.14717980106516942 -0.18836073885515897 0.14342667941463572 -0.2087163259610251 -0.18699804202159043 -0.016081259586472323 -0.14315158233107414 -0.12377279549628424 -0.19444546109030358 0.1734824862876656 0.13795488410404955
leaf_weight=1.1597876823507234 2.8160434272140296 3.5351866113487636 1.1729830224066971 4.1718828459270298 1.7184123392216863 0.672822976252064 0.43718241481110487 0.69791957782581437 0.64724511629901815 0.45922079309821118 0.43358231475576658 0.37421121541410762 0.36493882723152715 1.1264529477339218 1.0539586355444015 1.5120791194494811 2.5608116181101646 0.40889002941548824 7.3616149006411433
leaf_count=102 65 86 52 283 33 14 11 15 26 14 14 13 16 38 43 61 130 11 187
internal_value=0 -0.0501159 0.0250322 -0.100564 -0.0205256 0.0264077 -0.0315267 0.0588648 0.0582844 0.0774423 0.0600819 0.082923 -0.115739 0.093607 -0.0239027 -0.0642285 -0.148515 0.00347934 0.117513
internal_weight=0 12.8647 5.16739 7.69733 3.52545 19.8205 7.28579 3.51396 2.36566 3.99441 12.5347 10.5891 3.77182 10.2148 1.72678 1.94566 3.33464 0.773829 8.48807
internal_count=1214 596 152 444 161 618 248 80 59 100 370 295 168 282 57 75 157 27 225
is_linear=0
shrinkage=0.2
Tree=27
num_leaves=20
num_cat=0
split_feature=386 419 553 342 524 121 297 467 13 214 321 89 455 183 344 142 552 425 387
split_gain=1.13079 1.16346 1.07201 0.941865 0.95601 0.88961 0.818758 0.917696 0.816698 0.832815 0.792368 0.785563 0.774302 0.908575 0.753759 0.714332 0.708296 0.696284 0.691396
threshold=-0.011817559499999998 -0.0045324819999999991 -0.034374836999999998 -0.068151864999999992 -0.017116093999999995 0.0048733925000000013 -0.03192491649999999 -0.0044885544999999994 0.0029613895500000004 0.91488360000000013 -0.017278359999999996 0.043233603500000009 0.015650920500000002 0.64828360000000018 0.016448466000000002 1.2518982000000001 0.022038470500000004 0.020842584000000001 -0.019018233499999999
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=2 8 6 11 10 12 7 16 -2 17 -5 -3 13 -4 -8 -15 -1 -10 -14
right_child=1 3 5 4 -6 -7 14 -9 9 -11 -12 -13 18 15 -16 -17 -18 -19 -20
leaf_value=-0.17707848376246788 -0.2032552590804286 -0.10918428971806596 0.11407958289605079 0.09078641863290221 -0.17359269483696343 -0.20653220346897544 -0.18308749713267758 0.16703676294967498 0.10574704796130495 -0.16961479566411652 -0.2043981599953153 0.17886063922452611 -0.21102443888574396 -0.18555034721004757 0.068859283535368007 0.13351999898916736 0.060506573800555213 -0.1299239022472389 0.13093493943343723
leaf_weight=0.95959349046461362 0.57768793264404195 0.70020402502268619 1.3851070690434428 1.1879475156310944 4.8160047237761248 0.4435331441927709 1.9331928272731631 1.2200583727098999 4.0502854867372662 0.62383081554435182 0.52428078674711365 0.82487650867551565 0.24505972815677513 1.1718685354571787 0.62969293352216471 0.36905287113040675 1.0523735238239167 0.57231498975306738 6.7737775307614356
leaf_count=39 68 37 40 45 276 23 101 29 145 32 43 13 7 57 23 10 25 20 181
internal_value=0 -0.0456518 0.0321577 -0.0948987 -0.127957 0.0706032 -0.0367627 0.0301813 0.0224445 0.0472964 0.000401507 0.0466117 0.0829632 -0.00346963 -0.121185 -0.109133 -0.0528079 0.0765691 0.118996
internal_weight=0 13.8774 16.1833 8.05331 6.52823 10.3884 5.79491 3.23203 5.82412 5.24643 1.71223 1.52508 9.94487 2.92603 2.56289 1.54092 2.01197 4.6226 7.01884
internal_count=1214 679 535 414 364 318 217 93 265 197 88 50 295 107 124 67 64 165 188
is_linear=0
shrinkage=0.2
Tree=28
num_leaves=20
num_cat=0
split_feature=560 322 468 414 150 189 406 547 369 430 16 210 393 508 238 437 552 330 487
split_gain=0.98859 0.83207 0.904867 0.808262 0.79633 0.782549 0.884593 0.810831 0.779375 0.751625 0.677789 0.674109 0.63434 0.651679 0.619367 0.63595 0.757585 0.601366 0.563866
threshold=1.0000000180025095e-35 -0.023410646999999996 -0.0056273009999999986 0.0052272035000000012 0.47646474500000008 0.69614220000000004 -0.032971359999999991 0.006651880350000001 -0.005720961499999999 -0.015956975999999998 0.0025294622000000002 0.30681689000000006 -0.0065225402499999993 0.049752992000000003 0.62135845500000009 0.00079707238000000012 0.025350937000000004 0.0022701258000000003 -0.018570518999999997
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=4 8 3 10 18 7 -7 12 17 -5 -3 -8 -6 -14 15 16 -10 -2 -1
right_child=1 2 -4 9 5 6 11 -9 14 -11 -12 -13 13 -15 -16 -17 -18 -19 -20
leaf_value=0.2209724566198645 -0.14978927208667403 -0.1229923295791827 -0.15461998634774968 0.11114857928300177 -0.18652549304470178 0.10962327998647348 0.16833388131788365 -0.13872951489039326 -0.18194653773804115 -0.097687538784658953 0.1486094116082545 -0.19775205356424078 0.091956374712471853 -0.20654222834555025 0.15567823752061816 0.11259121305017999 0.097491386390441859 0.17284437198322514 -0.18441766642055563
leaf_weight=0.14707680791616473 0.97005103342235066 0.44506705529056612 1.578610559925435 0.9204871407710028 0.41360308974981386 0.59592077741399441 0.22218391392380032 1.0970834279432891 0.8700013761408647 2.7455373841803512 2.1095443787053227 2.1301522254943848 4.3540741226170185 0.31362899183295656 3.5816058684140444 2.0083639589138329 0.7005892675369978 0.30335551081225276 2.0526046023005646
leaf_count=2 41 25 74 31 30 25 7 92 26 97 55 188 144 15 96 46 19 8 193
internal_value=0 0.0276975 -0.0193891 0.0149284 -0.0492913 -0.0232563 -0.108035 0.017199 0.0712405 -0.0452517 0.101291 -0.163174 0.0508648 0.0718999 0.0968793 0.0380368 -0.0572984 -0.0729303 -0.157312
internal_weight=0 16.2332 7.79925 6.22064 11.3263 9.12665 2.94826 6.17839 8.43397 3.66602 2.55461 2.35234 5.08131 4.6677 7.16056 3.57895 1.57059 1.27341 2.19968
internal_count=1214 518 282 208 696 501 220 281 236 128 80 195 189 159 187 91 45 49 195
is_linear=0
shrinkage=0.2
Tree=29
num_leaves=20
num_cat=0
split_feature=113 10 138 297 56 438 299 356 377 169 268 56 238 280 510 553 533 512 437
split_gain=0.853946 0.89357 0.809195 0.94947 0.809272 0.836995 0.757242 0.7787 0.793693 0.748184 0.677674 0.644177 0.640571 0.613406 0.569619 0.567366 0.520583 0.501567 0.491261
threshold=0.014354005500000001 0.29600562000000002 0.90379778000000011 -0.021090785999999997 0.0024037858000000001 0.0093374255000000014 0.026843774000000004 0.0026458020000000005 -0.0087203747499999974 1.1796688000000002 -0.013226759499999999 0.0016787744000000002 0.63366680000000009 -0.017928057499999997 -0.028311829999999996 -0.05874802149999999 0.0048165672500000006 -0.0071581628499999992 -0.020268401999999994
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=6 2 4 12 5 15 18 8 -8 13 -11 -7 -4 -6 -3 -2 -10 -18 -1
right_child=1 14 3 -5 9 11 7 -9 16 10 -12 -13 -14 -15 -16 -17 17 -19 -20
leaf_value=0.060638224611543917 -0.12885775408876457 0.050872406275825149 -0.12720938082993286 -0.17941143834583928 0.10887454085434359 0.1396724366684565 -0.20840041499305856 -0.16756568321270951 0.15895919224144492 0.15428068038609241 -0.096987813812688575 -0.13072878527560369 0.092635728148263374 -0.14003566597520842 -0.16249541163477021 0.15232755173153462 -0.19420655075344079 0.13051600960899798 -0.15262449227741784
leaf_weight=0.49835421238094602 0.30268246121704834 0.72773509798571501 0.74686040193773884 1.3272547672968347 0.5102801984176043 0.5634296992793677 0.3977083205245443 0.82245056924875815 1.6683193356730046 1.4815106159076097 0.60454000206664193 0.94094288442283869 1.827014355221763 1.7687067277729509 1.6026783406268794 5.5531545755220568 0.40183886908926147 0.36137542943470091 3.247841413132849
leaf_count=21 16 32 34 105 19 16 28 57 51 39 28 26 65 93 114 141 39 17 273
internal_value=0 0.0196639 0.0368932 -0.0420098 0.0631452 0.103609 -0.0610793 0.00373064 0.0535259 -0.00508359 0.0814628 -0.0294559 0.0288433 -0.084303 -0.0958655 0.137793 0.0963673 -0.0404532 -0.124254
internal_weight=0 17.9568 15.6264 3.90113 11.7252 7.36021 7.39789 3.65169 2.82924 4.36504 2.08605 1.50437 2.57387 2.27899 2.33041 5.85584 2.43153 0.763214 3.7462
internal_count=1214 728 582 204 378 199 486 192 135 179 67 42 99 112 146 157 107 56 294
is_linear=0
shrinkage=0.2
Tree=30
num_leaves=20
num_cat=0
split_feature=386 419 278 71 3 498 115 220 152 253 424 32 518 526 145 449 546 127 0
split_gain=0.736544 0.757508 0.691729 0.752794 0.689367 0.754644 0.661569 0.656332 0.60728 0.597647 0.564608 0.555844 0.530012 0.499126 0.565904 0.620984 0.490781 0.523471 0.478479
threshold=-0.012048514249999998 -0.0045324819999999991 0.0095992510000000014 0.048088826000000008 0.019799893000000002 0.0091812840000000014 0.071969560000000016 0.52971743000000016 1.2077790500000003 0.66038685000000008 0.010520390000000003 0.21882314500000002 0.028015770000000006 1.0000000180025095e-35 0.20999495000000004 0.015870503500000004 0.010773510500000002 0.051779762000000007 0.0021104672000000005
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=4 7 -3 9 6 8 -1 -2 13 -4 16 -5 -8 18 -15 -16 -9 -18 -6
right_child=1 2 3 11 5 -7 12 10 -10 -11 -12 -13 -14 14 15 -17 17 -19 -20
leaf_value=0.050273206861719461 -0.15691471073536889 -0.18377683303241632 -0.10589889888123194 -0.15629796640169802 -0.020598141171147735 -0.14358744681777832 -0.1895181487492964 0.11933183107779372 -0.12907417460231455 0.12900066904487764 -0.15457191318515845 0.17522071250118987 0.13941546911073163 -0.20731378046852253 0.1299693831424997 -0.11004908770579919 -0.19153057636484316 0.14696771064592165 0.13953215641694447
leaf_weight=1.28964100359008 0.71796425082720805 2.0249790491070581 0.65413395524956275 1.9453003526432442 0.87588218390009753 0.70686398865655142 1.3666472799377514 2.6892000073567042 0.5671760090626784 1.283056136453524 0.47033196047414083 0.22578018717467774 0.22873787279240776 0.40716218715533647 1.3234690900426356 0.63952246727421869 0.47583859576843668 0.29668050026521087 5.049383504781872
leaf_count=45 78 164 34 175 38 27 130 104 25 39 50 7 11 20 37 26 27 11 166
internal_value=0 -0.0419515 -0.0881077 -0.040952 0.0294469 0.0552828 -0.0562492 0.0189274 0.0711443 0.0496818 0.0510349 -0.121822 -0.142357 0.0848337 0.00726589 0.0517738 0.07897 -0.0615327 0.115861
internal_weight=0 10.7833 6.13325 4.10827 12.4545 9.56946 2.88503 4.65002 8.8626 1.93719 3.93205 2.17108 1.59539 8.29542 2.37015 1.96299 3.46172 0.772519 5.92527
internal_count=1214 689 419 255 525 339 186 270 312 73 192 182 141 287 83 63 142 38 204
is_linear=0
shrinkage=0.2
Tree=31
num_leaves=20
num_cat=0
split_feature=533 377 151 387 364 530 15 550 149 3 118 397 404 332 11 71 481 284 49
split_gain=0.684145 0.624888 0.628523 0.757864 0.67637 0.687717 0.649635 0.656896 0.584377 0.592841 0.565504 0.83684 0.691074 0.538785 0.50625 0.452439 0.447846 0.434209 0.430015
threshold=-0.032617386499999991 -0.012005873499999998 0.14480567500000002 0.047069356500000006 -0.0038724044499999998 -0.091408987999999983 0.019368641000000002 0.016946567500000002 1.1860181500000002 0.020512935500000003 0.197784345 -0.082004942499999983 0.0085932155000000027 -0.010910557999999999 0.0023047885500000003 0.034010000500000005 0.0021612360000000004 0.07957586500000001 0.039436910000000013
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=8 15 6 4 10 -6 -3 14 9 13 12 17 16 -1 -8 -2 -4 -12 -7
right_child=1 2 3 -5 5 18 7 -9 -10 -11 11 -13 -14 -15 -16 -17 -18 -19 -20
leaf_value=0.11847160266517648 0.099420856022927009 -0.20625986936108953 0.11424020249342781 0.12033285049082343 0.18391462970675737 0.030061546077806506 -0.098844690688797782 -0.10701140786020974 -0.096973942457700676 0.1629687193366767 -0.17583025781503814 0.10333385368223764 -0.20806029612583707 -0.16550100942714022 0.12632967411286042 -0.17158988787424467 -0.14588138485298477 0.076909217828217455 -0.18396096494383396
leaf_weight=0.55798213928937912 0.29149807244539871 0.36773507413453899 2.2911442645126971 1.1080467370338727 0.26246341841761189 0.43807813688180974 0.44972138968296338 0.71439971367362876 0.69049080903641868 2.2713832366280258 1.8699635916855193 0.77009302098304022 0.36988119559828181 0.51292475638911417 3.5678899839986116 1.5927939107641576 0.29933951050043095 0.31816476664971549 2.6293165356619284
leaf_count=21 10 29 88 47 11 24 55 47 32 81 108 29 17 21 116 168 26 15 269
internal_value=0 -0.0209277 -0.00767145 -0.0359728 -0.0546996 -0.126808 0.0498025 0.0697016 0.0705271 0.105131 -0.0141308 -0.0759746 0.0476682 -0.0175408 0.101124 -0.129665 0.0841822 -0.139081 -0.153395
internal_weight=0 17.3405 15.4562 10.3565 9.24844 3.32986 5.09975 4.73201 4.03278 3.34229 5.91859 2.95822 2.96036 1.07091 4.01761 1.88429 2.59048 2.18813 3.06739
internal_count=1214 1059 881 634 587 304 247 218 155 123 283 152 131 42 171 178 114 123 293
is_linear=0
shrinkage=0.2
Tree=32
num_leaves=20
num_cat=0
split_feature=53 115 67 264 83 363 555 6 41 328 117 349 128 143 332 427 180 524 83
split_gain=0.585739 0.637111 0.588759 0.569054 0.654247 0.623721 0.728618 0.635291 0.560794 0.549763 0.531094 0.524945 0.478949 0.454752 0.493849 0.396679 0.471669 0.407889 0.363574
threshold=0.16590571500000004 0.054868990500000006 0.019306333500000005 -0.024038999499999995 0.14410993000000002 -0.012601181999999999 0.0040150315000000011 0.011155888000000001 0.11356044000000001 0.012780795000000003 0.0033521705500000006 0.0018947254000000002 1.0273129500000002 0.52839490000000011 0.0047261437500000008 0.016368884500000003 1.1461107000000001 -0.0012288442499999999 0.058738514500000005
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 8 10 4 -2 9 -7 18 -1 15 -3 -9 -4 14 -11 16 -5 -18 -8
right_child=3 2 12 5 -6 6 7 11 -10 13 -12 -13 -14 -15 -16 -17 17 -19 -20
leaf_value=0.10478337106671953 0.16057349714444938 -0.14258936287040919 -0.17398629098405591 0.12964818074248502 -0.17516775963612585 0.11401454663195712 0.0044028247320471127 0.13917245705574663 -0.17068495402325604 0.13874707156470928 0.15642389935777382 -0.14034780203136923 0.16707276875746113 -0.14207056327367082 -0.1322171070236981 -0.13945807166643751 -0.20501727294789665 0.069475283389630868 -0.16496467040704965
leaf_weight=1.3069442310370529 1.7513180798850965 0.41506686841603402 2.5994178329710853 3.4250658828532323 0.26764232688583423 0.89251908124424151 0.63390371541027013 0.76466313772834815 0.38201729883439828 0.7539599097799512 0.55571998411323875 0.41439152741804719 0.17583993286825705 0.98938622081186611 0.41832699603401124 0.30830928613431741 0.34089599899016321 0.59361080324742932 2.5320850270800292
leaf_count=50 60 70 348 135 22 40 34 27 22 37 21 27 7 58 24 10 35 30 157
internal_value=0 -0.0595031 -0.105482 0.0177897 0.116066 0.00134695 -0.0505755 -0.0843841 0.0424766 0.0411661 0.0285786 0.040932 -0.152377 -0.0422186 0.0420543 0.0797812 0.0952858 -0.0306561 -0.131053
internal_weight=0 5.43501 3.74604 14.0861 2.01896 12.0671 5.23756 4.34504 1.68896 6.82956 0.970787 1.17905 2.77526 2.16167 1.17229 4.66788 4.35957 0.934507 3.16599
internal_count=1214 518 446 696 82 614 285 245 72 329 91 54 355 119 61 210 200 65 191
is_linear=0
shrinkage=0.2
Tree=33
num_leaves=20
num_cat=0
split_feature=552 257 169 43 74 443 228 61 333 305 222 63 299 51 441 134 460 484 3
split_gain=0.551232 0.618989 0.467584 0.50412 0.457952 0.432619 0.602971 0.440701 0.43588 0.462392 0.428391 0.386666 0.527503 0.498834 0.419859 0.380372 0.333479 0.422064 0.330349
threshold=0.014821335500000003 -0.013214989499999998 1.1295477500000002 0.0019391308000000003 0.0013039742000000001 0.033125281500000013 0.65338885000000013 0.0052146895500000011 -0.042606123999999995 -0.0081609684999999991 1.6388443500000001 0.0063448107500000007 0.018722556500000005 0.026183776500000002 0.037809651500000006 0.78896481500000004 0.013586071000000002 0.025260372000000003 0.022387166500000003
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 2 4 -4 -1 6 7 -2 11 -10 16 12 -7 -13 18 -3 -9 -18 -14
right_child=5 15 3 -5 -6 8 -8 10 9 -11 -12 13 14 -15 -16 -17 17 -19 -20
leaf_value=0.07916041549665985 -0.14504808037124972 -0.14348138930194113 0.12600861724351228 -0.11075466787988686 -0.13223468209621972 -0.13713746759372522 -0.139992652890818 0.15657144756330571 -0.17177475782736321 0.19735905461536254 -0.14209521916608411 -0.15358967310234217 -0.15596323448926416 0.13272035742426905 0.16856785497274462 0.10303040747150145 -0.20426689803475406 0.14298807620445689 0.075586920632201973
leaf_weight=0.59111596306320313 0.49595575593411778 2.5742748162592792 1.5347585063427689 0.46984377875924099 1.3371916807373052 0.69608707760926458 1.3093878204235805 1.3076877903658899 0.59811387694207951 0.17558671184815366 0.3423787923529743 0.26192899397574398 0.42228670639451571 3.4432412462774664 0.8697153660468756 0.27735179802402843 0.27559116133488704 0.28456989070400596 0.59191623190417886
leaf_count=44 51 311 63 23 144 58 88 53 48 9 19 14 42 147 25 11 27 10 27
internal_value=0 -0.0485604 0.00287962 0.0705154 -0.0674323 0.0238339 -0.0285763 0.0253326 0.0536484 -0.0880021 0.0635646 0.0710855 0.0116381 0.11248 0.066609 -0.119505 0.101262 -0.0278564 -0.0208243
internal_weight=0 6.78454 3.93291 2.0046 1.92831 11.0744 4.01557 2.70618 7.05888 0.773701 2.21023 6.28518 2.58001 3.70517 1.88392 2.85163 1.86785 0.560161 1.0142
internal_count=1214 596 274 86 188 618 248 160 370 57 109 313 152 161 94 322 90 37 69
is_linear=0
shrinkage=0.2
Tree=34
num_leaves=20
num_cat=0
split_feature=486 117 530 474 316 460 115 53 97 68 232 204 148 375 106 59 216 101 292
split_gain=0.505859 0.554667 0.535794 0.573817 0.483774 0.568692 0.451918 0.426261 0.434416 0.444792 0.362831 0.361975 0.361538 0.344703 0.391962 0.441224 0.369574 0.312061 0.306786
threshold=0.007201385900000001 0.0017915473500000002 -0.034538686999999992 -0.04736712399999999 -0.023609384499999997 0.017769955 0.13222501500000003 0.16265090000000001 0.0077514551500000002 0.0012315634000000001 0.72524543000000008 0.20777618500000003 0.37054784500000004 -0.0038299694499999994 0.21151519000000002 0.0061363277000000011 0.65039015000000011 0.0012391950000000002 0.020627897000000003
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=7 -2 4 -4 -3 6 13 11 12 18 17 -1 -9 14 15 16 -6 -8 -10
right_child=1 2 3 -5 5 -7 10 8 9 -11 -12 -13 -14 -15 -16 -17 -18 -19 -20
leaf_value=0.10643657033115875 -0.19743438982848865 0.16449100752186496 0.10232613616713471 -0.15760683580365836 -0.12508872218689182 -0.11724122832605749 0.16073243883425481 -0.19894656626415458 0.12122698241293002 -0.11284867986700656 -0.2025655811143075 -0.17140144646098068 0.0037200578288058548 0.12150298074338757 -0.20454137865748012 -0.17219624907269038 0.12307270506130351 -0.20132085288271334 -0.044006994541181829
leaf_weight=0.21529779315460729 0.43738679733360086 1.3048563858610567 0.4983288290677591 1.0672785323113192 0.28316216997336496 0.89299232698976982 0.31246805191040028 0.77453934447839834 1.5333083631703637 0.67751862597651769 0.45787381555419415 1.4562185759423298 0.64552628417732194 2.9374663813505331 0.27618564933072765 0.31068887561559666 1.5764339179731903 0.13696720777079463 0.6358568938449024
leaf_count=23 73 53 23 88 18 86 22 55 83 47 67 222 53 119 20 14 68 31 49
internal_value=0 0.0230444 0.0326354 -0.0748708 0.0524623 0.0321148 0.0533147 -0.0500035 -0.0164649 0.0286084 -0.0772615 -0.135615 -0.106819 0.0753195 0.0198673 0.048425 0.085285 0.0503952 0.0727912
internal_weight=0 10.4921 10.0547 1.56561 8.48909 7.18424 6.29125 5.93827 4.26675 2.84668 0.907309 1.67152 1.42007 5.38394 2.44647 2.17028 1.8596 0.449435 2.16917
internal_count=1214 682 609 111 498 445 359 532 287 179 120 245 108 239 120 100 86 53 132
is_linear=0
shrinkage=0.2
Tree=35
num_leaves=20
num_cat=0
split_feature=560 324 384 168 451 456 14 364 114 363 140 159 267 469 17 150 193 472 117
split_gain=0.431561 0.429356 0.417776 0.405189 0.402304 0.477803 0.41426 0.626407 0.396939 0.394394 0.370627 0.420263 0.356464 0.349245 0.333335 0.331591 0.321659 0.311675 0.29285
threshold=1.0000000180025095e-35 0.027201246500000002 0.0053711032000000004 0.28689718000000003 0.0024727284000000001 -0.0093780889999999974 0.0095632740000000018 -0.0091428944999999984 0.017640664000000004 -0.017818286499999999 0.78766162500000014 1.0981499000000003 -0.022340994999999995 -0.011570459499999998 0.015009533500000002 0.41371999000000009 1.21668825 0.0086996770000000011 0.0045822373500000015
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 8 3 -2 -5 -6 18 13 -1 14 15 -12 -9 -8 -10 -3 -17 -4 -7
right_child=2 10 17 4 5 6 7 12 9 -11 11 -13 -14 -15 -16 16 -18 -19 -20
leaf_value=-0.18237068534633205 -0.18835138788425904 -0.16400465484205581 -0.20421637460367129 0.10857619572737834 -0.12108591353042589 0.15948132501869669 -0.12283803636481777 0.072255269189665947 -0.16737918198678295 -0.16537508133772905 -0.17537794842624788 0.17324027914376106 -0.18231398559050782 0.11666020805288282 0.12014254067855984 0.094335138499465551 -0.13961318327695546 0.12234651465024514 -0.098695660123941098
leaf_weight=1.3135907347314053 0.30692130024544706 0.27910503803286779 0.50493709987495172 2.6971239096601494 0.87828417005948622 1.3142112968489534 0.29631926119327423 0.29518397548235953 0.21165760431904346 0.53674486279487588 0.71766204590676341 0.17134248575894162 0.864078764105217 1.3675775998272 0.67773090698756278 2.0097849084995691 0.26621949626132835 0.15212376811541617 0.2028681719675659
leaf_count=265 33 39 40 152 50 71 12 13 24 61 113 12 58 68 31 131 20 10 11
internal_value=0 -0.0439622 0.0248535 0.0371166 0.0458589 0.0134444 0.0406677 -0.00462688 -0.10305 -0.0299881 0.00304066 -0.108187 -0.117493 0.0740086 0.0517178 0.0417403 0.0669707 -0.12861 0.124957
internal_weight=0 6.18384 8.87963 8.22257 7.91565 5.21852 4.34024 2.82316 2.73972 1.42613 3.44411 0.889005 1.15926 1.6639 0.889389 2.55511 2.276 0.657061 1.51708
internal_count=1214 696 518 468 435 283 233 151 381 116 315 125 71 80 55 190 151 50 82
is_linear=0
shrinkage=0.2
Tree=36
num_leaves=20
num_cat=0
split_feature=503 364 311 336 491 143 398 29 429 342 386 545 59 393 13 190 301 378 316
split_gain=0.392752 0.555828 0.432467 0.374374 0.370268 0.38158 0.359474 0.34364 0.362769 0.379306 0.348043 0.366216 0.347 0.363568 0.332056 0.32104 0.269856 0.268527 0.261478
threshold=0.007885617000000001 0.0097528980000000012 0.040347414000000005 -0.0062025911499999998 -0.033254452499999997 0.23238181000000002 0.042850325000000002 0.050693038500000009 -0.0043033236999999993 -0.083613739999999978 0.0076830637000000002 -0.027544029999999997 0.007890707000000002 -0.011001707499999997 0.0042986493500000002 1.2660969500000003 0.030994913500000002 -0.0018349905499999996 0.017314021000000002
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=2 4 3 17 -2 -6 -3 -7 10 -10 12 -12 13 -9 -4 -15 -5 -1 -11
right_child=1 6 14 16 5 7 -8 8 9 18 11 -13 -14 15 -16 -17 -18 -19 -20
leaf_value=-0.17816927687159673 -0.16815637660264587 -0.18429912493842004 -0.20309033842835023 -0.15541940561213355 -0.12703624809918576 -0.20385500353282873 0.17013116498465797 -0.11441261598855255 0.13434269723663894 -0.13675601361680839 0.17363406392316555 -0.15078096283220391 -0.13264406393125547 0.11867791094208527 0.16601331883736778 -0.14207909032138755 0.12779492888248564 0.10645053866425769 0.18488591290735878
leaf_weight=0.17877425777260214 0.36165483691729328 0.78498384804697785 0.12219001096673299 1.9943969081796251 0.52669668709859152 0.21078719268552859 0.13400279788766056 0.30503446765941955 0.37343160295858968 0.91162382677430531 0.19252350577153265 0.50239524390781287 0.27203777490649361 5.4930872027762243 0.48236009769607335 0.19558762182714406 0.14431164984125633 0.51327390287770036 0.11371010157745332
leaf_count=13 28 133 19 293 41 18 8 27 16 102 9 65 29 329 23 16 9 30 6
internal_value=0 0.0158771 -0.062142 -0.0949356 0.0303047 0.0381947 -0.132618 0.0483492 0.0547087 -0.0382329 0.0733855 -0.0609035 0.0882792 0.0983063 0.0914111 0.109713 -0.136309 0.0329257 -0.101086
internal_weight=0 10.3776 3.43531 2.83076 9.45857 9.09692 0.918987 8.57022 8.35943 1.39877 6.96067 0.694919 6.26575 5.99371 0.60455 5.68867 2.13871 0.692048 1.02533
internal_count=1214 827 387 345 686 658 141 617 599 124 475 74 401 372 42 345 302 43 108
is_linear=0
shrinkage=0.2
Tree=37
num_leaves=20
num_cat=0
split_feature=533 311 247 248 246 259 424 224 362 149 0 65 107 181 102 32 140 58 326
split_gain=0.355465 0.404768 0.453967 0.518485 0.422449 0.373032 0.43233 0.325022 0.368534 0.304888 0.304247 0.292809 0.288863 0.365373 0.298923 0.268201 0.257443 0.246776 0.239856
threshold=-0.032004472999999999 0.0080276860000000009 0.64530580000000015 0.47633152000000006 1.1681084000000002 0.040860757000000004 0.014319868500000001 0.91933468500000015 0.021328385000000002 1.1860181500000002 0.0023158118500000006 0.19366953000000003 0.0016423185500000002 0.67172295000000015 0.26144023000000005 0.11128007300000002 0.39128080000000004 0.14639189000000002 0.055460812500000005
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=9 4 3 -3 16 -5 12 17 -9 11 -6 -1 13 -7 -15 -13 -2 -4 -11
right_child=1 2 7 5 10 6 -8 8 -10 18 -12 15 -14 14 -16 -17 -18 -19 -20
leaf_value=0.13592136182599593 0.010643568464134345 -0.14779877609110537 0.16547415165401883 -0.17975995156470767 -0.13084443018296049 0.11216033019342631 -0.1255659367793644 -0.20309381261123291 0.13547031702273873 -0.18085631464543842 0.14715341853825928 0.14500846370973827 0.11321305407344243 -0.2035281836259053 0.071173537551750113 -0.17891782228566408 -0.17457888015215378 -0.1730144017738322 0.13725672925867702
leaf_weight=1.6171820424497143 0.37487676308955853 0.5883361417800187 0.093568625394254812 0.26765984197845671 0.24727764562703658 0.62105260998941936 0.4445391668123192 0.18403417314402748 0.42698170500807464 0.31409831257769827 0.43359491252340376 0.16959284571930755 3.2228501988574862 0.42189010098809376 0.25375676067778841 0.25744811072945595 1.506018996966304 1.0872099710977634 0.13579860702157021
leaf_count=100 38 86 5 36 23 50 82 29 28 24 26 13 176 52 17 15 240 166 8
internal_value=0 -0.0200322 0.00311078 0.0302112 -0.0887977 0.0502293 0.0626301 -0.0849164 0.0334969 0.0642201 0.0461908 0.0970246 0.0811409 0.00142801 -0.100357 -0.0502754 -0.137663 -0.146191 -0.0848359
internal_weight=0 10.1736 7.61188 5.82008 2.56177 5.23175 4.96409 1.79179 0.611016 2.49412 0.680873 2.04422 4.51955 1.2967 0.675647 0.427041 1.8809 1.18078 0.449897
internal_count=1214 1054 727 499 327 413 377 228 57 160 49 128 295 119 69 28 278 171 32
is_linear=0
shrinkage=0.2
Tree=38
num_leaves=20
num_cat=0
split_feature=552 176 533 57 151 532 216 334 189 10 516 289 141 132 185 61 247 108 70
split_gain=0.31537 0.379309 0.323913 0.268165 0.277033 0.271998 0.286301 0.281865 0.260351 0.31763 0.273257 0.296314 0.260207 0.239136 0.231574 0.221587 0.234878 0.289196 0.268974
threshold=0.014029546750000002 0.67294873000000011 0.0090135245000000017 0.10042723800000002 0.32874700500000004 -0.089436374999999985 0.73176983000000007 0.015129419250000001 0.69388323000000007 0.23823868000000004 0.027777141500000001 -0.018955239999999995 0.79780497500000014 0.70684468000000011 0.23347171000000003 0.0050840687000000004 0.40787130500000007 0.027386903000000001 0.010856694500000002
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 2 14 -3 5 -5 -7 -8 9 13 11 -11 15 -2 -1 -10 18 -18 -17
right_child=8 3 -4 4 -6 6 7 -9 12 10 -12 -13 -14 -15 -16 16 17 -19 -20
leaf_value=-0.20400534113106381 0.10054210519513829 -0.20231316650589282 -0.18549267265295821 -0.16153452187772305 -0.16840742660778904 -0.20151464141353337 0.11565477731098471 -0.20265164138416278 -0.19303542773014959 -0.20233070167254372 -0.14366968868822419 0.079873019319005187 -0.14063472472256242 -0.076101052958313167 0.10952024547520184 0.16409214090181207 -0.19717185376071134 0.12724273838086772 -0.15783640087696565
leaf_weight=0.1035454548546112 3.0132082332856958 0.64617552913841825 0.21616474605980318 0.36577004817081649 0.62280829381779756 0.17404669267125417 0.89345279068220385 0.12710978375980631 0.19635421899147365 0.17891710973344732 0.52721739251865063 0.88498717988841225 0.64975236746249709 0.34127795655513171 1.0478256425121797 0.14006615825928737 0.12500524823553838 0.91042044258210808 0.40108555986080319
leaf_count=11 207 161 50 44 99 39 62 16 44 23 60 83 85 32 79 10 7 68 34
internal_value=0 -0.0473355 0.0391488 -0.0891366 -0.0556388 -0.0106284 0.0355766 0.0760101 0.0213506 0.0476632 -0.0259308 0.0324147 -0.0323634 0.0825708 0.0813242 0.00731636 0.0322691 0.0880767 -0.0745117
internal_weight=0 4.1969 1.36754 2.82936 2.18319 1.56038 1.19461 1.02056 7.36829 4.94561 1.59112 1.0639 2.42268 3.35449 1.15137 1.77293 1.57658 1.03543 0.541152
internal_count=1214 561 140 421 260 161 117 78 653 405 166 106 248 239 90 163 119 75 44
is_linear=0
shrinkage=0.2
Tree=39
num_leaves=20
num_cat=0
split_feature=518 483 533 91 42 349 114 398 270 533 247 216 408 528 110 71 371 297 449
split_gain=0.282844 0.28822 0.357376 0.344824 0.302583 0.353312 0.303251 0.299964 0.286116 0.357695 0.28498 0.25664 0.273492 0.319397 0.24741 0.241864 0.252384 0.216818 0.214727
threshold=0.028015770000000006 0.016425024000000007 -0.0090344109999999974 0.010184096000000002 0.29534205500000005 -0.011637953749999997 0.020878887000000002 0.046858724000000011 0.0079360590000000005 -0.033594984499999987 0.34840241500000008 2.4263887500000005 -0.025671220999999998 -0.067532722499999989 0.010884772250000002 0.047708547000000011 -0.0024940239999999996 -0.042208825999999991 0.0051160431500000001
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 8 3 4 5 -3 -7 11 9 -1 -11 12 13 -4 -6 -2 -17 -15 -5
right_child=15 2 7 18 14 6 -8 -9 -10 10 -12 -13 -14 17 -16 16 -18 -19 -20
leaf_value=0.16260428872414417 0.19460882199300569 0.13957817177152104 0.043995600842593012 -0.086570252907432865 -0.090938021198641097 -0.14262296337943905 0.096618858310733718 0.15927254595211426 0.13541212056637922 0.089004142729885924 -0.15030588453242311 0.14155130374532721 -0.16877369083800201 0.086102058029872974 0.1893782437356395 0.10772334724100796 -0.1534840837476911 -0.15201344083637208 0.14860778086433923
leaf_weight=0.3432595031335951 0.50070605846121974 0.27848984557203982 0.80104729000595387 0.18858023569919147 0.18690290476661164 1.3354102928715286 0.25190436642151315 0.20541959669208143 0.89928625494940195 0.28827024053316397 0.64308700757101178 0.18324477551504958 1.4194271332526134 0.17855343560222525 0.38615792663767934 0.38841195905115455 0.23901168018346652 1.0671643315290569 0.87979522297973745
leaf_count=25 35 18 92 18 17 156 21 14 59 31 69 9 261 19 19 28 29 229 65
internal_value=0 -0.0149563 -0.0338505 0.0123464 -0.0291599 -0.0682013 -0.104656 -0.0758816 0.0490303 -0.011915 -0.0762355 -0.089118 -0.101313 -0.0545285 0.0979535 0.0909455 0.00821861 -0.117883 0.107096
internal_weight=0 9.536 7.3621 3.50724 2.43887 1.8658 1.58731 3.85486 2.1739 1.27462 0.931357 3.64944 3.46619 2.04677 0.573061 1.12813 0.627424 1.24572 1.06838
internal_count=1214 1122 938 314 231 195 177 624 184 125 100 610 601 340 36 92 57 248 83
is_linear=0
shrinkage=0.2
Tree=40
num_leaves=20
num_cat=0
split_feature=220 120 321 364 16 92 94 177 189 364 357 218 427 70 413 47 38 145 51
split_gain=0.268391 0.316819 0.285974 0.26524 0.275479 0.251817 0.273104 0.46707 0.277245 0.280606 0.245861 0.239248 0.284519 0.225721 0.223186 0.21753 0.213283 0.262863 0.212514
threshold=0.52260982500000008 0.0074361765500000005 -0.028294094999999995 -0.0059565254499999989 0.0033941886000000004 0.017994474500000003 0.25012406000000004 0.66115816500000013 0.58920668500000006 0.0097528980000000012 0.011443794500000002 0.83365847500000012 -0.0082751759999999987 0.017260245000000004 -0.0276681355 0.017271555000000004 0.31766973500000006 0.69385235000000012 0.031016764000000002
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=2 3 15 4 14 -3 7 10 9 -8 -7 12 -6 -12 -2 -1 -10 18 -18
right_child=1 5 -4 -5 11 6 8 -9 16 -11 13 -13 -14 -15 -16 -17 17 -19 -20
leaf_value=0.15091632859149026 -0.19681568516601999 -0.2020465849570186 -0.1344400538142905 -0.14681838510326325 0.18097059281940342 0.16911210232052018 0.12891367276304475 -0.18204036118399977 -0.12311048240691785 -0.11255651014539184 -0.20342577867942879 0.17442325274771758 -0.15037330526063572 0.098684129823975814 0.097103610889042374 -0.17874497435245382 -0.14656318680177635 -0.088033154762225563 0.12336505808892793
leaf_weight=0.29691283521242429 0.38074367065564729 0.17486208723857988 1.0936677775462165 0.79199582134606128 0.1595286795636639 0.40274771145777755 2.3219156759441835 0.5375958185759373 0.39182852674275626 0.2099017470027319 0.19849130959482864 0.42399053787812591 0.29599676909856498 0.19720960519043729 0.14183793240226827 0.10962718410883099 0.1318100589851382 0.4497959617874584 1.0155681766918858
leaf_count=22 77 35 233 209 12 25 174 56 44 25 19 32 26 14 12 31 27 50 91
internal_value=0 0.0107834 -0.0812015 -0.0542954 -0.00203235 0.0344563 0.0415173 -0.0379264 0.0649955 0.108894 0.0591055 0.0663021 -0.034334 -0.0528601 -0.117041 0.0620202 0.00911611 0.0415547 0.0923559
internal_weight=0 8.22582 1.50021 2.19409 1.4021 6.03173 5.85686 1.33604 4.52082 2.53182 0.798449 0.879516 0.455525 0.395701 0.522582 0.40654 1.989 1.59717 1.14738
internal_count=1214 928 286 368 159 560 525 114 411 199 58 70 38 33 89 53 212 168 118
is_linear=0
shrinkage=0.2
Tree=41
num_leaves=20
num_cat=0
split_feature=115 336 138 296 280 417 172 486 429 364 292 186 41 414 424 516 66 393 283
split_gain=0.243518 0.236053 0.241495 0.231575 0.222788 0.281705 0.373437 0.257587 0.248042 0.23658 0.232046 0.219769 0.212149 0.201445 0.187424 0.180236 0.196387 0.179395 0.178934
threshold=0.15447735000000004 0.016308017500000004 0.77180272500000013 0.0018359153000000001 -0.011760257499999998 0.039179327000000007 0.72521527000000019 0.014564326000000001 -0.037383511499999987 -0.0092494904999999971 -0.0034872613499999996 0.79155031500000017 0.076535037000000014 0.025163539500000002 0.011023908500000002 0.026204252000000001 0.00180231235 0.0082796135000000014 -0.0010983782499999998
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=4 2 3 -2 7 6 8 13 -6 -7 -11 14 -12 15 -10 16 -1 -9 -18
right_child=1 -3 -4 -5 5 9 -8 17 11 10 12 -13 -14 -15 -16 -17 18 -19 -20
leaf_value=-0.1565105691522253 -0.20147937882148881 -0.15801768336126359 -0.15746084536018212 0.097385412721499837 -0.16692626772739358 0.12442168625235038 -0.15099551611333342 0.0049721381794081074 0.11908923631817414 0.16419886324699873 0.049170579709331683 -0.18353837025221703 -0.17403523286369391 -0.20302837488853043 -0.10712961224852025 0.14737609347331829 -0.11526240739836785 0.15474728332539564 0.1359295072432132
leaf_weight=0.29962387902196519 0.12331629241816677 0.71562151440593869 0.31646562105743214 0.65212948285625316 0.26704912481363852 0.81432780018076301 1.0315768527216276 0.44986946991411958 0.84015325014479481 0.20226900628767908 0.29633345076581441 0.14499987335875619 0.40057827791315503 0.18373474711552251 0.1774357752292417 0.32904595509171486 0.17420378513634194 1.1070801431778816 0.3251698958920316
leaf_count=30 39 259 121 89 30 57 164 41 61 13 28 24 49 17 26 30 20 89 27
internal_value=0 -0.0687399 -0.0102286 0.049858 0.0135517 -0.0159342 -0.0592835 0.056461 0.00689267 0.046331 -0.0243905 0.0468193 -0.079126 -0.0088301 0.0796437 0.0228008 -0.0285023 0.111471 0.0483026
internal_weight=0 1.80753 1.09191 0.775446 7.04345 4.17472 2.46121 2.86873 1.42964 1.71351 0.899181 1.16259 0.696912 1.31178 1.01759 1.12804 0.798998 1.55695 0.499374
internal_count=1214 508 249 128 706 452 305 254 141 147 90 111 77 124 87 107 77 130 47
is_linear=0
shrinkage=0.2
Tree=42
num_leaves=20
num_cat=0
split_feature=533 483 536 135 404 318 142 285 257 506 347 221 417 489 32 268 93 169 289
split_gain=0.22041 0.286291 0.25212 0.258941 0.24474 0.221451 0.211227 0.296828 0.240374 0.238327 0.194487 0.230356 0.201829 0.19611 0.19138 0.186079 0.181982 0.178612 0.178428
threshold=0.00068244664000000012 0.011662863500000002 -0.019628883999999996 0.52082977000000008 -0.017659388999999994 0.0011542824500000001 0.87146995000000016 0.0030522191500000004 -0.015878405999999994 0.0018549213500000002 0.015797997000000005 1.0510045500000003 0.031486058500000004 0.021078978500000001 0.13922683000000002 -0.060026588499999992 0.0031403015 1.1073246000000003 0.014974947000000002
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=6 -2 3 4 -3 -6 7 -1 9 18 13 14 -13 -8 16 -4 -12 -16 -9
right_child=1 2 15 -5 5 -7 10 8 -10 -11 11 12 -14 -15 17 -17 -18 -19 -20
leaf_value=-0.20182128410231118 0.12349467916394695 -0.12739329840514585 0.2029313823031027 -0.15936832441062829 0.11518721475037037 -0.17441603163712727 -0.111098857346227 -0.20221694724149986 -0.091826924593997494 0.14722740453160074 0.15838329558700226 -0.16796871475968569 0.098688267763708759 0.08957078781613545 -0.13484068303880783 -0.18410756709618981 -0.042664880322659776 0.1025913977354819 0.17072768724533055
leaf_weight=0.34552725148387242 0.34207349829375777 0.32475641334895078 0.052987789735198021 0.4296875567524695 0.76888603405677702 0.12243428756482899 0.51610421226359937 0.16977751353988413 0.59059603424975637 0.565444968175143 1.5050575062050491 0.26307751715648908 0.19973951880820096 0.31291131442412734 0.23198961431626219 0.79779978364240345 0.20456667477264989 0.27932690852321684 0.073540793382562697
leaf_count=84 37 67 4 134 102 35 58 26 142 48 121 31 18 28 23 200 20 30 6
internal_value=0 -0.0480947 -0.0716056 -0.0259084 0.0212483 0.0754065 0.0210627 -0.035816 0.00517375 0.0760081 0.0493158 0.0754711 -0.0528867 -0.0353562 0.102219 -0.160002 0.134327 -0.005134 -0.0894977
internal_weight=0 2.83863 2.49655 1.64576 1.21608 0.89132 5.25766 1.74489 1.39936 0.808763 3.51277 2.68376 0.462817 0.829016 2.22094 0.850788 1.70962 0.511317 0.243318
internal_count=1214 579 542 338 204 137 635 306 222 80 329 243 49 86 194 204 141 53 32
is_linear=0
shrinkage=0.2
Tree=43
num_leaves=20
num_cat=0
split_feature=552 169 280 133 319 306 517 117 198 211 297 476 111 12 455 315 216 265 183
split_gain=0.19674 0.203018 0.221485 0.189815 0.19647 0.172249 0.165706 0.156424 0.188168 0.22239 0.279916 0.18297 0.181919 0.168746 0.181205 0.163935 0.159949 0.147272 0.13962
threshold=0.014821335500000003 1.1629726500000002 0.0045455880500000012 0.55692685000000008 0.007569248350000001 0.0042973848000000007 0.0030437607000000006 0.0023873334000000007 0.69577797500000016 0.65952507500000013 -0.043155444999999994 0.011667578500000003 0.12874394000000003 0.0070281868500000006 0.051732860500000012 -0.0089150062499999978 2.6133091500000005 -0.038242841499999992 0.50138280000000013
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 3 5 -1 -5 -3 -6 11 9 12 18 -2 -9 14 -10 -13 17 -12 -11
right_child=7 2 -4 4 6 -7 -8 8 13 10 16 15 -14 -15 -16 -17 -18 -19 -20
leaf_value=-0.20132652310612592 -0.20144445985506634 -0.12342655426584366 -0.14619652362389901 -0.13289445792316987 0.10730408482519226 0.10765166691296955 -0.10857685743477363 0.12306383850346836 -0.10270633996976203 -0.087998437386142186 -0.15974845243337898 0.080430062969493718 -0.15139655557494286 0.12173675896548286 0.1709800564893269 -0.20158832033309482 0.2028756325720126 0.14363770989408889 0.16307561317876113
leaf_weight=0.44710447514080476 0.25113519828300912 0.15677548074745551 0.25061761743563693 0.57249102470814228 0.39581261490820907 0.72915560664841905 0.22198682755697519 0.65955274295993227 0.31717336106521532 0.12868420360609911 0.7921070827287624 0.33892349875532091 0.11317625379888341 1.3295702768373301 0.13925029058009386 0.10895095218438655 0.059853023383766413 0.069627302727894191 0.28437134972773492
leaf_count=159 72 29 50 162 52 68 76 59 75 12 130 53 17 117 10 28 5 12 28
internal_value=0 -0.0451415 0.0198013 -0.0902196 -0.048485 0.0667598 0.029734 0.0223166 0.0379567 -0.00252041 -0.051957 -0.0647965 0.0828655 0.0857175 -0.0192074 0.0118256 -0.113276 -0.135235 0.0848555
internal_weight=0 2.77394 1.13655 1.63739 1.19029 0.885931 0.617799 4.59238 3.89337 2.10737 1.33464 0.69901 0.772729 1.78599 0.456424 0.447874 0.921587 0.861734 0.413056
internal_count=1214 596 147 449 290 97 128 618 465 263 187 153 76 202 85 81 147 142 40
is_linear=0
shrinkage=0.2
Tree=44
num_leaves=20
num_cat=0
split_feature=344 417 416 63 325 32 193 295 110 29 496 365 420 452 440 307 435 142 251
split_gain=0.179953 0.276256 0.262522 0.246372 0.18806 0.175512 0.162873 0.208701 0.161541 0.161181 0.160125 0.159009 0.145392 0.134781 0.131775 0.126366 0.193681 0.123977 0.125598
threshold=0.01062914 0.023619094500000003 0.056768566500000006 0.0085512205000000032 -0.014943375499999998 0.13071868 0.78199658500000002 -0.0028269274999999996 0.011662188000000002 0.25217803500000008 0.015502704000000001 -0.027104352499999994 -0.049094222499999993 -0.017694478999999996 -0.011545418499999998 -0.019494111999999997 -0.030510201499999997 1.1164939000000003 1.0498755000000002
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 11 6 4 5 10 7 13 -4 -5 -3 -1 -13 -2 -9 16 -8 -6 -19
right_child=2 3 8 9 17 -7 15 14 -10 -11 -12 12 -14 -15 -16 -17 -18 18 -20
leaf_value=0.05132888656532756 -0.15146741846270548 -0.082196673557054303 -0.14708317806494964 0.14152442211473942 -0.20116558481884575 -0.16939424303295911 0.18059417759106813 0.17575375704722104 0.039106026758877893 -0.1364161253295389 0.13746148181895151 0.14176974871526118 -0.16987928535650229 0.10519771891685976 -0.13607119945832657 0.14287546226259262 -0.12136852277222202 0.07551551211165114 -0.14868661886492379
leaf_weight=0.19024518743390217 0.093513781175716182 0.18760841971379738 0.46547931828536082 0.60594650454004284 0.33956991630839173 0.14649636310059577 0.14501286391168833 0.06227390025742352 0.31088541813369375 0.096789092058315873 0.4539480551466113 0.064196979976259172 0.89010897657135524 0.65544394128664862 0.41858984687132794 1.0222614198719382 0.20518695592181746 0.19946777902077883 0.20031568745616823
leaf_count=33 17 43 107 64 137 29 15 8 55 12 53 10 266 87 86 116 28 23 25
internal_value=0 -0.0357542 0.0295409 0.00523978 -0.03985 0.0281249 0.0599916 0.00713418 -0.0725261 0.103243 0.0732275 -0.11563 -0.148914 0.0731509 -0.0956885 0.107356 0.00367002 -0.112302 -0.0368233
internal_weight=0 3.37469 3.37865 2.23014 1.52741 0.788053 2.60228 1.22982 0.776365 0.702736 0.641556 1.14455 0.954306 0.748958 0.480864 1.37246 0.3502 0.739353 0.399783
internal_count=1214 695 519 386 310 125 357 198 162 76 96 309 276 104 94 159 43 185 48
is_linear=0
shrinkage=0.2
Tree=45
num_leaves=20
num_cat=0
split_feature=53 536 106 541 496 54 491 348 312 323 207 364 503 9 330 407 446 37 454
split_gain=0.165171 0.199566 0.177982 0.171577 0.164981 0.174803 0.161329 0.233628 0.159475 0.157304 0.142046 0.1247 0.200806 0.180678 0.121916 0.120056 0.11952 0.129087 0.163517
threshold=0.22028879000000004 -0.030019358999999999 0.26135792000000008 -0.026343963499999998 0.011410414250000002 0.0005336913500000001 -0.010472661999999999 -0.024375352999999999 0.025458160500000004 0.016525320000000007 0.30840179000000006 -0.00055952213999999989 0.032284209500000008 0.034231190000000002 0.010007913000000002 0.0076881318500000009 -0.013324890249999997 0.017345349500000003 -0.00018374935999999998
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 3 8 -1 10 -6 -5 -8 14 -10 -2 16 13 -13 -3 -11 -7 -18 -19
right_child=4 2 -4 6 5 11 7 -9 9 15 -12 12 -14 -15 -16 -17 17 18 -20
leaf_value=0.12007033310814329 0.13759890310205877 -0.19202823817715206 -0.20105483427654647 -0.16079204945092337 -0.17032026738521655 0.13272818491225008 -0.17455517162723835 0.09021902028808175 -0.13318258542318476 0.12111883902501992 -0.12970082902997115 -0.16616605478571431 0.14253440497252731 0.14039081439441692 0.038153251036319474 -0.12434015497362072 0.12487374481382479 0.13591150710266436 -0.11098668705232287
leaf_weight=0.451197893708013 0.099269459809875449 0.36787291662767507 0.39634933431807429 0.26923856951179914 0.1380590503686111 1.0278187773656107 0.1799412009131629 0.51428973235306352 0.20755166535673197 0.41003556037321687 0.39978150912793353 0.32803536712890435 0.21508735069073737 0.10045285662636161 0.1227537481172476 0.098936821275856346 0.34748274134472001 0.15604170871665701 0.34348013554699719
leaf_count=70 16 117 222 71 37 117 58 93 44 45 81 60 21 10 23 21 44 20 44
internal_value=0 -0.036464 -0.0847693 0.0182892 0.0289788 0.0488001 -0.0293755 0.0215909 -0.0465887 0.013564 -0.0765305 0.0608124 -0.0151472 -0.0942982 -0.134437 0.0734052 0.0868872 0.0312603 -0.0338601
internal_weight=0 3.01817 1.6035 1.41467 3.15551 2.65646 0.96347 0.694231 1.20715 0.716524 0.499051 2.5184 0.643576 0.428488 0.490627 0.508972 1.87482 0.847005 0.499522
internal_count=1214 764 472 292 450 353 222 151 250 110 97 316 91 70 140 66 225 108 64
is_linear=0
shrinkage=0.2
Tree=46
num_leaves=20
num_cat=0
split_feature=386 89 91 484 350 553 361 306 311 217 399 95 191 224 16 476 471 138 133
split_gain=0.159127 0.16912 0.237244 0.209463 0.162658 0.158045 0.147978 0.153454 0.141649 0.185641 0.128111 0.127985 0.132807 0.126015 0.119373 0.110453 0.101698 0.100464 0.0998914
threshold=-0.012340231499999998 0.042772775500000006 0.0086900610000000007 0.016002716500000003 -0.08409937499999999 -0.037481693499999989 -0.00068455296499999989 0.0053262052500000013 0.012029958000000002 0.86642318500000004 0.010142689000000002 0.0041038233500000007 0.85994362500000021 0.95248183500000005 0.0033668203000000005 0.022724830500000005 0.0063104323000000009 0.95937968000000007 0.29943621500000006
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=5 3 4 -2 -3 6 7 -1 9 -7 17 -10 -13 -11 15 -9 -8 -5 -4
right_child=1 2 18 10 -6 8 16 14 11 13 -12 12 -14 -15 -16 -17 -18 -19 -20
leaf_value=-0.20129839932972132 -0.12768262833088737 0.12464140815141611 -0.20080538834877279 0.090392080238269168 -0.17690370751078294 -0.15049719163483807 -0.16516016990252885 -0.2010662806269759 -0.17294790417389291 0.10585861095673876 -0.18383438315730466 0.137955109169802 -0.09322343743074224 -0.14773241340272877 0.17390640303493143 0.14275793441906756 0.079921292158153107 -0.16122194602006723 0.13714691182722208
leaf_weight=0.088435091922292486 1.1081770479795525 0.098368924140231684 0.037551881541730836 0.46172554724034842 0.26248636236414302 0.24613629479426924 0.37367223718320053 0.085368208863656037 0.064347290637669974 0.43191908489097841 0.10708755177620333 1.078655536053702 0.10948946146527294 0.095759466610616073 0.25222685106564313 0.066476748383138329 0.08271690717083402 0.073591300322732423 0.51173131138057215
leaf_count=24 341 11 18 85 74 50 75 36 17 72 53 157 24 12 30 10 13 35 77
internal_value=0 -0.0386519 0.0312785 -0.0750091 -0.0947027 0.0286655 -0.038695 0.0373344 0.0602096 -0.00706531 0.0158552 0.101773 0.116652 0.0598387 0.0895615 -0.0505422 -0.120741 0.0558021 0.114043
internal_weight=0 2.66072 0.910138 1.75058 0.360855 2.9752 0.948896 0.492507 2.02631 0.773815 0.642404 1.25249 1.18814 0.527679 0.404072 0.151845 0.456389 0.535317 0.549283
internal_count=1214 694 180 514 85 520 188 100 332 134 173 198 181 84 76 46 88 120 95
is_linear=0
shrinkage=0.2
Tree=47
num_leaves=20
num_cat=0
split_feature=10 34 224 322 120 63 143 64 94 364 492 423 189 168 491 275 372 157 533
split_gain=0.137552 0.143694 0.168072 0.132114 0.131125 0.183335 0.154928 0.149454 0.129142 0.121791 0.134681 0.117342 0.114878 0.184417 0.11139 0.111263 0.137735 0.105702 0.0997625
threshold=0.29600562000000002 0.37594812500000002 0.51031760000000015 -0.0021697391999999996 0.0074015565000000007 0.0067332040000000004 0.30034670500000005 0.084127195000000016 0.58305640000000014 0.0094641955000000031 -0.088234552999999979 0.034998216000000006 0.57705876500000008 0.8591042350000001 -0.033254452499999997 0.023271995000000004 -0.0014164641999999997 0.41813142500000006 -0.032004472999999999
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 2 -1 12 5 -3 8 -7 17 14 -11 15 -4 -14 -8 16 -2 -6 -16
right_child=11 4 3 -5 6 7 9 -9 -10 10 -12 -13 13 -15 18 -17 -18 -19 -20
leaf_value=-0.19382575592952375 -0.14493440090092752 -0.16565999605676424 0.12297122310543858 -0.18036230910202911 0.13200613212711576 0.1210341682339196 -0.20131109591471308 -0.16241894414640831 0.17945608042656436 0.20256894615432156 -0.20123356331425934 0.066042352330270504 -0.16957989239137156 0.075699721236660703 0.18848867626385693 -0.18075076978208582 0.11235037320326456 -0.16023164329419623 0.077084995001251599
leaf_weight=0.24617634118476395 0.17746259421983268 0.28156602617673376 0.29600284427579027 0.14993178378790617 0.060373154410627072 0.2838348762888927 0.049085810780525319 0.10084050145815127 0.077074511675164104 0.046318626031279564 0.1152396096731535 0.19265278940292774 0.2226400725194253 0.27291504040476866 0.42484460864216078 0.39844747144525172 0.15673931568744581 0.27507506022811867 1.3222600948647592
leaf_count=124 75 94 51 41 10 46 9 36 9 4 29 45 72 40 62 201 36 46 184
internal_value=0 0.012291 -0.0466909 -0.00821878 0.0353604 -0.0430308 0.0573948 0.0467285 -0.0539961 0.0808663 -0.0854637 -0.0728488 0.0243875 -0.0344981 0.0958269 -0.109371 -0.0242689 -0.107635 0.104175
internal_weight=0 4.22418 1.18767 0.94149 3.03651 0.666241 2.37027 0.384675 0.412523 1.95775 0.161558 0.925302 0.791558 0.495555 1.79619 0.732649 0.334202 0.335448 1.7471
internal_count=1214 857 328 204 529 176 353 82 65 288 33 357 163 112 255 312 111 56 246
is_linear=0
shrinkage=0.2
Tree=48
num_leaves=20
num_cat=0
split_feature=552 176 344 493 57 517 532 271 419 277 400 53 396 533 195 65 90 219 550
split_gain=0.12336 0.137561 0.108139 0.114326 0.107367 0.118656 0.107637 0.106992 0.097412 0.137585 0.133203 0.127701 0.113706 0.111693 0.0991369 0.11084 0.0983015 0.0982442 0.0935417
threshold=0.014821335500000003 0.67041875000000017 0.027501945500000003 -0.00039810010999999991 0.10042723800000002 0.0070992117000000009 -0.089436374999999985 -0.0040826922499999996 -0.0066145756499999993 -0.033391541999999989 0.0036187493000000006 0.14757038000000003 0.011437041500000002 -0.019845846999999996 1.2064565 0.20831292500000004 0.013059551500000001 0.33805769000000002 -0.027882248999999994
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 2 3 -1 -3 6 -6 -5 9 -2 11 -10 13 -11 15 -13 -14 -12 -17
right_child=8 4 -4 7 5 -7 -8 -9 10 12 17 14 16 -15 -16 18 -18 -19 -20
leaf_value=0.074097255213815605 -0.20124435067530594 -0.20097157971402477 0.18154965570356854 -0.19350006028437222 -0.16219482999271995 -0.15465261279984976 0.042351900850712471 0.1843512044667629 -0.14300831402711478 0.10248353943799358 0.14836467282657209 0.10050196563132541 0.13355216789021329 -0.14122696994276576 -0.13201222961938441 0.19179846694615613 -0.055427241327570181 -0.15609208725032075 -0.17043475265649433
leaf_weight=0.25486825576808769 0.075548243898083567 0.25079176459985297 0.14722255541710183 0.16889008640282555 0.13136319746263325 0.30646126608917257 0.47500285356363747 0.036443964228965231 0.16419438095181238 0.13773078401573002 0.048769670538604371 0.75462716945912667 0.86048345557355788 0.16573654381500069 0.11037026206031442 0.03743431402835995 0.12625569556257688 0.32434958498924971 0.11969526056782342
leaf_count=55 18 166 17 70 33 151 99 5 80 26 8 131 149 48 21 6 35 66 30
internal_value=0 -0.0447955 0.0323521 -0.0153774 -0.0850675 -0.0532239 -0.00196112 -0.126437 0.0220852 0.0610845 -0.0120703 0.0207109 0.0764452 -0.0306172 0.0470107 0.0686818 0.109372 -0.116297 -0.0841369
internal_weight=0 1.77104 0.607425 0.460202 1.16362 0.912827 0.606366 0.205334 2.9252 1.36575 1.55944 1.18632 1.29021 0.303467 1.02213 0.911757 0.986739 0.373119 0.15713
internal_count=1214 596 147 130 449 283 132 75 618 276 342 268 258 74 188 167 184 74 36
is_linear=0
shrinkage=0.2
Tree=49
num_leaves=20
num_cat=0
split_feature=103 322 249 122 210 138 445 300 267 70 143 504 423 465 199 403 97 41 405
split_gain=0.117502 0.118634 0.115943 0.127887 0.119438 0.116288 0.112859 0.106004 0.100337 0.113755 0.109011 0.0967855 0.0944785 0.0884572 0.0863278 0.0830972 0.0863184 0.0775739 0.0760253
threshold=0.0089964515000000023 -0.017716574999999995 0.36741792500000009 0.00059242849000000009 0.7502593500000001 1.0091077000000002 -0.018441134999999997 -0.0010810597999999997 -0.019438342999999993 0.015329220000000003 0.50999580000000011 -0.0017988881999999996 -0.015351457499999999 -0.010253776999999997 1.2699048500000003 -0.0078961357499999982 0.0082437202500000011 0.13225095000000001 0.012695976500000003
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=1 6 3 7 5 12 -1 -2 10 11 -6 -10 -4 -12 -7 16 -8 18 -14
right_child=2 -3 4 -5 8 14 15 -9 9 -11 13 -13 17 -15 -16 -17 -18 -19 -20
leaf_value=-0.14726387665090587 -0.17108843581082689 -0.15720211717650712 -0.1587028045717237 -0.14150756020237856 0.1419141986725504 -0.13087526437998256 -0.087969979691519748 0.1219494292658318 0.20171517686703477 -0.15637490503078597 0.17155839238115014 -0.062216896572616733 0.13228234444709897 -0.15684843773255219 0.16610788172371421 -0.17328629624433092 0.15827250477001994 -0.082280197303356575 0.033329164410974055
leaf_weight=0.1591652740171412 0.067305410659173504 0.3576787607235018 0.063771988818189462 0.36199603712884709 0.22830621059983969 0.18981721186719358 0.076141655452374835 0.18538650609843932 0.081281253136694431 0.32859568695857888 0.044588993187062442 0.17573233420262102 0.99472349288407691 0.12416071078041568 0.04932510998332873 0.053953797367285006 0.22582889201294165 0.098231028532609233 0.45155153490486555
leaf_count=124 28 246 11 78 34 56 37 40 11 119 6 44 155 33 7 26 43 31 85
internal_value=0 -0.068715 0.0134413 -0.0652893 0.0305415 0.060507 -0.00726946 0.0438977 -0.025794 -0.0784174 0.0518191 0.0212523 0.0798562 -0.070073 -0.06962 0.0553344 0.0961826 0.0897062 0.101387
internal_weight=0 0.872768 3.44477 0.614688 2.83009 1.84742 0.51509 0.252692 0.982665 0.585609 0.397056 0.257014 1.60828 0.16875 0.239142 0.355924 0.301971 1.54451 1.44628
internal_count=1214 476 738 146 592 345 230 68 247 174 73 55 282 39 63 106 80 271 240
is_linear=0
shrinkage=0.2
Tree=50
num_leaves=20
num_cat=0
split_feature=220 177 147 151 321 510 33 44 209 473 353 441 227 386 232 47 416 184 160
split_gain=0.10686 0.119976 0.141887 0.133776 0.118161 0.104588 0.101815 0.112407 0.107166 0.0990043 0.0945968 0.0928805 0.0857339 0.0793494 0.0763942 0.0735407 0.0717014 0.0797578 0.070587
threshold=0.52260982500000008 0.73273525000000006 1.1524307000000003 0.48107347500000003 -0.028294094999999995 -0.014434438499999999 0.10659844000000002 0.027072424000000001 0.36674391000000006 0.0099117922500000007 0.0077240287000000006 0.054996593500000003 1.7756673500000002 -0.0052800909499999991 0.92432618000000011 0.017271555000000004 0.057840661500000008 0.50517425000000016 0.28305853500000006
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=4 3 5 6 15 9 7 8 -2 -3 -9 12 18 -4 -6 -1 -12 -18 -11
right_child=1 2 13 -5 14 -7 -8 10 -10 11 16 -13 -14 -15 -16 -17 17 -19 -20
leaf_value=0.15028086684773312 0.10812322755663856 0.08535635658596441 0.16620133936315235 -0.10913900141464393 -0.17290139418117376 -0.1231395213452825 0.12218836815145834 -0.10955687282933035 -0.15035579245587166 0.16801176642772919 0.17118077646837593 0.16877812390003977 0.12208422442657466 -0.099165455598479196 0.034736165628651859 -0.17721548521253749 -0.20112503837539683 0.11830309330065325 -0.14474673826893672
leaf_weight=0.11519849087926559 0.090327357975184208 0.28787004847981756 0.20295337463903707 0.19371500614215609 0.3607819257085797 0.53099195295362689 0.71930826162861194 0.089992204098962247 0.22148081733030267 0.031152640571235679 0.29325028070888948 0.063305835908977315 0.066741093702148646 0.057939806472859234 0.088206019143399317 0.035997040875372477 0.051358481359784491 0.079925967962481081 0.39301242794317659
leaf_count=22 19 62 31 70 191 234 142 31 57 8 52 9 11 28 42 31 17 14 143
internal_value=0 0.0109775 -0.0279379 0.047535 -0.0806135 -0.0536279 0.0671709 0.0192792 -0.0754773 -0.00979601 0.0767026 -0.0592203 -0.0886223 0.107268 -0.13211 0.0723097 0.116186 -0.0066572 -0.121776
internal_weight=0 3.37333 1.63397 1.73936 0.600183 1.37307 1.54564 0.826335 0.311808 0.842082 0.514527 0.554212 0.490906 0.260893 0.448988 0.151196 0.424535 0.131284 0.424165
internal_count=1214 928 526 402 286 467 332 190 76 233 114 171 162 59 233 53 83 31 151
is_linear=0
shrinkage=0.2
Tree=51
num_leaves=20
num_cat=0
split_feature=533 246 247 471 169 136 91 306 472 90 178 316 539 492 285 367 354 464 263
split_gain=0.0964913 0.107706 0.100221 0.0960373 0.093741 0.107043 0.102368 0.0986607 0.0866776 0.0780468 0.0794804 0.0986695 0.0881929 0.0769646 0.0727902 0.0696066 0.0695281 0.0680687 0.065995
threshold=0.00068244664000000012 1.0080371500000003 0.31990732000000005 -0.00084467499999999992 0.70398135000000017 0.57171360000000015 0.0096796950000000003 0.051613666000000009 0.0012723415000000001 0.013692928000000002 1.1274179500000001 -0.018938918499999995 -0.020519195999999996 -0.086761957499999987 0.0047598194500000001 -0.075040324999999991 -0.0036958125499999997 0.011946268500000001 -0.010585997999999998
decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
left_child=4 2 3 15 5 14 7 9 -3 10 11 17 -12 -7 -1 -2 -8 -6 -13
right_child=1 8 -4 -5 6 13 16 -9 -10 -11 12 18 -14 -15 -16 -17 -18 -19 -20
leaf_value=-0.20090854366621685 0.09900565820536722 0.068589320211379423 -0.15183958801465827 0.13112029886851814 0.17498051306388035 0.062263407822901774 -0.11218377706283561 0.16094194714356463 -0.11787930927002793 -0.15761715991192027 0.12605018327292469 0.055000752754332562 -0.11787626924325714 -0.18969248602031363 0.094368350122453773 -0.20090760254566262 0.12452876098067495 -0.10761949707695828 -0.14640755641433484
leaf_weight=0.040054761047941478 0.044664444831141736 0.39698455681354972 0.47196594362685573 0.12319365322036879 0.11060544749489065 0.061782943084836006 0.054025930498028174 0.14612827717792232 0.13316082864184864 0.13303651467867894 0.29731557266495656 0.084414444529102295 0.074057397258002311 0.22549190671998076 0.20083176846674178 0.10084044927498326 0.61052787967128086 0.049284032975265291 0.28405036984622667
leaf_count=14 17 100 319 44 18 13 16 31 42 64 52 20 20 138 44 57 117 11 77
internal_value=0 -0.0470688 -0.096329 0.00117458 0.0212291 -0.0530567 0.0425125 0.00712705 0.0217525 -0.0146366 0.00650495 -0.0433315 0.0774076 -0.135505 0.0452695 -0.108846 0.105285 0.0878724 -0.100265
internal_weight=0 1.27081 0.740664 0.268699 2.37161 0.528161 1.84345 1.17889 0.530145 1.03276 0.899727 0.528354 0.371373 0.287275 0.240887 0.145505 0.664554 0.159889 0.368465
internal_count=1214 579 437 118 635 209 426 293 142 262 198 126 72 151 58 74 133 29 97
is_linear=0
shrinkage=0.2
Tree=52