generated from swnesbitt/ATMS-523-Module-5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRandomForestOutput-HW.txt
3601 lines (3601 loc) · 281 KB
/
RandomForestOutput-HW.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
Training with: n_estimators=200, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527973532676697
Training with: n_estimators=400, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9526132345199585
Training with: n_estimators=600, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9526083469390869
Training with: n_estimators=800, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9525827169418335
Training with: n_estimators=1000, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9526445865631104
Training with: n_estimators=1200, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.952664852142334
Training with: n_estimators=1400, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9526724219322205
Training with: n_estimators=1600, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9526863098144531
Training with: n_estimators=1800, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9526987075805664
Training with: n_estimators=2000, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9526728391647339
Training with: n_estimators=200, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9518930912017822
Training with: n_estimators=400, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.951765239238739
Training with: n_estimators=600, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9517444372177124
Training with: n_estimators=800, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9516982436180115
Training with: n_estimators=1000, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9517529010772705
Training with: n_estimators=1200, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9517577290534973
Training with: n_estimators=1400, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9517684578895569
Training with: n_estimators=1600, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9517873525619507
Training with: n_estimators=1800, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9517956376075745
Training with: n_estimators=2000, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9517634510993958
Training with: n_estimators=200, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.949470043182373
Training with: n_estimators=400, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9494499564170837
Training with: n_estimators=600, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9494802951812744
Training with: n_estimators=800, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9494595527648926
Training with: n_estimators=1000, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9494351148605347
Training with: n_estimators=1200, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.949435830116272
Training with: n_estimators=1400, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9494333863258362
Training with: n_estimators=1600, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9494410157203674
Training with: n_estimators=1800, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9494589567184448
Training with: n_estimators=2000, max_depth=10, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9494351744651794
Training with: n_estimators=200, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9508850574493408
Training with: n_estimators=400, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9507908225059509
Training with: n_estimators=600, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9508472084999084
Training with: n_estimators=800, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9508061408996582
Training with: n_estimators=1000, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9508227109909058
Training with: n_estimators=1200, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9508075714111328
Training with: n_estimators=1400, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9508004188537598
Training with: n_estimators=1600, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9508101940155029
Training with: n_estimators=1800, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9508196115493774
Training with: n_estimators=2000, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9507899880409241
Training with: n_estimators=200, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9507283568382263
Training with: n_estimators=400, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9506245255470276
Training with: n_estimators=600, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9506770372390747
Training with: n_estimators=800, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9506206512451172
Training with: n_estimators=1000, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9506337642669678
Training with: n_estimators=1200, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9506269693374634
Training with: n_estimators=1400, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9506215453147888
Training with: n_estimators=1600, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9506387710571289
Training with: n_estimators=1800, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9506505727767944
Training with: n_estimators=2000, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9506210088729858
Training with: n_estimators=200, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.949037492275238
Training with: n_estimators=400, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9489300847053528
Training with: n_estimators=600, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9489940404891968
Training with: n_estimators=800, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9489476680755615
Training with: n_estimators=1000, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9489200115203857
Training with: n_estimators=1200, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9489170908927917
Training with: n_estimators=1400, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9489002823829651
Training with: n_estimators=1600, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9489227533340454
Training with: n_estimators=1800, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9489383697509766
Training with: n_estimators=2000, max_depth=10, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9489119648933411
Training with: n_estimators=200, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9477173089981079
Training with: n_estimators=400, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9476258754730225
Training with: n_estimators=600, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9476830363273621
Training with: n_estimators=800, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9476756453514099
Training with: n_estimators=1000, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9476682543754578
Training with: n_estimators=1200, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9476639032363892
Training with: n_estimators=1400, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9476318955421448
Training with: n_estimators=1600, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9476385712623596
Training with: n_estimators=1800, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.947645366191864
Training with: n_estimators=2000, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9476180076599121
Training with: n_estimators=200, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9477173089981079
Training with: n_estimators=400, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9476258754730225
Training with: n_estimators=600, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9476830363273621
Training with: n_estimators=800, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9476756453514099
Training with: n_estimators=1000, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9476682543754578
Training with: n_estimators=1200, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9476639032363892
Training with: n_estimators=1400, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9476318955421448
Training with: n_estimators=1600, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9476385712623596
Training with: n_estimators=1800, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.947645366191864
Training with: n_estimators=2000, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9476180076599121
Training with: n_estimators=200, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9474319815635681
Training with: n_estimators=400, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9473738670349121
Training with: n_estimators=600, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9474288821220398
Training with: n_estimators=800, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9473918080329895
Training with: n_estimators=1000, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9473822116851807
Training with: n_estimators=1200, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9473671317100525
Training with: n_estimators=1400, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9473453164100647
Training with: n_estimators=1600, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9473467469215393
Training with: n_estimators=1800, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9473540782928467
Training with: n_estimators=2000, max_depth=10, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.947330117225647
Training with: n_estimators=200, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.947482705116272
Training with: n_estimators=400, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9469761848449707
Training with: n_estimators=600, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9469417333602905
Training with: n_estimators=800, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9469274282455444
Training with: n_estimators=1000, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9469031095504761
Training with: n_estimators=1200, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9468613862991333
Training with: n_estimators=1400, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.946836531162262
Training with: n_estimators=1600, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9469239711761475
Training with: n_estimators=1800, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9468526840209961
Training with: n_estimators=2000, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9467439651489258
Training with: n_estimators=200, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9465734958648682
Training with: n_estimators=400, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.946287989616394
Training with: n_estimators=600, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9462250471115112
Training with: n_estimators=800, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9462032318115234
Training with: n_estimators=1000, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9462332129478455
Training with: n_estimators=1200, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9461703300476074
Training with: n_estimators=1400, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9461877346038818
Training with: n_estimators=1600, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9462672472000122
Training with: n_estimators=1800, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9462450742721558
Training with: n_estimators=2000, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9461431503295898
Training with: n_estimators=200, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9440286755561829
Training with: n_estimators=400, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9439263343811035
Training with: n_estimators=600, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9437584280967712
Training with: n_estimators=800, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9437484741210938
Training with: n_estimators=1000, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9437289237976074
Training with: n_estimators=1200, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9437351822853088
Training with: n_estimators=1400, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9437223076820374
Training with: n_estimators=1600, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9437838196754456
Training with: n_estimators=1800, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9437559843063354
Training with: n_estimators=2000, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9436835050582886
Training with: n_estimators=200, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9445846080780029
Training with: n_estimators=400, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9443081021308899
Training with: n_estimators=600, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9444268345832825
Training with: n_estimators=800, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9444059729576111
Training with: n_estimators=1000, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9443984627723694
Training with: n_estimators=1200, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9444241523742676
Training with: n_estimators=1400, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9444299936294556
Training with: n_estimators=1600, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9444980025291443
Training with: n_estimators=1800, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9444465637207031
Training with: n_estimators=2000, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9443342685699463
Training with: n_estimators=200, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9445518851280212
Training with: n_estimators=400, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.944265604019165
Training with: n_estimators=600, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9443469047546387
Training with: n_estimators=800, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9443018436431885
Training with: n_estimators=1000, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9443127512931824
Training with: n_estimators=1200, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9442921876907349
Training with: n_estimators=1400, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9443020224571228
Training with: n_estimators=1600, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9443747401237488
Training with: n_estimators=1800, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9443302750587463
Training with: n_estimators=2000, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9442148208618164
Training with: n_estimators=200, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.943091630935669
Training with: n_estimators=400, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9428820013999939
Training with: n_estimators=600, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9429118633270264
Training with: n_estimators=800, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9428653717041016
Training with: n_estimators=1000, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9427925944328308
Training with: n_estimators=1200, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9428290724754333
Training with: n_estimators=1400, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9427880048751831
Training with: n_estimators=1600, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9428342580795288
Training with: n_estimators=1800, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9428055882453918
Training with: n_estimators=2000, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9427052140235901
Training with: n_estimators=200, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9413859844207764
Training with: n_estimators=400, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9408879280090332
Training with: n_estimators=600, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9408612251281738
Training with: n_estimators=800, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.940839409828186
Training with: n_estimators=1000, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9408009052276611
Training with: n_estimators=1200, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9408222436904907
Training with: n_estimators=1400, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9407838582992554
Training with: n_estimators=1600, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9408913254737854
Training with: n_estimators=1800, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9408807754516602
Training with: n_estimators=2000, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.940776526927948
Training with: n_estimators=200, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9413859844207764
Training with: n_estimators=400, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9408879280090332
Training with: n_estimators=600, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9408612251281738
Training with: n_estimators=800, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.940839409828186
Training with: n_estimators=1000, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9408009052276611
Training with: n_estimators=1200, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9408222436904907
Training with: n_estimators=1400, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9407838582992554
Training with: n_estimators=1600, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9408913254737854
Training with: n_estimators=1800, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9408807754516602
Training with: n_estimators=2000, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.940776526927948
Training with: n_estimators=200, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9409838318824768
Training with: n_estimators=400, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9405761957168579
Training with: n_estimators=600, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9405807256698608
Training with: n_estimators=800, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9406083822250366
Training with: n_estimators=1000, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9405854940414429
Training with: n_estimators=1200, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9406018853187561
Training with: n_estimators=1400, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9405825138092041
Training with: n_estimators=1600, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9406611919403076
Training with: n_estimators=1800, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.940643846988678
Training with: n_estimators=2000, max_depth=10, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9405443668365479
Training with: n_estimators=200, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9552183151245117
Training with: n_estimators=400, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.955069899559021
Training with: n_estimators=600, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9550650119781494
Training with: n_estimators=800, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9550321102142334
Training with: n_estimators=1000, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9550876617431641
Training with: n_estimators=1200, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9551076292991638
Training with: n_estimators=1400, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9551144242286682
Training with: n_estimators=1600, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9551277160644531
Training with: n_estimators=1800, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.955136775970459
Training with: n_estimators=2000, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9551088213920593
Training with: n_estimators=200, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9540284872055054
Training with: n_estimators=400, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9539219737052917
Training with: n_estimators=600, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9539024233818054
Training with: n_estimators=800, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9538494944572449
Training with: n_estimators=1000, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9538978338241577
Training with: n_estimators=1200, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9539039731025696
Training with: n_estimators=1400, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9539138674736023
Training with: n_estimators=1600, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9539324045181274
Training with: n_estimators=1800, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9539389610290527
Training with: n_estimators=2000, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9539043307304382
Training with: n_estimators=200, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9510226845741272
Training with: n_estimators=400, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9510024189949036
Training with: n_estimators=600, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9510369300842285
Training with: n_estimators=800, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9510142803192139
Training with: n_estimators=1000, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9509889483451843
Training with: n_estimators=1200, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9509927034378052
Training with: n_estimators=1400, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9509879946708679
Training with: n_estimators=1600, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9509959816932678
Training with: n_estimators=1800, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9510127305984497
Training with: n_estimators=2000, max_depth=20, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9509884715080261
Training with: n_estimators=200, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9528093934059143
Training with: n_estimators=400, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527285695075989
Training with: n_estimators=600, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527900218963623
Training with: n_estimators=800, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527425765991211
Training with: n_estimators=1000, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527572989463806
Training with: n_estimators=1200, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527438282966614
Training with: n_estimators=1400, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527350068092346
Training with: n_estimators=1600, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527438282966614
Training with: n_estimators=1800, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527515172958374
Training with: n_estimators=2000, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527203440666199
Training with: n_estimators=200, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9525949358940125
Training with: n_estimators=400, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9525033831596375
Training with: n_estimators=600, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9525607824325562
Training with: n_estimators=800, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9524984955787659
Training with: n_estimators=1000, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.952509343624115
Training with: n_estimators=1200, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9525042772293091
Training with: n_estimators=1400, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9524971842765808
Training with: n_estimators=1600, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.952513575553894
Training with: n_estimators=1800, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9525238275527954
Training with: n_estimators=2000, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.952492356300354
Training with: n_estimators=200, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9504606127738953
Training with: n_estimators=400, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9503529071807861
Training with: n_estimators=600, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9504228830337524
Training with: n_estimators=800, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9503744840621948
Training with: n_estimators=1000, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9503458738327026
Training with: n_estimators=1200, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9503458738327026
Training with: n_estimators=1400, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9503262042999268
Training with: n_estimators=1600, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.950348973274231
Training with: n_estimators=1800, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9503633975982666
Training with: n_estimators=2000, max_depth=20, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9503360390663147
Training with: n_estimators=200, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9489457011222839
Training with: n_estimators=400, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9488570094108582
Training with: n_estimators=600, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9489189982414246
Training with: n_estimators=800, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9489098787307739
Training with: n_estimators=1000, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9489037394523621
Training with: n_estimators=1200, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9489011168479919
Training with: n_estimators=1400, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9488667249679565
Training with: n_estimators=1600, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9488741159439087
Training with: n_estimators=1800, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9488797783851624
Training with: n_estimators=2000, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9488527178764343
Training with: n_estimators=200, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9489457011222839
Training with: n_estimators=400, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9488570094108582
Training with: n_estimators=600, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9489189982414246
Training with: n_estimators=800, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9489098787307739
Training with: n_estimators=1000, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9489037394523621
Training with: n_estimators=1200, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9489011168479919
Training with: n_estimators=1400, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9488667249679565
Training with: n_estimators=1600, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9488741159439087
Training with: n_estimators=1800, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9488797783851624
Training with: n_estimators=2000, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9488527178764343
Training with: n_estimators=200, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9485816359519958
Training with: n_estimators=400, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9485252499580383
Training with: n_estimators=600, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9485847353935242
Training with: n_estimators=800, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9485470056533813
Training with: n_estimators=1000, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9485386610031128
Training with: n_estimators=1200, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9485254287719727
Training with: n_estimators=1400, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.94850093126297
Training with: n_estimators=1600, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9485029578208923
Training with: n_estimators=1800, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.948509156703949
Training with: n_estimators=2000, max_depth=20, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9484851956367493
Training with: n_estimators=200, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9507269263267517
Training with: n_estimators=400, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.95020991563797
Training with: n_estimators=600, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9501603245735168
Training with: n_estimators=800, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9501399993896484
Training with: n_estimators=1000, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9501211047172546
Training with: n_estimators=1200, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9500804543495178
Training with: n_estimators=1400, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9500559568405151
Training with: n_estimators=1600, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.950140655040741
Training with: n_estimators=1800, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9500619769096375
Training with: n_estimators=2000, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9499504566192627
Training with: n_estimators=200, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9493473172187805
Training with: n_estimators=400, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9490894675254822
Training with: n_estimators=600, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9490166306495667
Training with: n_estimators=800, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9490063786506653
Training with: n_estimators=1000, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9490393400192261
Training with: n_estimators=1200, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9489728212356567
Training with: n_estimators=1400, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9489889144897461
Training with: n_estimators=1600, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9490663409233093
Training with: n_estimators=1800, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9490382671356201
Training with: n_estimators=2000, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9489288926124573
Training with: n_estimators=200, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9461055397987366
Training with: n_estimators=400, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9459820985794067
Training with: n_estimators=600, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.945800244808197
Training with: n_estimators=800, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9458041787147522
Training with: n_estimators=1000, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9457813501358032
Training with: n_estimators=1200, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9457917809486389
Training with: n_estimators=1400, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9457793831825256
Training with: n_estimators=1600, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9458358883857727
Training with: n_estimators=1800, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9458024501800537
Training with: n_estimators=2000, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9457257986068726
Training with: n_estimators=200, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9470417499542236
Training with: n_estimators=400, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9467754364013672
Training with: n_estimators=600, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9468873143196106
Training with: n_estimators=800, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9468610286712646
Training with: n_estimators=1000, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9468559622764587
Training with: n_estimators=1200, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.946881115436554
Training with: n_estimators=1400, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9468916654586792
Training with: n_estimators=1600, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9469581842422485
Training with: n_estimators=1800, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.946902334690094
Training with: n_estimators=2000, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9467862248420715
Training with: n_estimators=200, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.946925163269043
Training with: n_estimators=400, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9466536045074463
Training with: n_estimators=600, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9467248916625977
Training with: n_estimators=800, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9466684460639954
Training with: n_estimators=1000, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9466921091079712
Training with: n_estimators=1200, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9466747641563416
Training with: n_estimators=1400, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9466868042945862
Training with: n_estimators=1600, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9467582106590271
Training with: n_estimators=1800, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9467106461524963
Training with: n_estimators=2000, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.946588933467865
Training with: n_estimators=200, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9449532628059387
Training with: n_estimators=400, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9447280168533325
Training with: n_estimators=600, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9447537064552307
Training with: n_estimators=800, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9447000026702881
Training with: n_estimators=1000, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9446333050727844
Training with: n_estimators=1200, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9446696043014526
Training with: n_estimators=1400, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9446315765380859
Training with: n_estimators=1600, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9446736574172974
Training with: n_estimators=1800, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9446404576301575
Training with: n_estimators=2000, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9445351362228394
Training with: n_estimators=200, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9429272413253784
Training with: n_estimators=400, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9424336552619934
Training with: n_estimators=600, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9424007534980774
Training with: n_estimators=800, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.942371666431427
Training with: n_estimators=1000, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9423441290855408
Training with: n_estimators=1200, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9423642158508301
Training with: n_estimators=1400, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.942328929901123
Training with: n_estimators=1600, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9424319863319397
Training with: n_estimators=1800, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.942416787147522
Training with: n_estimators=2000, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9423058032989502
Training with: n_estimators=200, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9429272413253784
Training with: n_estimators=400, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9424336552619934
Training with: n_estimators=600, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9424007534980774
Training with: n_estimators=800, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.942371666431427
Training with: n_estimators=1000, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9423441290855408
Training with: n_estimators=1200, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9423642158508301
Training with: n_estimators=1400, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.942328929901123
Training with: n_estimators=1600, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9424319863319397
Training with: n_estimators=1800, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.942416787147522
Training with: n_estimators=2000, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9423058032989502
Training with: n_estimators=200, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9424594640731812
Training with: n_estimators=400, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9420421123504639
Training with: n_estimators=600, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.942036509513855
Training with: n_estimators=800, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.942061185836792
Training with: n_estimators=1000, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9420391321182251
Training with: n_estimators=1200, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9420535564422607
Training with: n_estimators=1400, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9420365691184998
Training with: n_estimators=1600, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.942111611366272
Training with: n_estimators=1800, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9420913457870483
Training with: n_estimators=2000, max_depth=20, max_features=0.40824829046386296, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9419872164726257
Training with: n_estimators=200, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.955218493938446
Training with: n_estimators=400, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9550700783729553
Training with: n_estimators=600, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9550651907920837
Training with: n_estimators=800, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9550322890281677
Training with: n_estimators=1000, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9550878405570984
Training with: n_estimators=1200, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9551078677177429
Training with: n_estimators=1400, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9551146626472473
Training with: n_estimators=1600, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9551278948783875
Training with: n_estimators=1800, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9551370143890381
Training with: n_estimators=2000, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9551090598106384
Training with: n_estimators=200, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9540285468101501
Training with: n_estimators=400, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9539220333099365
Training with: n_estimators=600, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.953902542591095
Training with: n_estimators=800, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9538495540618896
Training with: n_estimators=1000, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9538978934288025
Training with: n_estimators=1200, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9539040923118591
Training with: n_estimators=1400, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9539139270782471
Training with: n_estimators=1600, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.953932523727417
Training with: n_estimators=1800, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9539390802383423
Training with: n_estimators=2000, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9539044499397278
Training with: n_estimators=200, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9510226845741272
Training with: n_estimators=400, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9510024189949036
Training with: n_estimators=600, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9510369300842285
Training with: n_estimators=800, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9510142803192139
Training with: n_estimators=1000, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9509890079498291
Training with: n_estimators=1200, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.95099276304245
Training with: n_estimators=1400, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9509879946708679
Training with: n_estimators=1600, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9509960412979126
Training with: n_estimators=1800, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9510127902030945
Training with: n_estimators=2000, max_depth=30, max_features=1.0, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9509884715080261
Training with: n_estimators=200, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9528093934059143
Training with: n_estimators=400, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527286291122437
Training with: n_estimators=600, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527900218963623
Training with: n_estimators=800, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527425765991211
Training with: n_estimators=1000, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527572989463806
Training with: n_estimators=1200, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527438282966614
Training with: n_estimators=1400, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527350068092346
Training with: n_estimators=1600, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527438282966614
Training with: n_estimators=1800, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527515769004822
Training with: n_estimators=2000, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9527204036712646
Training with: n_estimators=200, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9525949358940125
Training with: n_estimators=400, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9525034427642822
Training with: n_estimators=600, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9525608420372009
Training with: n_estimators=800, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9524984955787659
Training with: n_estimators=1000, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.952509343624115
Training with: n_estimators=1200, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9525042772293091
Training with: n_estimators=1400, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9524971842765808
Training with: n_estimators=1600, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9525136351585388
Training with: n_estimators=1800, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9525238275527954
Training with: n_estimators=2000, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9524924159049988
Training with: n_estimators=200, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9504606127738953
Training with: n_estimators=400, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9503529071807861
Training with: n_estimators=600, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9504228830337524
Training with: n_estimators=800, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9503744840621948
Training with: n_estimators=1000, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9503458738327026
Training with: n_estimators=1200, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9503458738327026
Training with: n_estimators=1400, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9503262042999268
Training with: n_estimators=1600, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.950348973274231
Training with: n_estimators=1800, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9503633975982666
Training with: n_estimators=2000, max_depth=30, max_features=1.0, min_samples_leaf=2, min_samples_split=10, bootstrap=True
R^2 Score: 0.9503360390663147
Training with: n_estimators=200, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9489457011222839
Training with: n_estimators=400, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9488570094108582
Training with: n_estimators=600, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9489189982414246
Training with: n_estimators=800, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9489098787307739
Training with: n_estimators=1000, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9489037394523621
Training with: n_estimators=1200, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9489011168479919
Training with: n_estimators=1400, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9488667249679565
Training with: n_estimators=1600, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9488741159439087
Training with: n_estimators=1800, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9488797783851624
Training with: n_estimators=2000, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=2, bootstrap=True
R^2 Score: 0.9488527178764343
Training with: n_estimators=200, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9489457011222839
Training with: n_estimators=400, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9488570094108582
Training with: n_estimators=600, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9489189982414246
Training with: n_estimators=800, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9489098787307739
Training with: n_estimators=1000, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9489037394523621
Training with: n_estimators=1200, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9489011168479919
Training with: n_estimators=1400, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9488667249679565
Training with: n_estimators=1600, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9488741159439087
Training with: n_estimators=1800, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9488797783851624
Training with: n_estimators=2000, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=5, bootstrap=True
R^2 Score: 0.9488527178764343
Training with: n_estimators=200, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9485816359519958
Training with: n_estimators=400, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9485252499580383
Training with: n_estimators=600, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9485847353935242
Training with: n_estimators=800, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9485470056533813
Training with: n_estimators=1000, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9485386610031128
Training with: n_estimators=1200, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9485254287719727
Training with: n_estimators=1400, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.94850093126297
Training with: n_estimators=1600, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9485029578208923
Training with: n_estimators=1800, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.948509156703949
Training with: n_estimators=2000, max_depth=30, max_features=1.0, min_samples_leaf=4, min_samples_split=10, bootstrap=True
R^2 Score: 0.9484851956367493
Training with: n_estimators=200, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.95073002576828
Training with: n_estimators=400, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9502129554748535
Training with: n_estimators=600, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9501633048057556
Training with: n_estimators=800, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9501429200172424
Training with: n_estimators=1000, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9501240253448486
Training with: n_estimators=1200, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9500833749771118
Training with: n_estimators=1400, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9500588178634644
Training with: n_estimators=1600, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.950143575668335
Training with: n_estimators=1800, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9500648975372314
Training with: n_estimators=2000, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=2, bootstrap=True
R^2 Score: 0.9499533176422119
Training with: n_estimators=200, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9493488669395447
Training with: n_estimators=400, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9490910172462463
Training with: n_estimators=600, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.949018120765686
Training with: n_estimators=800, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9490079283714294
Training with: n_estimators=1000, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9490408301353455
Training with: n_estimators=1200, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9489743113517761
Training with: n_estimators=1400, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9489904642105103
Training with: n_estimators=1600, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9490678310394287
Training with: n_estimators=1800, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9490398168563843
Training with: n_estimators=2000, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=5, bootstrap=True
R^2 Score: 0.9489304423332214
Training with: n_estimators=200, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9461058974266052
Training with: n_estimators=400, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9459824562072754
Training with: n_estimators=600, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9458006024360657
Training with: n_estimators=800, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9458045363426208
Training with: n_estimators=1000, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9457817673683167
Training with: n_estimators=1200, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9457921385765076
Training with: n_estimators=1400, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9457797408103943
Training with: n_estimators=1600, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9458362460136414
Training with: n_estimators=1800, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.9458028674125671
Training with: n_estimators=2000, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=1, min_samples_split=10, bootstrap=True
R^2 Score: 0.945726215839386
Training with: n_estimators=200, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9470425248146057
Training with: n_estimators=400, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9467761516571045
Training with: n_estimators=600, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9468879699707031
Training with: n_estimators=800, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9468616843223572
Training with: n_estimators=1000, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9468566179275513
Training with: n_estimators=1200, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9468818306922913
Training with: n_estimators=1400, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9468923807144165
Training with: n_estimators=1600, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9469588994979858
Training with: n_estimators=1800, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9469030499458313
Training with: n_estimators=2000, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=2, bootstrap=True
R^2 Score: 0.9467869997024536
Training with: n_estimators=200, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9469257593154907
Training with: n_estimators=400, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.946654200553894
Training with: n_estimators=600, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9467254877090454
Training with: n_estimators=800, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9466690421104431
Training with: n_estimators=1000, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.946692705154419
Training with: n_estimators=1200, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9466753602027893
Training with: n_estimators=1400, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9466874003410339
Training with: n_estimators=1600, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9467588067054749
Training with: n_estimators=1800, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.9467112421989441
Training with: n_estimators=2000, max_depth=30, max_features=0.40824829046386296, min_samples_leaf=2, min_samples_split=5, bootstrap=True
R^2 Score: 0.946589469909668