-
Notifications
You must be signed in to change notification settings - Fork 0
/
haarcascade_mcs_eyepair_big.xml
8827 lines (8800 loc) · 250 KB
/
haarcascade_mcs_eyepair_big.xml
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
<?xml version="1.0"?>
<!--
45x11 Eye pair detector computed with 7000 positive samples
2006-present, Modesto Castrillon-Santana (SIANI, Universidad de Las Palmas de Gran Canaria, Spain.
COMMERCIAL USE:
If you have any commercial interest in this work contact mcastrillon@iusiani.ulpgc.es
Creative Commons Attribution-NonCommercial 4.0 International Public License
By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-NonCommercial 4.0 International
Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these
terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and
conditions.
Section 1 Definitions.
Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public
License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image.
Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public
License.
Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.
Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements.
Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material.
Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License.
Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license.
Licensor means the individual(s) or entity(ies) granting rights under this Public License.
NonCommercial means not primarily intended for or directed towards commercial advantage or monetary compensation. For purposes of this Public License, the exchange of the Licensed Material for other material subject to Copyright and Similar Rights by digital file-sharing or similar means is NonCommercial provided there is no payment of monetary compensation in connection with the exchange.
Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them.
Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.
You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning.
Section 2 Scope.
License grant.
Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to:
reproduce and Share the Licensed Material, in whole or in part, for NonCommercial purposes only; and
produce, reproduce, and Share Adapted Material for NonCommercial purposes only.
Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions.
Term. The term of this Public License is specified in Section 6(a).
Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material.
Downstream recipients.
Offer from the Licensor Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License.
No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material.
No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i).
Other rights.
Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise.
Patent and trademark rights are not licensed under this Public License.
To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties, including when the Licensed Material is used other than for NonCommercial purposes.
Section 3 License Conditions.
Your exercise of the Licensed Rights is expressly made subject to the following conditions.
Attribution.
If You Share the Licensed Material (including in modified form), You must:
retain the following if it is supplied by the Licensor with the Licensed Material:
identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated);
a copyright notice;
a notice that refers to this Public License;
a notice that refers to the disclaimer of warranties;
a URI or hyperlink to the Licensed Material to the extent reasonably practicable;
in any publication cite the following paper:
@ARTICLE{Castrillon11-mva,
author = {Modesto Castrill\'on and Oscar D\'eniz and Daniel Hern\'andez and Javier Lorenzo},
title = {A comparison of face and facial feature detectors based on the ViolaJones general object detection framework},
journal = {Machine Vision and Applications},
year = {2011},
volume = {22},
pages = {481-494},
number = {3},
}
indicate if You modified the Licensed Material and retain an indication of any previous modifications; and
indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License.
You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information.
If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable.
If You Share Adapted Material You produce, the Adapter's License You apply must not prevent recipients of the Adapted Material from complying with this Public License.
Section 4 Sui Generis Database Rights.
Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:
for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database for NonCommercial purposes only;
if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material; and
You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database.
For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights.
Section 5 Disclaimer of Warranties and Limitation of Liability.
Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.
To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.
The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability.
Section 6 Term and Termination.
This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically.
Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates:
automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or
upon express reinstatement by the Licensor.
For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License.
For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License.
Sections 1, 5, 6, 7, and 8 survive termination of this Public License.
Section 7 Other Terms and Conditions.
The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed.
Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License.
Section 8 Interpretation.
For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License.
To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions.
No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor.
Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.
-->
<opencv_storage>
<cascade type_id="opencv-cascade-classifier"><stageType>BOOST</stageType>
<featureType>HAAR</featureType>
<height>11</height>
<width>45</width>
<stageParams>
<maxWeakCount>85</maxWeakCount></stageParams>
<featureParams>
<maxCatCount>0</maxCatCount></featureParams>
<stageNum>19</stageNum>
<stages>
<_>
<maxWeakCount>4</maxWeakCount>
<stageThreshold>-1.4563479423522949e+00</stageThreshold>
<weakClassifiers>
<_>
<internalNodes>
0 -1 0 1.0129979997873306e-01</internalNodes>
<leafValues>
-7.9546368122100830e-01 7.8110837936401367e-01</leafValues></_>
<_>
<internalNodes>
0 -1 1 3.1212110072374344e-02</internalNodes>
<leafValues>
-7.2823482751846313e-01 6.2244427204132080e-01</leafValues></_>
<_>
<internalNodes>
0 -1 2 -5.4906789213418961e-02</internalNodes>
<leafValues>
6.6794431209564209e-01 -6.0760712623596191e-01</leafValues></_>
<_>
<internalNodes>
0 -1 3 1.3104109466075897e-01</internalNodes>
<leafValues>
-4.8816078901290894e-01 6.7495757341384888e-01</leafValues></_></weakClassifiers></_>
<_>
<maxWeakCount>6</maxWeakCount>
<stageThreshold>-1.4917520284652710e+00</stageThreshold>
<weakClassifiers>
<_>
<internalNodes>
0 -1 4 1.5072830021381378e-01</internalNodes>
<leafValues>
-6.3909012079238892e-01 8.0536258220672607e-01</leafValues></_>
<_>
<internalNodes>
0 -1 5 2.2887440398335457e-02</internalNodes>
<leafValues>
-7.2313660383224487e-01 3.9929839968681335e-01</leafValues></_>
<_>
<internalNodes>
0 -1 6 2.7674660086631775e-02</internalNodes>
<leafValues>
-7.0643997192382812e-01 4.8853880167007446e-01</leafValues></_>
<_>
<internalNodes>
0 -1 7 3.1899858266115189e-02</internalNodes>
<leafValues>
-4.2184171080589294e-01 5.3921532630920410e-01</leafValues></_>
<_>
<internalNodes>
0 -1 8 3.6972828209400177e-02</internalNodes>
<leafValues>
-4.2400631308555603e-01 5.6811082363128662e-01</leafValues></_>
<_>
<internalNodes>
0 -1 9 -1.6711089760065079e-02</internalNodes>
<leafValues>
4.6170559525489807e-01 -4.2389839887619019e-01</leafValues></_></weakClassifiers></_>
<_>
<maxWeakCount>11</maxWeakCount>
<stageThreshold>-1.6821570396423340e+00</stageThreshold>
<weakClassifiers>
<_>
<internalNodes>
0 -1 10 2.1208600699901581e-01</internalNodes>
<leafValues>
-6.5022879838943481e-01 5.9933120012283325e-01</leafValues></_>
<_>
<internalNodes>
0 -1 11 -2.2745320573449135e-02</internalNodes>
<leafValues>
5.1935321092605591e-01 -4.4163998961448669e-01</leafValues></_>
<_>
<internalNodes>
0 -1 12 2.1561959758400917e-02</internalNodes>
<leafValues>
-6.4395201206207275e-01 5.1543998718261719e-01</leafValues></_>
<_>
<internalNodes>
0 -1 13 8.7526358664035797e-02</internalNodes>
<leafValues>
-3.7235569953918457e-01 4.8228278756141663e-01</leafValues></_>
<_>
<internalNodes>
0 -1 14 1.7132370267063379e-03</internalNodes>
<leafValues>
-6.2590628862380981e-01 3.1931561231613159e-01</leafValues></_>
<_>
<internalNodes>
0 -1 15 -1.2182939797639847e-01</internalNodes>
<leafValues>
4.4271498918533325e-01 -2.8492081165313721e-01</leafValues></_>
<_>
<internalNodes>
0 -1 16 -1.6568049788475037e-02</internalNodes>
<leafValues>
4.3862259387969971e-01 -3.0607050657272339e-01</leafValues></_>
<_>
<internalNodes>
0 -1 17 -8.0553777515888214e-02</internalNodes>
<leafValues>
6.0115402936935425e-01 -1.9848510622978210e-02</leafValues></_>
<_>
<internalNodes>
0 -1 18 9.4548419117927551e-02</internalNodes>
<leafValues>
-2.5033459067344666e-01 4.8005449771881104e-01</leafValues></_>
<_>
<internalNodes>
0 -1 19 -9.6633229404687881e-03</internalNodes>
<leafValues>
2.1125659346580505e-01 -2.5508201122283936e-01</leafValues></_>
<_>
<internalNodes>
0 -1 20 -1.7194730462506413e-03</internalNodes>
<leafValues>
-7.4376249313354492e-01 1.3561910390853882e-01</leafValues></_></weakClassifiers></_>
<_>
<maxWeakCount>19</maxWeakCount>
<stageThreshold>-2.4261860847473145e+00</stageThreshold>
<weakClassifiers>
<_>
<internalNodes>
0 -1 21 -2.9845130443572998e-01</internalNodes>
<leafValues>
5.7684171199798584e-01 -5.6365752220153809e-01</leafValues></_>
<_>
<internalNodes>
0 -1 22 8.4831789135932922e-02</internalNodes>
<leafValues>
-4.8785820603370667e-01 3.0233600735664368e-01</leafValues></_>
<_>
<internalNodes>
0 -1 23 4.8235268332064152e-03</internalNodes>
<leafValues>
-4.1680189967155457e-01 5.4730242490768433e-01</leafValues></_>
<_>
<internalNodes>
0 -1 24 2.4796100333333015e-02</internalNodes>
<leafValues>
-4.0749680995941162e-01 2.9871928691864014e-01</leafValues></_>
<_>
<internalNodes>
0 -1 25 7.8466311097145081e-03</internalNodes>
<leafValues>
-6.6262972354888916e-01 3.0879470705986023e-01</leafValues></_>
<_>
<internalNodes>
0 -1 26 8.8172443211078644e-02</internalNodes>
<leafValues>
-1.9640329480171204e-01 1.7876540124416351e-01</leafValues></_>
<_>
<internalNodes>
0 -1 27 6.7136192228645086e-04</internalNodes>
<leafValues>
-4.5652940869331360e-01 4.7216510772705078e-01</leafValues></_>
<_>
<internalNodes>
0 -1 28 -5.8130059187533334e-05</internalNodes>
<leafValues>
1.8948759883642197e-02 -2.7900961041450500e-01</leafValues></_>
<_>
<internalNodes>
0 -1 29 -7.0680370554327965e-03</internalNodes>
<leafValues>
4.3155920505523682e-01 -5.2287191152572632e-01</leafValues></_>
<_>
<internalNodes>
0 -1 30 1.0486739687621593e-02</internalNodes>
<leafValues>
-6.2000381946563721e-01 4.0068510174751282e-01</leafValues></_>
<_>
<internalNodes>
0 -1 31 3.0196599662303925e-02</internalNodes>
<leafValues>
-7.2579962015151978e-01 1.9102710485458374e-01</leafValues></_>
<_>
<internalNodes>
0 -1 32 2.2740899585187435e-03</internalNodes>
<leafValues>
-7.4379247426986694e-01 1.4359140396118164e-01</leafValues></_>
<_>
<internalNodes>
0 -1 33 2.8281889390200377e-03</internalNodes>
<leafValues>
-7.0359271764755249e-01 2.0774589478969574e-01</leafValues></_>
<_>
<internalNodes>
0 -1 34 9.4722010544501245e-05</internalNodes>
<leafValues>
-6.8661361932754517e-01 2.3000240325927734e-01</leafValues></_>
<_>
<internalNodes>
0 -1 35 5.8486708439886570e-05</internalNodes>
<leafValues>
-7.4927699565887451e-01 1.7420600354671478e-01</leafValues></_>
<_>
<internalNodes>
0 -1 36 -5.3329051297623664e-05</internalNodes>
<leafValues>
1.9545179605484009e-01 -6.4602172374725342e-01</leafValues></_>
<_>
<internalNodes>
0 -1 37 -1.9914070435333997e-05</internalNodes>
<leafValues>
3.1910550594329834e-01 -5.0005888938903809e-01</leafValues></_>
<_>
<internalNodes>
0 -1 38 -2.8483340516686440e-02</internalNodes>
<leafValues>
2.7206888794898987e-01 -1.7283840477466583e-01</leafValues></_>
<_>
<internalNodes>
0 -1 39 -7.0301168598234653e-03</internalNodes>
<leafValues>
4.9069970846176147e-01 -2.5846821069717407e-01</leafValues></_></weakClassifiers></_>
<_>
<maxWeakCount>16</maxWeakCount>
<stageThreshold>-1.6515820026397705e+00</stageThreshold>
<weakClassifiers>
<_>
<internalNodes>
0 -1 40 1.7105689644813538e-01</internalNodes>
<leafValues>
-5.6416177749633789e-01 5.4754227399826050e-01</leafValues></_>
<_>
<internalNodes>
0 -1 41 -1.0497429966926575e-01</internalNodes>
<leafValues>
4.7274130582809448e-01 -4.5322591066360474e-01</leafValues></_>
<_>
<internalNodes>
0 -1 42 -3.1381469219923019e-02</internalNodes>
<leafValues>
4.9009248614311218e-01 -3.5930469632148743e-01</leafValues></_>
<_>
<internalNodes>
0 -1 43 6.2426690012216568e-02</internalNodes>
<leafValues>
-3.1271660327911377e-01 3.7389820814132690e-01</leafValues></_>
<_>
<internalNodes>
0 -1 44 5.4725550115108490e-02</internalNodes>
<leafValues>
-4.3851169943809509e-01 3.3310478925704956e-01</leafValues></_>
<_>
<internalNodes>
0 -1 45 4.7346241772174835e-03</internalNodes>
<leafValues>
-6.4141207933425903e-01 2.5311610102653503e-01</leafValues></_>
<_>
<internalNodes>
0 -1 46 7.9919751733541489e-03</internalNodes>
<leafValues>
-4.6805310249328613e-01 2.4310259521007538e-01</leafValues></_>
<_>
<internalNodes>
0 -1 47 1.6218619421124458e-02</internalNodes>
<leafValues>
-3.6558291316032410e-01 1.9355100393295288e-01</leafValues></_>
<_>
<internalNodes>
0 -1 48 -2.7070839423686266e-03</internalNodes>
<leafValues>
-6.2368887662887573e-01 1.5246219933032990e-01</leafValues></_>
<_>
<internalNodes>
0 -1 49 -1.4570339582860470e-02</internalNodes>
<leafValues>
2.5488319993019104e-01 -1.0177270323038101e-01</leafValues></_>
<_>
<internalNodes>
0 -1 50 -7.4289329349994659e-02</internalNodes>
<leafValues>
-5.9631901979446411e-01 1.4141720533370972e-01</leafValues></_>
<_>
<internalNodes>
0 -1 51 1.7482470721006393e-02</internalNodes>
<leafValues>
6.8981222808361053e-02 -8.0752617120742798e-01</leafValues></_>
<_>
<internalNodes>
0 -1 52 7.4595998739823699e-04</internalNodes>
<leafValues>
8.9970856904983521e-02 -7.5478130578994751e-01</leafValues></_>
<_>
<internalNodes>
0 -1 53 6.8119657039642334e-01</internalNodes>
<leafValues>
1.2513290345668793e-01 -5.9507852792739868e-01</leafValues></_>
<_>
<internalNodes>
0 -1 54 -3.2223601010628045e-04</internalNodes>
<leafValues>
-5.4766350984573364e-01 1.4170460402965546e-01</leafValues></_>
<_>
<internalNodes>
0 -1 55 -1.3318139826878905e-03</internalNodes>
<leafValues>
-4.6108511090278625e-01 8.7741702795028687e-02</leafValues></_></weakClassifiers></_>
<_>
<maxWeakCount>21</maxWeakCount>
<stageThreshold>-1.8342440128326416e+00</stageThreshold>
<weakClassifiers>
<_>
<internalNodes>
0 -1 56 7.9966977238655090e-02</internalNodes>
<leafValues>
-6.6598808765411377e-01 4.2352628707885742e-01</leafValues></_>
<_>
<internalNodes>
0 -1 57 -2.7264660224318504e-02</internalNodes>
<leafValues>
3.3973929286003113e-01 -5.0634992122650146e-01</leafValues></_>
<_>
<internalNodes>
0 -1 58 2.8883190825581551e-02</internalNodes>
<leafValues>
-4.9011540412902832e-01 4.0123671293258667e-01</leafValues></_>
<_>
<internalNodes>
0 -1 59 3.9732199162244797e-02</internalNodes>
<leafValues>
-4.7746640443801880e-01 2.0590600371360779e-01</leafValues></_>
<_>
<internalNodes>
0 -1 60 -9.7214527428150177e-02</internalNodes>
<leafValues>
4.5142328739166260e-01 -4.6996578574180603e-01</leafValues></_>
<_>
<internalNodes>
0 -1 61 7.0403199642896652e-03</internalNodes>
<leafValues>
-5.0513231754302979e-01 1.8722230195999146e-01</leafValues></_>
<_>
<internalNodes>
0 -1 62 1.0033249855041504e-02</internalNodes>
<leafValues>
-6.0716050863265991e-01 2.0498579740524292e-01</leafValues></_>
<_>
<internalNodes>
0 -1 63 -2.2186320275068283e-03</internalNodes>
<leafValues>
2.7919989824295044e-01 -3.9091849327087402e-01</leafValues></_>
<_>
<internalNodes>
0 -1 64 7.2839930653572083e-02</internalNodes>
<leafValues>
-8.7004872038960457e-03 -4.3667841796875000e+03</leafValues></_>
<_>
<internalNodes>
0 -1 65 -6.8644046783447266e-02</internalNodes>
<leafValues>
5.4671740531921387e-01 -9.7120396792888641e-02</leafValues></_>
<_>
<internalNodes>
0 -1 66 8.3757557149510831e-05</internalNodes>
<leafValues>
-4.3773889541625977e-01 2.0737740397453308e-01</leafValues></_>
<_>
<internalNodes>
0 -1 67 -1.8882959848269820e-03</internalNodes>
<leafValues>
2.8053081035614014e-01 -1.1238359659910202e-01</leafValues></_>
<_>
<internalNodes>
0 -1 68 -3.6242630332708359e-02</internalNodes>
<leafValues>
-6.3709640502929688e-01 1.4787060022354126e-01</leafValues></_>
<_>
<internalNodes>
0 -1 69 -3.3338118344545364e-02</internalNodes>
<leafValues>
4.7268480062484741e-01 -2.1240149438381195e-01</leafValues></_>
<_>
<internalNodes>
0 -1 70 2.5847079232335091e-03</internalNodes>
<leafValues>
1.2344239652156830e-01 -7.4099230766296387e-01</leafValues></_>
<_>
<internalNodes>
0 -1 71 -2.0372489467263222e-02</internalNodes>
<leafValues>
1.3778980076313019e-01 -1.9940899312496185e-01</leafValues></_>
<_>
<internalNodes>
0 -1 72 3.6333200987428427e-03</internalNodes>
<leafValues>
7.9361379146575928e-02 -7.6000207662582397e-01</leafValues></_>
<_>
<internalNodes>
0 -1 73 4.6827611513435841e-03</internalNodes>
<leafValues>
-6.6145867109298706e-02 1.7332559823989868e-01</leafValues></_>
<_>
<internalNodes>
0 -1 74 -4.8445351421833038e-03</internalNodes>
<leafValues>
4.4801148772239685e-01 -1.5643960237503052e-01</leafValues></_>
<_>
<internalNodes>
0 -1 75 2.4819609522819519e-01</internalNodes>
<leafValues>
-8.6152970790863037e-02 3.3757150173187256e-01</leafValues></_>
<_>
<internalNodes>
0 -1 76 1.9421289861202240e-01</internalNodes>
<leafValues>
-1.4059330523014069e-01 5.1121640205383301e-01</leafValues></_></weakClassifiers></_>
<_>
<maxWeakCount>26</maxWeakCount>
<stageThreshold>-1.6580430269241333e+00</stageThreshold>
<weakClassifiers>
<_>
<internalNodes>
0 -1 77 -9.6888672560453415e-03</internalNodes>
<leafValues>
3.8957211375236511e-01 -4.8118248581886292e-01</leafValues></_>
<_>
<internalNodes>
0 -1 78 2.9810279607772827e-01</internalNodes>
<leafValues>
-4.8006340861320496e-01 3.9554169774055481e-01</leafValues></_>
<_>
<internalNodes>
0 -1 79 -9.8945433273911476e-03</internalNodes>
<leafValues>
4.2066010832786560e-01 -3.4448111057281494e-01</leafValues></_>
<_>
<internalNodes>
0 -1 80 5.6289549916982651e-02</internalNodes>
<leafValues>
-2.3237819969654083e-01 4.2001250386238098e-01</leafValues></_>
<_>
<internalNodes>
0 -1 81 2.8186529874801636e-02</internalNodes>
<leafValues>
-5.4988211393356323e-01 1.9484530389308929e-01</leafValues></_>
<_>
<internalNodes>
0 -1 82 4.7115761786699295e-02</internalNodes>
<leafValues>
1.6842770576477051e-01 -5.3077638149261475e-01</leafValues></_>
<_>
<internalNodes>
0 -1 83 -3.1187951099127531e-03</internalNodes>
<leafValues>
1.9679939746856689e-01 -3.7416198849678040e-01</leafValues></_>
<_>
<internalNodes>
0 -1 84 1.9423909485340118e-02</internalNodes>
<leafValues>
-4.4669228792190552e-01 1.6852539777755737e-01</leafValues></_>
<_>
<internalNodes>
0 -1 85 -2.6180699467658997e-01</internalNodes>
<leafValues>
-8.3780890703201294e-01 6.1774950474500656e-02</leafValues></_>
<_>
<internalNodes>
0 -1 86 -4.8632198013365269e-03</internalNodes>
<leafValues>
-4.8009449243545532e-01 6.6771760582923889e-02</leafValues></_>
<_>
<internalNodes>
0 -1 87 3.8411598652601242e-02</internalNodes>
<leafValues>
1.3380399346351624e-01 -5.8349931240081787e-01</leafValues></_>
<_>
<internalNodes>
0 -1 88 5.7644587941467762e-03</internalNodes>
<leafValues>
8.2218721508979797e-02 -8.1420588493347168e-01</leafValues></_>
<_>
<internalNodes>
0 -1 89 -2.7703220024704933e-02</internalNodes>
<leafValues>
4.7253361344337463e-01 -1.4942400157451630e-01</leafValues></_>
<_>
<internalNodes>
0 -1 90 2.9970629839226604e-04</internalNodes>
<leafValues>
-3.5082170367240906e-01 1.1788990348577499e-01</leafValues></_>
<_>
<internalNodes>
0 -1 91 6.6997818648815155e-03</internalNodes>
<leafValues>
-1.5635940432548523e-01 3.6560869216918945e-01</leafValues></_>
<_>
<internalNodes>
0 -1 92 1.8159940736950375e-05</internalNodes>
<leafValues>
-3.1400790810585022e-01 1.2775659561157227e-01</leafValues></_>
<_>
<internalNodes>
0 -1 93 -2.3775480221956968e-03</internalNodes>
<leafValues>
-7.1568191051483154e-01 7.5858749449253082e-02</leafValues></_>
<_>
<internalNodes>
0 -1 94 -4.4308858923614025e-03</internalNodes>
<leafValues>
-5.7954931259155273e-01 6.5880201756954193e-02</leafValues></_>
<_>
<internalNodes>
0 -1 95 8.2603342831134796e-02</internalNodes>
<leafValues>
7.0020496845245361e-02 -6.6175222396850586e-01</leafValues></_>
<_>
<internalNodes>
0 -1 96 -8.3666313439607620e-03</internalNodes>
<leafValues>
-4.9013429880142212e-01 9.3764282763004303e-02</leafValues></_>
<_>
<internalNodes>
0 -1 97 -4.2126090265810490e-03</internalNodes>
<leafValues>
-5.8547890186309814e-01 7.7719986438751221e-02</leafValues></_>
<_>
<internalNodes>
0 -1 98 1.4681339962407947e-03</internalNodes>
<leafValues>
-2.4955469369888306e-01 1.1525829881429672e-01</leafValues></_>
<_>
<internalNodes>
0 -1 99 5.7278228923678398e-03</internalNodes>
<leafValues>
-1.1968609690666199e-01 4.2483189702033997e-01</leafValues></_>
<_>
<internalNodes>
0 -1 100 6.5779332071542740e-03</internalNodes>
<leafValues>
2.8237590566277504e-02 -4.0717759728431702e-01</leafValues></_>
<_>
<internalNodes>
0 -1 101 1.2635639905056451e-05</internalNodes>
<leafValues>
-3.2787650823593140e-01 1.4637599885463715e-01</leafValues></_>
<_>
<internalNodes>
0 -1 102 -4.6048699878156185e-03</internalNodes>
<leafValues>
1.8424710631370544e-01 -2.3546899855136871e-01</leafValues></_></weakClassifiers></_>
<_>
<maxWeakCount>31</maxWeakCount>
<stageThreshold>-1.7386059761047363e+00</stageThreshold>
<weakClassifiers>
<_>
<internalNodes>
0 -1 103 6.1627078801393509e-02</internalNodes>
<leafValues>
-6.3852781057357788e-01 3.3314740657806396e-01</leafValues></_>
<_>
<internalNodes>
0 -1 104 4.2768982239067554e-03</internalNodes>
<leafValues>
-4.2443430423736572e-01 4.3040299415588379e-01</leafValues></_>
<_>
<internalNodes>
0 -1 105 4.6536661684513092e-03</internalNodes>
<leafValues>
-3.5712578892707825e-01 3.4206199645996094e-01</leafValues></_>
<_>
<internalNodes>
0 -1 106 8.9929848909378052e-02</internalNodes>
<leafValues>
-3.0818319320678711e-01 3.1036278605461121e-01</leafValues></_>
<_>
<internalNodes>
0 -1 107 7.4353553354740143e-02</internalNodes>
<leafValues>
-4.1107970476150513e-01 2.7357169985771179e-01</leafValues></_>
<_>
<internalNodes>
0 -1 108 1.8687270348891616e-03</internalNodes>
<leafValues>
-3.2678169012069702e-01 1.8466979265213013e-01</leafValues></_>
<_>
<internalNodes>
0 -1 109 -6.2053278088569641e-03</internalNodes>
<leafValues>
3.1079730391502380e-01 -2.4444060027599335e-01</leafValues></_>
<_>
<internalNodes>
0 -1 110 -1.6329739242792130e-02</internalNodes>
<leafValues>
2.4938680231571198e-01 -3.8487339019775391e-01</leafValues></_>
<_>
<internalNodes>
0 -1 111 1.1337800323963165e-01</internalNodes>
<leafValues>
-4.3810528516769409e-01 1.5818390250205994e-01</leafValues></_>
<_>
<internalNodes>
0 -1 112 7.4822813272476196e-02</internalNodes>
<leafValues>
7.7593952417373657e-02 -6.1711072921752930e-01</leafValues></_>
<_>
<internalNodes>
0 -1 113 -4.5132860541343689e-02</internalNodes>
<leafValues>
5.9627789258956909e-01 -1.0650890320539474e-01</leafValues></_>
<_>
<internalNodes>
0 -1 114 -1.0261160321533680e-02</internalNodes>
<leafValues>
3.4028670191764832e-01 -7.6013132929801941e-02</leafValues></_>
<_>
<internalNodes>
0 -1 115 1.9562950183171779e-04</internalNodes>
<leafValues>
-3.2240030169487000e-01 1.5930220484733582e-01</leafValues></_>
<_>
<internalNodes>
0 -1 116 1.2749910354614258e-02</internalNodes>
<leafValues>
3.4237869083881378e-02 -8.2333010435104370e-01</leafValues></_>
<_>
<internalNodes>
0 -1 117 1.0267910547554493e-03</internalNodes>
<leafValues>
-3.3482649922370911e-01 1.4868380129337311e-01</leafValues></_>
<_>
<internalNodes>
0 -1 118 1.1899939738214016e-02</internalNodes>
<leafValues>
-1.1105280369520187e-01 2.9978659749031067e-01</leafValues></_>
<_>
<internalNodes>
0 -1 119 9.4404807314276695e-03</internalNodes>
<leafValues>
6.3143752515316010e-02 -7.4914127588272095e-01</leafValues></_>
<_>
<internalNodes>
0 -1 120 -4.4033881276845932e-03</internalNodes>
<leafValues>
1.5069060027599335e-01 -1.2134409695863724e-01</leafValues></_>
<_>
<internalNodes>
0 -1 121 8.2504339516162872e-03</internalNodes>
<leafValues>
6.5444067120552063e-02 -7.5574231147766113e-01</leafValues></_>
<_>
<internalNodes>
0 -1 122 -1.1925470083951950e-02</internalNodes>
<leafValues>
1.1579179763793945e-01 -1.8231560289859772e-01</leafValues></_>
<_>
<internalNodes>
0 -1 123 2.3744169156998396e-03</internalNodes>
<leafValues>
-2.3897719383239746e-01 1.9362419843673706e-01</leafValues></_>
<_>
<internalNodes>
0 -1 124 1.8954979255795479e-02</internalNodes>
<leafValues>
-7.3902383446693420e-02 9.5206938683986664e-02</leafValues></_>
<_>
<internalNodes>
0 -1 125 -6.4718048088252544e-03</internalNodes>
<leafValues>
1.8825650215148926e-01 -2.7421408891677856e-01</leafValues></_>
<_>
<internalNodes>
0 -1 126 1.1885800398886204e-02</internalNodes>
<leafValues>
-7.9389132559299469e-02 3.9397639036178589e-01</leafValues></_>
<_>
<internalNodes>
0 -1 127 3.9641708135604858e-03</internalNodes>
<leafValues>
-3.1416910886764526e-01 1.5722210705280304e-01</leafValues></_>
<_>
<internalNodes>
0 -1 128 -1.5312650240957737e-02</internalNodes>
<leafValues>
4.3467319011688232e-01 -8.0059163272380829e-02</leafValues></_>
<_>
<internalNodes>
0 -1 129 -4.4087409041821957e-03</internalNodes>
<leafValues>
-6.9355368614196777e-01 7.2660736739635468e-02</leafValues></_>
<_>
<internalNodes>
0 -1 130 2.6811350136995316e-02</internalNodes>
<leafValues>
-2.8735099360346794e-02 4.3056601285934448e-01</leafValues></_>
<_>
<internalNodes>
0 -1 131 1.2916729785501957e-02</internalNodes>
<leafValues>
-7.9113177955150604e-02 5.6161957979202271e-01</leafValues></_>
<_>
<internalNodes>
0 -1 132 -2.8802119195461273e-03</internalNodes>
<leafValues>
-6.6846042871475220e-01 7.7757932245731354e-02</leafValues></_>
<_>
<internalNodes>
0 -1 133 -7.7549487352371216e-02</internalNodes>
<leafValues>
6.9363379478454590e-01 -7.2858713567256927e-02</leafValues></_></weakClassifiers></_>
<_>
<maxWeakCount>33</maxWeakCount>
<stageThreshold>-1.6643459796905518e+00</stageThreshold>
<weakClassifiers>
<_>
<internalNodes>
0 -1 134 1.1415310204029083e-01</internalNodes>
<leafValues>
-4.6382120251655579e-01 3.8176709413528442e-01</leafValues></_>
<_>
<internalNodes>
0 -1 135 4.8969490453600883e-03</internalNodes>
<leafValues>
-1.8987430632114410e-01 3.6797779798507690e-01</leafValues></_>
<_>
<internalNodes>
0 -1 136 2.1013330668210983e-02</internalNodes>
<leafValues>
-3.9102751016616821e-01 3.0523461103439331e-01</leafValues></_>
<_>
<internalNodes>
0 -1 137 -8.5326731204986572e-03</internalNodes>
<leafValues>
4.0289008617401123e-01 -3.7945809960365295e-01</leafValues></_>
<_>
<internalNodes>
0 -1 138 2.2233189083635807e-03</internalNodes>
<leafValues>
-5.8341151475906372e-01 2.0504960417747498e-01</leafValues></_>
<_>
<internalNodes>
0 -1 139 -8.9455489069223404e-03</internalNodes>
<leafValues>
1.0734400153160095e-01 -1.4078269898891449e-01</leafValues></_>
<_>
<internalNodes>
0 -1 140 -4.4652701035374776e-05</internalNodes>
<leafValues>
3.1881740689277649e-01 -2.4204300343990326e-01</leafValues></_>
<_>
<internalNodes>
0 -1 141 -2.7766218781471252e-01</internalNodes>
<leafValues>
3.1993478536605835e-01 -2.3212060332298279e-01</leafValues></_>
<_>
<internalNodes>
0 -1 142 2.9992889612913132e-02</internalNodes>
<leafValues>
-4.8636630177497864e-01 1.5733970701694489e-01</leafValues></_>
<_>
<internalNodes>
0 -1 143 1.0384639725089073e-02</internalNodes>
<leafValues>
-3.5761609673500061e-01 1.0168769955635071e-01</leafValues></_>
<_>
<internalNodes>
0 -1 144 -9.9069289863109589e-03</internalNodes>
<leafValues>
3.4743508696556091e-01 -2.0619870722293854e-01</leafValues></_>
<_>
<internalNodes>
0 -1 145 -9.3680381774902344e-02</internalNodes>
<leafValues>
5.4358488321304321e-01 -7.3790967464447021e-02</leafValues></_>
<_>
<internalNodes>
0 -1 146 4.6968900278443471e-05</internalNodes>
<leafValues>
-3.6511829495429993e-01 2.0056860148906708e-01</leafValues></_>
<_>
<internalNodes>
0 -1 147 -8.3182547241449356e-03</internalNodes>
<leafValues>
-5.2089792490005493e-01 5.1686830818653107e-02</leafValues></_>
<_>
<internalNodes>
0 -1 148 -1.1552570015192032e-01</internalNodes>
<leafValues>
-6.0911101102828979e-01 9.2298023402690887e-02</leafValues></_>
<_>
<internalNodes>
0 -1 149 4.5758039050269872e-05</internalNodes>
<leafValues>
-2.4188159406185150e-01 1.1205270141363144e-01</leafValues></_>
<_>
<internalNodes>
0 -1 150 8.3619967103004456e-02</internalNodes>
<leafValues>
-1.6591419279575348e-01 2.9946151375770569e-01</leafValues></_>
<_>
<internalNodes>
0 -1 151 -1.7055140342563391e-03</internalNodes>
<leafValues>
6.6100686788558960e-02 -1.7834219336509705e-01</leafValues></_>
<_>
<internalNodes>
0 -1 152 -5.0255719572305679e-02</internalNodes>
<leafValues>
5.0841152667999268e-01 -1.0191909968852997e-01</leafValues></_>
<_>
<internalNodes>
0 -1 153 -1.4493470080196857e-02</internalNodes>
<leafValues>
3.3411300182342529e-01 -9.1295331716537476e-02</leafValues></_>
<_>
<internalNodes>
0 -1 154 6.6773351281881332e-03</internalNodes>
<leafValues>
7.0742093026638031e-02 -7.1941351890563965e-01</leafValues></_>
<_>
<internalNodes>
0 -1 155 -2.4902720469981432e-03</internalNodes>
<leafValues>
2.7122259140014648e-01 -2.8118500113487244e-01</leafValues></_>
<_>
<internalNodes>
0 -1 156 5.9668770991265774e-03</internalNodes>
<leafValues>
8.6890019476413727e-02 -5.5102467536926270e-01</leafValues></_>
<_>
<internalNodes>
0 -1 157 8.9923879131674767e-03</internalNodes>
<leafValues>
-1.1156769841909409e-01 1.8312740325927734e-01</leafValues></_>
<_>
<internalNodes>
0 -1 158 -1.8761169631034136e-03</internalNodes>
<leafValues>
1.6583199799060822e-01 -2.9823789000511169e-01</leafValues></_>
<_>
<internalNodes>
0 -1 159 4.4691809453070164e-03</internalNodes>
<leafValues>
6.7625999450683594e-02 -5.9995788335800171e-01</leafValues></_>
<_>
<internalNodes>
0 -1 160 4.9513768404722214e-02</internalNodes>
<leafValues>
-1.1853209882974625e-01 4.0671309828758240e-01</leafValues></_>
<_>
<internalNodes>
0 -1 161 -5.2096061408519745e-02</internalNodes>
<leafValues>
-4.9050968885421753e-01 4.4450759887695312e-02</leafValues></_>
<_>
<internalNodes>
0 -1 162 -5.7540610432624817e-02</internalNodes>
<leafValues>
2.2163380682468414e-01 -2.2697730362415314e-01</leafValues></_>
<_>
<internalNodes>
0 -1 163 -1.2027090415358543e-02</internalNodes>
<leafValues>
-7.8315860033035278e-01 2.5225780904293060e-02</leafValues></_>
<_>
<internalNodes>
0 -1 164 4.3592308647930622e-03</internalNodes>
<leafValues>
7.8445762395858765e-02 -5.4399901628494263e-01</leafValues></_>
<_>
<internalNodes>
0 -1 165 1.0845139622688293e-02</internalNodes>
<leafValues>
4.3532259762287140e-02 -7.5301069021224976e-01</leafValues></_>
<_>
<internalNodes>