Skip to content

Instantly share code, notes, and snippets.

@SunnyMarkLiu
Forked from npinto/cv2_detect.py
Created April 20, 2017 12:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SunnyMarkLiu/31702d29d575815aa2b1b9933e25bf98 to your computer and use it in GitHub Desktop.
Save SunnyMarkLiu/31702d29d575815aa2b1b9933e25bf98 to your computer and use it in GitHub Desktop.
Simple face detection with OpenCV 'cv2' python bindings from 2.4.x
import cv2
import cv2.cv as cv
def detect(img, cascade_fn='haarcascades/haarcascade_frontalface_alt.xml',
scaleFactor=1.3, minNeighbors=4, minSize=(20, 20),
flags=cv.CV_HAAR_SCALE_IMAGE):
cascade = cv2.CascadeClassifier(cascade_fn)
rects = cascade.detectMultiScale(img, scaleFactor=scaleFactor,
minNeighbors=minNeighbors,
minSize=minSize, flags=flags)
if len(rects) == 0:
return []
rects[:, 2:] += rects[:, :2]
return rects
import time
from cv2_detect import detect
import cv2
import cv2.cv as cv
def draw_rects(img, rects, color):
for x1, y1, x2, y2 in rects:
cv2.rectangle(img, (x1, y1), (x2, y2), color, 2)
def demo(in_fn, out_fn):
print ">>> Loading image..."
img_color = cv2.imread(in_fn)
img_gray = cv2.cvtColor(img_color, cv.CV_RGB2GRAY)
img_gray = cv2.equalizeHist(img_gray)
print in_fn, img_gray.shape
print ">>> Detecting faces..."
start = time.time()
rects = detect(img_gray)
end = time.time()
print 'time:', end - start
img_out = img_color.copy()
draw_rects(img_out, rects, (0, 255, 0))
cv2.imwrite(out_fn, img_out)
def main():
demo('pic.jpg', 'pic.detect.jpg')
if __name__ == '__main__':
main()
>>> Loading image...
pic.jpg (2400, 3600)
>>> Detecting faces...
time: 8.11453986168
<?xml version="1.0"?>
<!--
Stump-based 20x20 frontal eye detector.
Created by Shameem Hameed (http://umich.edu/~shameem)
////////////////////////////////////////////////////////////////////////////////////////
IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
By downloading, copying, installing or using the software you agree to this license.
If you do not agree to this license, do not download, install,
copy or use the software.
Intel License Agreement
For Open Source Computer Vision Library
Copyright (C) 2000, Intel Corporation, all rights reserved.
Third party copyrights are property of their respective owners.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistribution's of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistribution's in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* The name of Intel Corporation may not be used to endorse or promote products
derived from this software without specific prior written permission.
This software is provided by the copyright holders and contributors "as is" and
any express or implied warranties, including, but not limited to, the implied
warranties of merchantability and fitness for a particular purpose are disclaimed.
In no event shall the Intel Corporation or contributors be liable for any direct,
indirect, incidental, special, exemplary, or consequential damages
(including, but not limited to, procurement of substitute goods or services;
loss of use, data, or profits; or business interruption) however caused
and on any theory of liability, whether in contract, strict liability,
or tort (including negligence or otherwise) arising in any way out of
the use of this software, even if advised of the possibility of such damage.
-->
<opencv_storage>
<haarcascade_frontaleye type_id="opencv-haar-classifier">
<size>
20 20</size>
<stages>
<_>
<!-- stage 0 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 8 20 12 -1.</_>
<_>
0 14 20 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.1296395957469940</threshold>
<left_val>-0.7730420827865601</left_val>
<right_val>0.6835014820098877</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 1 4 15 -1.</_>
<_>
9 6 4 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0463268086314201</threshold>
<left_val>0.5735275149345398</left_val>
<right_val>-0.4909768998622894</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 10 9 2 -1.</_>
<_>
9 10 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0161730907857418</threshold>
<left_val>0.6025434136390686</left_val>
<right_val>-0.3161070942878723</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 0 10 9 -1.</_>
<_>
7 3 10 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0458288416266441</threshold>
<left_val>0.6417754888534546</left_val>
<right_val>-0.1554504036903381</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 2 2 18 -1.</_>
<_>
12 8 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0537596195936203</threshold>
<left_val>0.5421931743621826</left_val>
<right_val>-0.2048082947731018</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 6 8 6 -1.</_>
<_>
8 9 8 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0341711901128292</threshold>
<left_val>-0.2338819056749344</left_val>
<right_val>0.4841090142726898</right_val></_></_></trees>
<stage_threshold>-1.4562760591506958</stage_threshold>
<parent>-1</parent>
<next>-1</next></_>
<_>
<!-- stage 1 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 0 17 18 -1.</_>
<_>
2 6 17 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.2172762006521225</threshold>
<left_val>0.7109889984130859</left_val>
<right_val>-0.5936073064804077</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 10 1 8 -1.</_>
<_>
10 14 1 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0120719699189067</threshold>
<left_val>-0.2824048101902008</left_val>
<right_val>0.5901355147361755</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 10 9 2 -1.</_>
<_>
10 10 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0178541392087936</threshold>
<left_val>0.5313752293586731</left_val>
<right_val>-0.2275896072387695</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 1 6 6 -1.</_>
<_>
5 3 6 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0223336108028889</threshold>
<left_val>-0.1755609959363937</left_val>
<right_val>0.6335613727569580</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 1 15 9 -1.</_>
<_>
3 4 15 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0914200171828270</threshold>
<left_val>0.6156309247016907</left_val>
<right_val>-0.1689953058958054</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 3 9 6 -1.</_>
<_>
6 5 9 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0289736501872540</threshold>
<left_val>-0.1225007995963097</left_val>
<right_val>0.7440117001533508</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 17 6 3 -1.</_>
<_>
10 17 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.8203463926911354e-003</threshold>
<left_val>0.1697437018156052</left_val>
<right_val>-0.6544165015220642</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 10 9 1 -1.</_>
<_>
12 10 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0203404892235994</threshold>
<left_val>-0.1255664974451065</left_val>
<right_val>0.8271045088768005</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 7 6 11 -1.</_>
<_>
3 7 2 11 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0119261499494314</threshold>
<left_val>0.3860568106174469</left_val>
<right_val>-0.2099234014749527</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 18 3 1 -1.</_>
<_>
10 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.7281101625412703e-004</threshold>
<left_val>-0.6376119256019592</left_val>
<right_val>0.1295239031314850</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 16 1 2 -1.</_>
<_>
16 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.8322050891583785e-005</threshold>
<left_val>-0.3463147878646851</left_val>
<right_val>0.2292426973581314</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 17 6 3 -1.</_>
<_>
11 17 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.0854417756199837e-003</threshold>
<left_val>-0.6366580128669739</left_val>
<right_val>0.1307865977287293</right_val></_></_></trees>
<stage_threshold>-1.2550230026245117</stage_threshold>
<parent>0</parent>
<next>-1</next></_>
<_>
<!-- stage 2 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 0 5 18 -1.</_>
<_>
8 6 5 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1181226968765259</threshold>
<left_val>0.6784452199935913</left_val>
<right_val>-0.5004578232765198</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 7 9 7 -1.</_>
<_>
9 7 3 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0343327596783638</threshold>
<left_val>0.6718636155128479</left_val>
<right_val>-0.3574487864971161</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 6 6 10 -1.</_>
<_>
16 6 2 10 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0215307995676994</threshold>
<left_val>0.7222070097923279</left_val>
<right_val>-0.1819241940975189</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 8 9 5 -1.</_>
<_>
12 8 3 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0219099707901478</threshold>
<left_val>0.6652938723564148</left_val>
<right_val>-0.2751022875308991</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 7 9 6 -1.</_>
<_>
6 7 3 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0287135392427444</threshold>
<left_val>0.6995570063591003</left_val>
<right_val>-0.1961558014154434</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 7 6 6 -1.</_>
<_>
3 7 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0114674801006913</threshold>
<left_val>0.5926734805107117</left_val>
<right_val>-0.2209735065698624</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 0 4 18 -1.</_>
<_>
16 6 4 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0226111691445112</threshold>
<left_val>0.3448306918144226</left_val>
<right_val>-0.3837955892086029</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 17 3 3 -1.</_>
<_>
0 18 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.9308089977130294e-003</threshold>
<left_val>-0.7944571971893311</left_val>
<right_val>0.1562865972518921</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 0 2 1 -1.</_>
<_>
17 0 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.6419910833938047e-005</threshold>
<left_val>-0.3089601099491119</left_val>
<right_val>0.3543108999729157</right_val></_></_></trees>
<stage_threshold>-1.3728189468383789</stage_threshold>
<parent>1</parent>
<next>-1</next></_>
<_>
<!-- stage 3 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 8 20 12 -1.</_>
<_>
0 14 20 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.1988652050495148</threshold>
<left_val>-0.5286070108413696</left_val>
<right_val>0.3553672134876251</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 6 9 8 -1.</_>
<_>
9 6 3 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0360089391469955</threshold>
<left_val>0.4210968911647797</left_val>
<right_val>-0.3934898078441620</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 3 12 9 -1.</_>
<_>
5 6 12 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0775698497891426</threshold>
<left_val>0.4799154102802277</left_val>
<right_val>-0.2512216866016388</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 16 1 2 -1.</_>
<_>
4 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.2630853285081685e-005</threshold>
<left_val>-0.3847548961639404</left_val>
<right_val>0.3184922039508820</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 10 2 1 -1.</_>
<_>
19 10 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.2773229759186506e-004</threshold>
<left_val>-0.2642731964588165</left_val>
<right_val>0.3254724144935608</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 8 6 5 -1.</_>
<_>
11 8 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0185748506337404</threshold>
<left_val>0.4673658907413483</left_val>
<right_val>-0.1506727039813995</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 2 1 -1.</_>
<_>
1 0 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.0008762122597545e-005</threshold>
<left_val>0.2931315004825592</left_val>
<right_val>-0.2536509931087494</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 8 6 6 -1.</_>
<_>
8 8 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0185521300882101</threshold>
<left_val>0.4627366065979004</left_val>
<right_val>-0.1314805001020432</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 7 6 7 -1.</_>
<_>
13 7 2 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0130304200574756</threshold>
<left_val>0.4162721931934357</left_val>
<right_val>-0.1775148957967758</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 14 1 2 -1.</_>
<_>
19 15 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.5694141085259616e-005</threshold>
<left_val>-0.2803510129451752</left_val>
<right_val>0.2668074071407318</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 17 1 2 -1.</_>
<_>
6 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.7005260451696813e-004</threshold>
<left_val>-0.2702724933624268</left_val>
<right_val>0.2398165017366409</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 7 2 7 -1.</_>
<_>
15 7 1 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.3129199873656034e-003</threshold>
<left_val>0.4441143870353699</left_val>
<right_val>-0.1442888975143433</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 8 2 4 -1.</_>
<_>
7 8 1 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.7583490116521716e-003</threshold>
<left_val>-0.1612619012594223</left_val>
<right_val>0.4294076859951019</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 8 12 6 -1.</_>
<_>
5 10 12 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0251947492361069</threshold>
<left_val>0.4068729877471924</left_val>
<right_val>-0.1820258051156998</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 17 1 3 -1.</_>
<_>
2 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.4031709870323539e-003</threshold>
<left_val>0.0847597867250443</left_val>
<right_val>-0.8001856803894043</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 7 3 6 -1.</_>
<_>
7 7 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.3991729877889156e-003</threshold>
<left_val>0.5576609969139099</left_val>
<right_val>-0.1184315979480743</right_val></_></_></trees>
<stage_threshold>-1.2879480123519897</stage_threshold>
<parent>2</parent>
<next>-1</next></_>
<_>
<!-- stage 4 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 7 9 12 -1.</_>
<_>
9 7 3 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0299430806189775</threshold>
<left_val>0.3581081032752991</left_val>
<right_val>-0.3848763108253479</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 2 11 12 -1.</_>
<_>
6 6 11 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1256738007068634</threshold>
<left_val>0.3931693136692047</left_val>
<right_val>-0.3001225888729096</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 12 5 8 -1.</_>
<_>
1 16 5 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.3635272197425365e-003</threshold>
<left_val>-0.4390861988067627</left_val>
<right_val>0.1925701051950455</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 7 6 7 -1.</_>
<_>
16 7 2 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.0971820279955864e-003</threshold>
<left_val>0.3990666866302490</left_val>
<right_val>-0.2340787053108215</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 8 6 6 -1.</_>
<_>
12 8 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0165979098528624</threshold>
<left_val>0.4209528863430023</left_val>
<right_val>-0.2267484068870544</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 18 4 2 -1.</_>
<_>
16 19 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.0199299324303865e-003</threshold>
<left_val>-0.7415673136711121</left_val>
<right_val>0.1260118931531906</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 17 2 3 -1.</_>
<_>
18 18 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.5202340437099338e-003</threshold>
<left_val>-0.7615460157394409</left_val>
<right_val>0.0863736122846603</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 7 3 7 -1.</_>
<_>
10 7 1 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.9663940444588661e-003</threshold>
<left_val>0.4218223989009857</left_val>
<right_val>-0.1790491938591003</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 6 6 8 -1.</_>
<_>
7 6 2 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0192076005041599</threshold>
<left_val>0.4689489901065826</left_val>
<right_val>-0.1437875032424927</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 6 6 11 -1.</_>
<_>
4 6 2 11 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0122226802632213</threshold>
<left_val>0.3284207880496979</left_val>
<right_val>-0.2180214971303940</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 10 12 8 -1.</_>
<_>
8 14 12 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0575486682355404</threshold>
<left_val>-0.3676880896091461</left_val>
<right_val>0.2435711026191711</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 17 6 3 -1.</_>
<_>
9 17 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.5794079825282097e-003</threshold>
<left_val>-0.7224506735801697</left_val>
<right_val>0.0636645630002022</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 9 3 3 -1.</_>
<_>
11 9 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.9545740690082312e-003</threshold>
<left_val>0.3584643900394440</left_val>
<right_val>-0.1669632941484451</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 8 3 6 -1.</_>
<_>
9 8 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.2017991654574871e-003</threshold>
<left_val>0.3909480869770050</left_val>
<right_val>-0.1204179003834724</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 0 6 5 -1.</_>
<_>
9 0 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0136249903589487</threshold>
<left_val>-0.5876771807670593</left_val>
<right_val>0.0884047299623489</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 17 1 3 -1.</_>
<_>
6 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.2853112467564642e-005</threshold>
<left_val>-0.2634845972061157</left_val>
<right_val>0.2141927927732468</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 18 4 2 -1.</_>
<_>
0 19 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.6782939676195383e-003</threshold>
<left_val>-0.7839016914367676</left_val>
<right_val>0.0805269628763199</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 1 11 9 -1.</_>
<_>
4 4 11 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0705971792340279</threshold>
<left_val>0.4146926105022430</left_val>
<right_val>-0.1398995965719223</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 1 14 9 -1.</_>
<_>
3 4 14 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0920936465263367</threshold>
<left_val>-0.1305518001317978</left_val>
<right_val>0.5043578147888184</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 9 6 4 -1.</_>
<_>
2 9 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.8004386052489281e-003</threshold>
<left_val>0.3660975098609924</left_val>
<right_val>-0.1403664946556091</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 13 1 2 -1.</_>
<_>
18 14 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.5080977694597095e-005</threshold>
<left_val>-0.2970443964004517</left_val>
<right_val>0.2070294022560120</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 5 3 11 -1.</_>
<_>
14 5 1 11 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.9870450962334871e-003</threshold>
<left_val>0.3561570048332214</left_val>
<right_val>-0.1544596999883652</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 18 8 2 -1.</_>
<_>
0 18 4 1 2.</_>
<_>
4 19 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.6441509835422039e-003</threshold>
<left_val>-0.5435351729393005</left_val>
<right_val>0.1029511019587517</right_val></_></_></trees>
<stage_threshold>-1.2179850339889526</stage_threshold>
<parent>3</parent>
<next>-1</next></_>
<_>
<!-- stage 5 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 8 12 5 -1.</_>
<_>
9 8 4 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0478624701499939</threshold>
<left_val>0.4152823984622955</left_val>
<right_val>-0.3418582081794739</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 7 11 10 -1.</_>
<_>
4 12 11 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0873505324125290</threshold>
<left_val>-0.3874978125095367</left_val>
<right_val>0.2420420050621033</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 9 6 4 -1.</_>
<_>
16 9 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0168494991958141</threshold>
<left_val>0.5308247804641724</left_val>
<right_val>-0.1728291064500809</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 7 6 8 -1.</_>
<_>
3 7 3 8 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0288700293749571</threshold>
<left_val>0.3584350943565369</left_val>
<right_val>-0.2240259051322937</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 16 3 3 -1.</_>
<_>
0 17 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.5679389946162701e-003</threshold>
<left_val>0.1499049961566925</left_val>
<right_val>-0.6560940742492676</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 11 12 1 -1.</_>
<_>
11 11 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0241166595369577</threshold>
<left_val>0.5588967800140381</left_val>
<right_val>-0.1481028050184250</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 8 9 4 -1.</_>
<_>
7 8 3 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0328266583383083</threshold>
<left_val>0.4646868109703064</left_val>
<right_val>-0.1078552976250649</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 16 6 4 -1.</_>
<_>
7 16 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0152330603450537</threshold>
<left_val>-0.7395442724227905</left_val>
<right_val>0.0562368817627430</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 17 1 3 -1.</_>
<_>
18 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.0209511169232428e-004</threshold>
<left_val>-0.4554882049560547</left_val>
<right_val>0.0970698371529579</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 17 1 3 -1.</_>
<_>
18 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.5365108205005527e-004</threshold>
<left_val>0.0951472967863083</left_val>
<right_val>-0.5489501953125000</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 9 4 10 -1.</_>
<_>
4 9 2 5 2.</_>
<_>
6 14 2 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0106389503926039</threshold>
<left_val>0.4091297090053558</left_val>
<right_val>-0.1230840981006622</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 8 6 4 -1.</_>
<_>
6 8 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.5217830017209053e-003</threshold>
<left_val>0.4028914868831635</left_val>
<right_val>-0.1604878008365631</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 2 2 18 -1.</_>
<_>
10 8 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1067709997296333</threshold>
<left_val>0.6175932288169861</left_val>
<right_val>-0.0730911865830421</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 5 8 6 -1.</_>
<_>
0 5 4 3 2.</_>
<_>
4 8 4 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0162569191306829</threshold>
<left_val>-0.1310368031263351</left_val>
<right_val>0.3745365142822266</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 0 6 5 -1.</_>
<_>
8 0 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0206793602555990</threshold>
<left_val>-0.7140290737152100</left_val>
<right_val>0.0523900091648102</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 0 2 14 -1.</_>
<_>
18 7 2 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0170523691922426</threshold>
<left_val>0.1282286047935486</left_val>
<right_val>-0.3108068108558655</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 18 4 2 -1.</_>
<_>
10 18 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.7122060097754002e-003</threshold>
<left_val>-0.6055650711059570</left_val>
<right_val>0.0818847566843033</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 17 6 3 -1.</_>
<_>
1 18 6 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.0851430235779844e-005</threshold>
<left_val>-0.2681298851966858</left_val>
<right_val>0.1445384025573731</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 8 3 5 -1.</_>
<_>
12 8 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.9284431412816048e-003</threshold>
<left_val>-0.0787953510880470</left_val>
<right_val>0.5676258206367493</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 8 3 4 -1.</_>
<_>
12 8 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.5217379443347454e-003</threshold>
<left_val>0.3706862926483154</left_val>
<right_val>-0.1362057030200958</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 0 6 5 -1.</_>
<_>
13 0 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0224261991679668</threshold>
<left_val>-0.6870499849319458</left_val>
<right_val>0.0510628595948219</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 7 6 7 -1.</_>
<_>
3 7 2 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.6451441273093224e-003</threshold>
<left_val>0.2349222004413605</left_val>
<right_val>-0.1790595948696137</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 13 1 3 -1.</_>
<_>
0 14 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.1175329564139247e-003</threshold>
<left_val>-0.5986905097961426</left_val>
<right_val>0.0743244364857674</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 2 9 6 -1.</_>
<_>
3 4 9 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0192127898335457</threshold>
<left_val>-0.1570255011320114</left_val>
<right_val>0.2973746955394745</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 6 9 2 -1.</_>
<_>
8 7 9 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.6293429806828499e-003</threshold>
<left_val>-0.0997690185904503</left_val>
<right_val>0.4213027060031891</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 14 3 6 -1.</_>
<_>
0 16 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.5671862363815308e-003</threshold>
<left_val>-0.6085879802703857</left_val>
<right_val>0.0735062584280968</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 11 6 4 -1.</_>
<_>
3 11 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0112179601565003</threshold>
<left_val>-0.1032081022858620</left_val>
<right_val>0.4190984964370728</right_val></_></_></trees>
<stage_threshold>-1.2905240058898926</stage_threshold>
<parent>4</parent>
<next>-1</next></_>
<_>
<!-- stage 6 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 9 9 3 -1.</_>
<_>
9 9 3 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0174864400178194</threshold>
<left_val>0.3130728006362915</left_val>
<right_val>-0.3368118107318878</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 0 9 6 -1.</_>
<_>
6 2 9 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0307146497070789</threshold>
<left_val>-0.1876619011163712</left_val>
<right_val>0.5378080010414124</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 5 6 6 -1.</_>
<_>
8 7 6 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0221887193620205</threshold>
<left_val>0.3663788139820099</left_val>
<right_val>-0.1612481027841568</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 12 2 1 -1.</_>
<_>
2 12 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.0700771680567414e-005</threshold>
<left_val>0.2124571055173874</left_val>
<right_val>-0.2844462096691132</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 10 6 2 -1.</_>
<_>
12 10 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.0170420221984386e-003</threshold>
<left_val>0.3954311013221741</left_val>
<right_val>-0.1317359060049057</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 8 6 6 -1.</_>
<_>
15 8 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.8563609384000301e-003</threshold>
<left_val>0.3037385940551758</left_val>
<right_val>-0.2065781950950623</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 16 6 4 -1.</_>
<_>
8 16 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0141292596235871</threshold>
<left_val>-0.7650300860404968</left_val>
<right_val>0.0982131883502007</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 0 9 9 -1.</_>
<_>
8 3 9 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0479154810309410</threshold>
<left_val>0.4830738902091980</left_val>
<right_val>-0.1300680935382843</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 17 1 3 -1.</_>
<_>
18 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.7032979637151584e-005</threshold>
<left_val>-0.2521657049655914</left_val>
<right_val>0.2438668012619019</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 17 1 3 -1.</_>
<_>
18 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.0221180273219943e-003</threshold>
<left_val>0.0688576027750969</left_val>
<right_val>-0.6586114168167114</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 10 3 3 -1.</_>
<_>
8 10 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.6056109927594662e-003</threshold>
<left_val>0.4294202923774719</left_val>
<right_val>-0.1302246004343033</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 14 2 2 -1.</_>
<_>
9 14 1 1 2.</_>
<_>
10 15 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.4505340813193470e-005</threshold>
<left_val>-0.1928862035274506</left_val>
<right_val>0.2895849943161011</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 14 2 2 -1.</_>
<_>
9 14 1 1 2.</_>
<_>
10 15 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.6721157054416835e-005</threshold>
<left_val>0.3029071092605591</left_val>
<right_val>-0.1985436975955963</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 8 19 12 -1.</_>
<_>
0 14 19 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.2628143131732941</threshold>
<left_val>-0.2329394072294235</left_val>
<right_val>0.2369246035814285</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 6 9 14 -1.</_>
<_>
10 6 3 14 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0235696695744991</threshold>
<left_val>0.1940104067325592</left_val>
<right_val>-0.2848461866378784</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 8 3 4 -1.</_>
<_>
14 8 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.9120172150433064e-003</threshold>
<left_val>0.5537897944450378</left_val>
<right_val>-0.0956656783819199</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 17 1 3 -1.</_>
<_>
4 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.0788799853762612e-005</threshold>
<left_val>-0.2391265928745270</left_val>
<right_val>0.2179948985576630</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 9 6 3 -1.</_>
<_>
6 9 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.8732017427682877e-003</threshold>
<left_val>0.4069742858409882</left_val>
<right_val>-0.1276804059743881</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 18 5 2 -1.</_>
<_>
2 19 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.6778609715402126e-003</threshold>
<left_val>-0.5774465799331665</left_val>
<right_val>0.0973247885704041</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 8 2 2 -1.</_>
<_>
7 8 1 1 2.</_>
<_>
8 9 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.6832430739887059e-004</threshold>
<left_val>0.2902188003063202</left_val>
<right_val>-0.1683126986026764</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 8 2 2 -1.</_>
<_>
7 8 1 1 2.</_>
<_>
8 9 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.8687182394787669e-005</threshold>
<left_val>-0.1955157071352005</left_val>
<right_val>0.2772096991539002</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 10 13 2 -1.</_>
<_>
5 11 13 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0129535002633929</threshold>
<left_val>-0.0968383178114891</left_val>
<right_val>0.4032387137413025</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 8 1 9 -1.</_>
<_>
10 11 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0130439596250653</threshold>
<left_val>0.4719856977462769</left_val>
<right_val>-0.0892875492572784</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 8 2 12 -1.</_>
<_>
15 8 1 6 2.</_>
<_>
16 14 1 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.0261781066656113e-003</threshold>
<left_val>-0.1362338066101074</left_val>
<right_val>0.3068627119064331</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 0 3 5 -1.</_>
<_>
5 0 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.0438038781285286e-003</threshold>
<left_val>-0.7795410156250000</left_val>
<right_val>0.0573163107037544</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 6 3 7 -1.</_>
<_>
13 6 1 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.2507249377667904e-003</threshold>
<left_val>0.3087705969810486</left_val>
<right_val>-0.1500630974769592</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 16 6 4 -1.</_>
<_>
9 16 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0158268101513386</threshold>
<left_val>0.0645518898963928</left_val>
<right_val>-0.7245556712150574</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 16 2 1 -1.</_>
<_>
10 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.5864507632795721e-005</threshold>
<left_val>-0.1759884059429169</left_val>
<right_val>0.2321038991212845</right_val></_></_></trees>
<stage_threshold>-1.1600480079650879</stage_threshold>
<parent>5</parent>
<next>-1</next></_>
<_>
<!-- stage 7 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 10 9 2 -1.</_>
<_>
9 10 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0278548691421747</threshold>
<left_val>0.4551844894886017</left_val>
<right_val>-0.1809991002082825</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 6 15 14 -1.</_>
<_>
0 13 15 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.1289504021406174</threshold>
<left_val>-0.5256553292274475</left_val>
<right_val>0.1618890017271042</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 1 5 6 -1.</_>
<_>
9 3 5 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0244031809270382</threshold>
<left_val>-0.1497496068477631</left_val>
<right_val>0.4235737919807434</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 9 3 4 -1.</_>
<_>
4 9 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.4458570405840874e-003</threshold>
<left_val>0.3294866979122162</left_val>
<right_val>-0.1744769066572189</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 7 3 6 -1.</_>
<_>
6 7 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.5336529836058617e-003</threshold>
<left_val>0.4742664098739624</left_val>
<right_val>-0.0736183598637581</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 16 1 2 -1.</_>
<_>
17 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.1358150813030079e-005</threshold>
<left_val>-0.3042193055152893</left_val>
<right_val>0.1563327014446259</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 8 6 12 -1.</_>
<_>
11 8 2 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0162256807088852</threshold>
<left_val>0.2300218045711517</left_val>
<right_val>-0.2035982012748718</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 10 6 1 -1.</_>
<_>
8 10 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.6007009223103523e-003</threshold>
<left_val>0.4045926928520203</left_val>
<right_val>-0.1348544061183929</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 17 9 3 -1.</_>
<_>
10 17 3 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0219289995729923</threshold>
<left_val>-0.6872448921203613</left_val>
<right_val>0.0806842669844627</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 18 6 2 -1.</_>
<_>
14 19 6 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.8971210122108459e-003</threshold>
<left_val>-0.6961960792541504</left_val>
<right_val>0.0485452190041542</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 5 3 14 -1.</_>
<_>
10 5 1 14 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.4074649922549725e-003</threshold>
<left_val>0.2516626119613648</left_val>
<right_val>-0.1623664945363998</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 16 9 4 -1.</_>
<_>
11 16 3 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0284371692687273</threshold>
<left_val>0.0603942610323429</left_val>
<right_val>-0.6674445867538452</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 4 14 -1.</_>
<_>
0 7 4 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0832128822803497</threshold>
<left_val>0.0643579214811325</left_val>
<right_val>-0.5362604260444641</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 1 6 3 -1.</_>
<_>
10 1 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0124193299561739</threshold>
<left_val>-0.7081686258316040</left_val>
<right_val>0.0575266107916832</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 8 3 4 -1.</_>
<_>
7 8 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.6992599964141846e-003</threshold>
<left_val>0.5125433206558228</left_val>
<right_val>-0.0873508006334305</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 8 3 4 -1.</_>
<_>
5 8 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.8025809489190578e-004</threshold>
<left_val>0.2668766081333160</left_val>
<right_val>-0.1796150952577591</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 1 6 5 -1.</_>
<_>
7 1 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0197243392467499</threshold>
<left_val>-0.6756373047828674</left_val>
<right_val>0.0729419067502022</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 18 1 2 -1.</_>
<_>
1 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.0269250487908721e-003</threshold>
<left_val>0.0539193190634251</left_val>
<right_val>-0.5554018020629883</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 0 6 6 -1.</_>
<_>
7 2 6 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0259571895003319</threshold>
<left_val>0.5636252760887146</left_val>
<right_val>-0.0718983933329582</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 18 4 2 -1.</_>
<_>
0 19 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.2552699772641063e-003</threshold>
<left_val>-0.5034663081169128</left_val>
<right_val>0.0896914526820183</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 3 8 12 -1.</_>
<_>
12 7 8 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0499705784022808</threshold>
<left_val>0.1768511980772018</left_val>
<right_val>-0.2230195999145508</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 9 3 4 -1.</_>
<_>
13 9 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.9899610672146082e-003</threshold>
<left_val>0.3912242054939270</left_val>
<right_val>-0.1014975011348724</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 8 3 5 -1.</_>
<_>
13 8 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.8546842299401760e-003</threshold>
<left_val>-0.1177017986774445</left_val>
<right_val>0.4219093918800354</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 0 2 1 -1.</_>
<_>
17 0 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.0448860120959580e-004</threshold>
<left_val>-0.1733397990465164</left_val>
<right_val>0.2234444022178650</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 17 1 3 -1.</_>
<_>
5 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.9689260524464771e-005</threshold>
<left_val>-0.2340963035821915</left_val>
<right_val>0.1655824035406113</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 2 3 6 -1.</_>
<_>
10 4 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0134239196777344</threshold>
<left_val>0.4302381873130798</left_val>
<right_val>-0.0997236520051956</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 17 2 3 -1.</_>
<_>
4 18 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.2581999655812979e-003</threshold>
<left_val>0.0727209895849228</left_val>
<right_val>-0.5750101804733276</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 7 1 9 -1.</_>
<_>
12 10 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0125462803989649</threshold>
<left_val>0.3618457913398743</left_val>
<right_val>-0.1145701035857201</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 6 3 9 -1.</_>
<_>
8 6 1 9 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.8705769218504429e-003</threshold>
<left_val>0.2821053862571716</left_val>
<right_val>-0.1236755028367043</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 13 3 6 -1.</_>
<_>
17 15 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0197856407612562</threshold>
<left_val>0.0478767491877079</left_val>
<right_val>-0.8066623806953430</right_val></_></_>
<_>
<!-- tree 30 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 7 3 8 -1.</_>
<_>
8 7 1 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.7588930465281010e-003</threshold>
<left_val>-0.1092538982629776</left_val>
<right_val>0.3374697864055634</right_val></_></_>
<_>
<!-- tree 31 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 0 3 5 -1.</_>
<_>
6 0 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.9974269717931747e-003</threshold>
<left_val>-0.8029593825340271</left_val>
<right_val>0.0457067005336285</right_val></_></_>
<_>
<!-- tree 32 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 6 9 8 -1.</_>
<_>
7 6 3 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0130334803834558</threshold>
<left_val>0.1868043988943100</left_val>
<right_val>-0.1768891066312790</right_val></_></_>
<_>
<!-- tree 33 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 9 3 3 -1.</_>
<_>
3 9 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.3742579612880945e-003</threshold>
<left_val>0.2772547900676727</left_val>
<right_val>-0.1280900985002518</right_val></_></_>
<_>
<!-- tree 34 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 18 4 2 -1.</_>
<_>
16 19 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.7657810132950544e-003</threshold>
<left_val>0.0907589420676231</left_val>
<right_val>-0.4259473979473114</right_val></_></_>
<_>
<!-- tree 35 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 10 3 10 -1.</_>
<_>
17 15 3 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.8941841446794569e-004</threshold>
<left_val>-0.3881632983684540</left_val>
<right_val>0.0892677977681160</right_val></_></_></trees>
<stage_threshold>-1.2257250547409058</stage_threshold>
<parent>6</parent>
<next>-1</next></_>
<_>
<!-- stage 8 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 9 6 4 -1.</_>
<_>
10 9 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0144692296162248</threshold>
<left_val>0.3750782907009125</left_val>
<right_val>-0.2492828965187073</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 2 10 12 -1.</_>
<_>
5 6 10 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1331762969493866</threshold>
<left_val>0.3016637861728668</left_val>
<right_val>-0.2241407036781311</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 9 6 3 -1.</_>
<_>
8 9 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0101321600377560</threshold>
<left_val>0.3698559105396271</left_val>
<right_val>-0.1785001009702683</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 7 3 7 -1.</_>
<_>
12 7 1 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.8511182218790054e-003</threshold>
<left_val>0.4608676135540009</left_val>
<right_val>-0.1293139010667801</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 8 6 4 -1.</_>
<_>
14 8 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0142958397045732</threshold>
<left_val>0.4484142959117889</left_val>
<right_val>-0.1022624000906944</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 8 6 5 -1.</_>
<_>
16 8 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.9606940485537052e-003</threshold>
<left_val>0.2792798876762390</left_val>
<right_val>-0.1532382965087891</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 12 2 4 -1.</_>
<_>
12 14 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0109327696263790</threshold>
<left_val>-0.1514174044132233</left_val>
<right_val>0.3988964855670929</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 15 1 2 -1.</_>
<_>
3 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.0430990086169913e-005</threshold>
<left_val>-0.2268157005310059</left_val>
<right_val>0.2164438962936401</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 7 3 4 -1.</_>
<_>
13 7 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.8431681245565414e-003</threshold>
<left_val>0.4542014896869659</left_val>
<right_val>-0.1258715987205505</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 0 6 6 -1.</_>
<_>
12 0 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0223462097346783</threshold>
<left_val>-0.6269019246101379</left_val>
<right_val>0.0824031233787537</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 6 3 8 -1.</_>
<_>
11 6 1 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.8836669884622097e-003</threshold>
<left_val>0.2635925114154816</left_val>
<right_val>-0.1468663066625595</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 17 1 2 -1.</_>
<_>
16 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.5506002758629620e-005</threshold>
<left_val>-0.2450702041387558</left_val>
<right_val>0.1667888015508652</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 16 1 3 -1.</_>
<_>
16 17 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.9026997294276953e-004</threshold>
<left_val>-0.4264996051788330</left_val>
<right_val>0.0899735614657402</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 11 1 2 -1.</_>
<_>
11 12 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.4861579984426498e-003</threshold>
<left_val>-0.1204025000333786</left_val>
<right_val>0.3009765148162842</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 7 6 9 -1.</_>
<_>
5 7 2 9 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0119883399456739</threshold>
<left_val>0.2785247862339020</left_val>
<right_val>-0.1224434003233910</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 18 9 1 -1.</_>
<_>
7 18 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0105022396892309</threshold>
<left_val>0.0404527597129345</left_val>
<right_val>-0.7405040860176086</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 11 4 9 -1.</_>
<_>
0 14 4 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0309630092233419</threshold>
<left_val>-0.6284269094467163</left_val>
<right_val>0.0480137616395950</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 17 6 3 -1.</_>
<_>
11 17 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0114145204424858</threshold>
<left_val>0.0394052118062973</left_val>
<right_val>-0.7167412042617798</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 8 6 12 -1.</_>
<_>
9 8 2 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0123370001092553</threshold>
<left_val>0.1994132995605469</left_val>
<right_val>-0.1927430033683777</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 8 3 4 -1.</_>
<_>
7 8 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.9942267835140228e-003</threshold>
<left_val>0.5131816267967224</left_val>
<right_val>-0.0616580583155155</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 17 1 3 -1.</_>
<_>
3 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.1923230485990644e-003</threshold>
<left_val>-0.7260529994964600</left_val>
<right_val>0.0506527200341225</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 9 6 4 -1.</_>
<_>
13 9 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.4582789093255997e-003</threshold>
<left_val>0.2960307896137238</left_val>
<right_val>-0.1175478994846344</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 1 3 2 -1.</_>
<_>
7 1 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.7877509128302336e-003</threshold>
<left_val>0.0450687110424042</left_val>
<right_val>-0.6953541040420532</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 0 2 1 -1.</_>
<_>
2 0 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.2503209766000509e-004</threshold>
<left_val>0.2004725039005280</left_val>
<right_val>-0.1577524989843369</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 0 2 14 -1.</_>
<_>
1 0 1 7 2.</_>
<_>
2 7 1 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.0367889925837517e-003</threshold>
<left_val>0.2929981946945190</left_val>
<right_val>-0.1170049980282784</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 5 11 8 -1.</_>
<_>
5 9 11 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0747421607375145</threshold>
<left_val>-0.1139231994748116</left_val>
<right_val>0.3025662004947662</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 3 5 6 -1.</_>
<_>
9 5 5 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0202555190771818</threshold>
<left_val>-0.1051589027047157</left_val>
<right_val>0.4067046046257019</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 9 5 10 -1.</_>
<_>
7 14 5 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0442145094275475</threshold>
<left_val>-0.2763164043426514</left_val>
<right_val>0.1236386969685555</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 10 2 2 -1.</_>
<_>
16 10 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.7259558495134115e-004</threshold>
<left_val>0.2435503005981445</left_val>
<right_val>-0.1330094933509827</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 18 8 2 -1.</_>
<_>
0 19 8 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.4453739169985056e-003</threshold>
<left_val>-0.5386617183685303</left_val>
<right_val>0.0625106468796730</right_val></_></_>
<_>
<!-- tree 30 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 17 1 3 -1.</_>
<_>
7 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.2725353422574699e-005</threshold>
<left_val>-0.2077220976352692</left_val>
<right_val>0.1627043932676315</right_val></_></_>
<_>
<!-- tree 31 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 2 11 6 -1.</_>
<_>
7 4 11 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0366271100938320</threshold>
<left_val>0.3656840920448303</left_val>
<right_val>-0.0903302803635597</right_val></_></_>
<_>
<!-- tree 32 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 3 9 3 -1.</_>
<_>
8 4 9 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.0996399000287056e-003</threshold>
<left_val>-0.1318302005529404</left_val>
<right_val>0.2535429894924164</right_val></_></_>
<_>
<!-- tree 33 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 9 2 2 -1.</_>
<_>
0 10 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.4709280114620924e-003</threshold>
<left_val>-0.5685349702835083</left_val>
<right_val>0.0535054318606853</right_val></_></_>
<_>
<!-- tree 34 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 5 3 6 -1.</_>
<_>
0 7 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0141146704554558</threshold>
<left_val>-0.4859901070594788</left_val>
<right_val>0.0584852509200573</right_val></_></_>
<_>
<!-- tree 35 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 7 2 2 -1.</_>
<_>
6 7 1 1 2.</_>
<_>
7 8 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.4537261864170432e-004</threshold>
<left_val>-0.0800936371088028</left_val>
<right_val>0.4026564955711365</right_val></_></_>
<_>
<!-- tree 36 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 6 3 6 -1.</_>
<_>
8 6 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.1098632179200649e-003</threshold>
<left_val>0.4470323920249939</left_val>
<right_val>-0.0629474371671677</right_val></_></_>
<_>
<!-- tree 37 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 1 6 4 -1.</_>
<_>
14 1 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0191259607672691</threshold>
<left_val>-0.6642286777496338</left_val>
<right_val>0.0498227700591087</right_val></_></_>
<_>
<!-- tree 38 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 11 6 8 -1.</_>
<_>
11 11 2 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.0773010589182377e-003</threshold>
<left_val>0.1737940013408661</left_val>
<right_val>-0.1685059964656830</right_val></_></_>
<_>
<!-- tree 39 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 15 3 3 -1.</_>
<_>
17 16 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.9198289848864079e-003</threshold>
<left_val>-0.6011028289794922</left_val>
<right_val>0.0574279390275478</right_val></_></_>
<_>
<!-- tree 40 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 6 3 9 -1.</_>
<_>
6 9 3 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0249021500349045</threshold>
<left_val>0.2339798063039780</left_val>
<right_val>-0.1181845963001251</right_val></_></_>
<_>
<!-- tree 41 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 5 8 6 -1.</_>
<_>
0 5 4 3 2.</_>
<_>
4 8 4 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0201477799564600</threshold>
<left_val>-0.0894598215818405</left_val>
<right_val>0.3602440059185028</right_val></_></_>
<_>
<!-- tree 42 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 6 1 3 -1.</_>
<_>
0 7 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.7597640398889780e-003</threshold>
<left_val>0.0494584403932095</left_val>
<right_val>-0.6310262084007263</right_val></_></_>
<_>
<!-- tree 43 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 0 2 6 -1.</_>
<_>
18 0 1 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.3812039978802204e-003</threshold>
<left_val>-0.1521805971860886</left_val>
<right_val>0.1897173970937729</right_val></_></_>
<_>
<!-- tree 44 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 17 6 3 -1.</_>
<_>
12 17 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0109045403078198</threshold>
<left_val>-0.5809738039970398</left_val>
<right_val>0.0448627285659313</right_val></_></_>
<_>
<!-- tree 45 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 15 2 2 -1.</_>
<_>
13 15 1 1 2.</_>
<_>
14 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.5157178798690438e-005</threshold>
<left_val>-0.1377734988927841</left_val>
<right_val>0.1954316049814224</right_val></_></_>
<_>
<!-- tree 46 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 0 12 3 -1.</_>
<_>
4 1 12 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.8649770431220531e-003</threshold>
<left_val>-0.1030222997069359</left_val>
<right_val>0.2537496984004974</right_val></_></_></trees>
<stage_threshold>-1.2863140106201172</stage_threshold>
<parent>7</parent>
<next>-1</next></_>
<_>
<!-- stage 9 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 3 10 9 -1.</_>
<_>
5 6 10 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1021588966250420</threshold>
<left_val>0.4168125987052918</left_val>
<right_val>-0.1665562987327576</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 7 9 7 -1.</_>
<_>
10 7 3 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0519398190081120</threshold>
<left_val>0.3302395045757294</left_val>
<right_val>-0.2071571052074432</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 8 9 6 -1.</_>
<_>
8 8 3 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0427177809178829</threshold>
<left_val>0.2609373033046722</left_val>
<right_val>-0.1601389050483704</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 16 6 2 -1.</_>
<_>
0 17 6 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.3890418601222336e-004</threshold>
<left_val>-0.3475053012371063</left_val>
<right_val>0.1391891986131668</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 6 7 14 -1.</_>
<_>
12 13 7 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0242643896490335</threshold>
<left_val>-0.4255205988883972</left_val>
<right_val>0.1357838064432144</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 7 6 8 -1.</_>
<_>
15 7 2 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0238205995410681</threshold>
<left_val>0.3174980878829956</left_val>
<right_val>-0.1665204018354416</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 10 6 3 -1.</_>
<_>
4 10 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.0518180727958679e-003</threshold>
<left_val>0.3094717860221863</left_val>
<right_val>-0.1333830058574677</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 17 1 3 -1.</_>
<_>
18 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.8517157342284918e-004</threshold>
<left_val>-0.6008226275444031</left_val>
<right_val>0.0877470001578331</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 1 6 2 -1.</_>
<_>
7 2 6 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.3705149330198765e-003</threshold>
<left_val>-0.1231144964694977</left_val>
<right_val>0.3833355009555817</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 0 6 4 -1.</_>
<_>
6 2 6 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0134035395458341</threshold>
<left_val>0.3387736976146698</left_val>
<right_val>-0.1014048978686333</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 18 6 2 -1.</_>
<_>
10 18 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.6856360062956810e-003</threshold>
<left_val>-0.6119359731674194</left_val>
<right_val>0.0477402210235596</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 6 5 2 -1.</_>
<_>
7 7 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.2887418530881405e-003</threshold>
<left_val>0.2527579069137573</left_val>
<right_val>-0.1443451046943665</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 7 3 6 -1.</_>
<_>
7 7 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0108767496421933</threshold>
<left_val>0.5477573275566101</left_val>
<right_val>-0.0594554804265499</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 18 2 2 -1.</_>
<_>
18 18 1 1 2.</_>
<_>
19 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.7882640026509762e-004</threshold>
<left_val>0.0834103003144264</left_val>
<right_val>-0.4422636926174164</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 8 3 7 -1.</_>
<_>
17 8 1 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.4550149682909250e-003</threshold>
<left_val>0.2333099991083145</left_val>
<right_val>-0.1396448016166687</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 16 2 3 -1.</_>
<_>
0 17 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.2721839593723416e-003</threshold>
<left_val>0.0604802891612053</left_val>
<right_val>-0.4945608973503113</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 19 6 1 -1.</_>
<_>
7 19 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.8933159559965134e-003</threshold>
<left_val>-0.6683326959609985</left_val>
<right_val>0.0462184995412827</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 5 6 6 -1.</_>
<_>
9 7 6 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0264499895274639</threshold>
<left_val>-0.0732353627681732</left_val>
<right_val>0.4442596137523651</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 10 2 4 -1.</_>
<_>
0 12 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.3706070389598608e-003</threshold>
<left_val>-0.4246433973312378</left_val>
<right_val>0.0686765611171722</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 9 4 3 -1.</_>
<_>
2 9 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.9559480026364326e-003</threshold>
<left_val>0.1621803939342499</left_val>
<right_val>-0.1822299957275391</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 10 6 9 -1.</_>
<_>
3 10 2 9 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0306199099868536</threshold>
<left_val>-0.0586433410644531</left_val>
<right_val>0.5326362848281860</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 0 6 2 -1.</_>
<_>
11 0 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.5765907317399979e-003</threshold>
<left_val>-0.6056268215179443</left_val>
<right_val>0.0533459894359112</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 1 2 1 -1.</_>
<_>
15 1 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.6372493165545166e-005</threshold>
<left_val>-0.1668083965778351</left_val>
<right_val>0.1928416043519974</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 8 1 4 -1.</_>
<_>
0 10 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.0975950434803963e-003</threshold>
<left_val>0.0441195107996464</left_val>
<right_val>-0.5745884180068970</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 6 2 2 -1.</_>
<_>
15 6 1 1 2.</_>
<_>
16 7 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.7112718564458191e-004</threshold>
<left_val>-0.1108639985322952</left_val>
<right_val>0.2310539036989212</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 5 3 6 -1.</_>
<_>
8 5 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.6607588455080986e-003</threshold>
<left_val>0.4045628905296326</left_val>
<right_val>-0.0624460913240910</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 17 1 3 -1.</_>
<_>
19 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.7489158613607287e-004</threshold>
<left_val>0.0648751482367516</left_val>
<right_val>-0.4487104117870331</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 10 3 1 -1.</_>
<_>
8 10 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.1120870476588607e-003</threshold>
<left_val>-0.0938614606857300</left_val>
<right_val>0.3045391142368317</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 1 6 6 -1.</_>
<_>
14 1 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0238378196954727</threshold>
<left_val>-0.5888742804527283</left_val>
<right_val>0.0466594211757183</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 5 2 1 -1.</_>
<_>
16 5 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.2272899514064193e-004</threshold>
<left_val>-0.1489859968423843</left_val>
<right_val>0.1770195066928864</right_val></_></_>
<_>
<!-- tree 30 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 2 7 4 -1.</_>
<_>
8 4 7 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0244674701243639</threshold>
<left_val>-0.0557896010577679</left_val>
<right_val>0.4920830130577087</right_val></_></_>
<_>
<!-- tree 31 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 0 14 15 -1.</_>
<_>
4 5 14 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1423932015895844</threshold>
<left_val>0.1519200056791306</left_val>
<right_val>-0.1877889931201935</right_val></_></_>
<_>
<!-- tree 32 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 8 6 6 -1.</_>
<_>
9 8 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0201231203973293</threshold>
<left_val>0.2178010046482086</left_val>
<right_val>-0.1208190023899078</right_val></_></_>
<_>
<!-- tree 33 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 17 1 3 -1.</_>
<_>
11 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.1513679783092812e-004</threshold>
<left_val>-0.1685658991336823</left_val>
<right_val>0.1645192950963974</right_val></_></_>
<_>
<!-- tree 34 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 16 2 4 -1.</_>
<_>
12 16 1 2 2.</_>
<_>
13 18 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.7556740678846836e-003</threshold>
<left_val>-0.6944203972816467</left_val>
<right_val>0.0394494682550430</right_val></_></_>
<_>
<!-- tree 35 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 13 2 1 -1.</_>
<_>
11 13 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.5843912782147527e-005</threshold>
<left_val>0.1894136965274811</left_val>
<right_val>-0.1518384069204330</right_val></_></_>
<_>
<!-- tree 36 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 8 3 3 -1.</_>
<_>
12 8 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.0697711780667305e-003</threshold>
<left_val>0.4706459939479828</left_val>
<right_val>-0.0579276196658611</right_val></_></_>
<_>
<!-- tree 37 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 0 6 8 -1.</_>
<_>
4 0 2 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0373931787908077</threshold>
<left_val>-0.7589244842529297</left_val>
<right_val>0.0341160483658314</right_val></_></_>
<_>
<!-- tree 38 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 5 6 6 -1.</_>
<_>
3 5 3 3 2.</_>
<_>
6 8 3 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0159956105053425</threshold>
<left_val>0.3067046999931335</left_val>
<right_val>-0.0875255763530731</right_val></_></_>
<_>
<!-- tree 39 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 8 3 3 -1.</_>
<_>
11 8 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.1183990649878979e-003</threshold>
<left_val>0.2619537115097046</left_val>
<right_val>-0.0912148877978325</right_val></_></_>
<_>
<!-- tree 40 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 17 4 2 -1.</_>
<_>
5 18 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.0651360498741269e-003</threshold>
<left_val>-0.1742756068706513</left_val>
<right_val>0.1527764052152634</right_val></_></_>
<_>
<!-- tree 41 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 16 5 2 -1.</_>
<_>
8 17 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.6029420075938106e-003</threshold>
<left_val>0.3561263084411621</left_val>
<right_val>-0.0766299962997437</right_val></_></_>
<_>
<!-- tree 42 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 4 3 3 -1.</_>
<_>
0 5 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.3619908392429352e-003</threshold>
<left_val>0.0493569709360600</left_val>
<right_val>-0.5922877192497253</right_val></_></_>
<_>
<!-- tree 43 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 3 6 2 -1.</_>
<_>
8 3 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0107799097895622</threshold>
<left_val>-0.6392217874526978</left_val>
<right_val>0.0332045406103134</right_val></_></_>
<_>
<!-- tree 44 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 4 9 3 -1.</_>
<_>
7 4 3 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.3590869754552841e-003</threshold>
<left_val>0.1610738933086395</left_val>
<right_val>-0.1522132009267807</right_val></_></_>
<_>
<!-- tree 45 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 13 1 4 -1.</_>
<_>
0 15 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.4596069753170013e-003</threshold>
<left_val>0.0331729613244534</left_val>
<right_val>-0.7500774264335632</right_val></_></_>
<_>
<!-- tree 46 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 17 8 3 -1.</_>
<_>
0 18 8 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.1385448575019836e-003</threshold>
<left_val>0.0263252798467875</left_val>
<right_val>-0.7173116207122803</right_val></_></_>
<_>
<!-- tree 47 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 1 11 6 -1.</_>
<_>
6 3 11 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0333384908735752</threshold>
<left_val>0.3353661000728607</left_val>
<right_val>-0.0708035901188850</right_val></_></_></trees>
<stage_threshold>-1.1189440488815308</stage_threshold>
<parent>8</parent>
<next>-1</next></_>
<_>
<!-- stage 10 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 10 6 2 -1.</_>
<_>
6 10 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0195539798587561</threshold>
<left_val>-0.1043972000479698</left_val>
<right_val>0.5312895178794861</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 8 1 12 -1.</_>
<_>
10 14 1 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0221229195594788</threshold>
<left_val>-0.2474727034568787</left_val>
<right_val>0.2084725052118301</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 8 3 4 -1.</_>
<_>
6 8 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.1829389519989491e-003</threshold>
<left_val>0.3828943967819214</left_val>
<right_val>-0.1471157968044281</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 17 1 3 -1.</_>
<_>
0 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.6381728760898113e-004</threshold>
<left_val>-0.6263288855552673</left_val>
<right_val>0.1199325993657112</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 17 1 3 -1.</_>
<_>
0 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.9958612332120538e-004</threshold>
<left_val>0.0925734713673592</left_val>
<right_val>-0.5516883134841919</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 8 3 4 -1.</_>
<_>
14 8 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.1527570039033890e-003</threshold>
<left_val>-0.0729298070073128</left_val>
<right_val>0.5551251173019409</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 5 5 4 -1.</_>
<_>
1 7 5 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.9388681761920452e-003</threshold>
<left_val>0.2019603997468948</left_val>
<right_val>-0.2091203927993774</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 14 1 2 -1.</_>
<_>
18 15 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.4613410166930407e-004</threshold>
<left_val>-0.2786181867122650</left_val>
<right_val>0.1381741017103195</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 8 2 4 -1.</_>
<_>
14 8 1 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.1691689509898424e-003</threshold>
<left_val>0.3668589890003204</left_val>
<right_val>-0.0763082429766655</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 6 6 8 -1.</_>
<_>
12 6 2 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0221893899142742</threshold>
<left_val>0.3909659981727600</left_val>
<right_val>-0.1097154021263123</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 6 6 10 -1.</_>
<_>
10 6 2 10 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.4523608200252056e-003</threshold>
<left_val>0.1283859014511108</left_val>
<right_val>-0.2415986955165863</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 16 1 3 -1.</_>
<_>
17 17 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.7997002517804503e-004</threshold>
<left_val>0.0719780698418617</left_val>
<right_val>-0.4397650063037872</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 7 2 10 -1.</_>
<_>
2 7 1 10 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.6783639118075371e-003</threshold>
<left_val>0.2156984955072403</left_val>
<right_val>-0.1420592069625855</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 9 6 3 -1.</_>
<_>
7 9 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0151886399835348</threshold>
<left_val>0.3645878136157990</left_val>
<right_val>-0.0826759263873100</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 8 5 12 -1.</_>
<_>
0 14 5 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.0619798712432384e-003</threshold>
<left_val>-0.3438040912151337</left_val>
<right_val>0.0920682325959206</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 11 1 3 -1.</_>
<_>
0 12 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.7351920250803232e-003</threshold>
<left_val>-0.6172549724578857</left_val>
<right_val>0.0492144785821438</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 16 6 4 -1.</_>
<_>
8 16 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0124234501272440</threshold>
<left_val>-0.5855895280838013</left_val>
<right_val>0.0461126007139683</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 6 2 6 -1.</_>
<_>
0 8 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0130314296111465</threshold>
<left_val>-0.5971078872680664</left_val>
<right_val>0.0406724587082863</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 18 2 1 -1.</_>
<_>
12 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.2369629694148898e-003</threshold>
<left_val>-0.6833416819572449</left_val>
<right_val>0.0331561788916588</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 1 9 2 -1.</_>
<_>
5 2 9 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.1022108420729637e-003</threshold>
<left_val>-0.0947292372584343</left_val>
<right_val>0.3010224103927612</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 1 2 -1.</_>
<_>
0 1 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.6952849738299847e-004</threshold>
<left_val>0.0818168669939041</left_val>
<right_val>-0.3519603013992310</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 9 3 3 -1.</_>
<_>
16 9 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.7970580374822021e-003</threshold>
<left_val>0.2371897995471954</left_val>
<right_val>-0.1176870986819267</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 16 1 3 -1.</_>
<_>
18 17 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.1074528386816382e-004</threshold>
<left_val>-0.4476378858089447</left_val>
<right_val>0.0576824806630611</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 10 6 1 -1.</_>
<_>
13 10 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.9126471169292927e-003</threshold>
<left_val>0.4342541098594666</left_val>
<right_val>-0.0668685734272003</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 3 4 4 -1.</_>
<_>
3 3 2 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.3132149837911129e-003</threshold>
<left_val>0.1815001070499420</left_val>
<right_val>-0.1418032050132752</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 2 1 18 -1.</_>
<_>
11 8 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0608146600425243</threshold>
<left_val>0.4722171127796173</left_val>
<right_val>-0.0614106394350529</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 1 5 12 -1.</_>
<_>
9 5 5 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0967141836881638</threshold>
<left_val>0.2768316864967346</left_val>
<right_val>-0.0944900363683701</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 0 8 1 -1.</_>
<_>
16 0 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.9073550142347813e-003</threshold>
<left_val>-0.1227853000164032</left_val>
<right_val>0.2105740010738373</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 6 3 10 -1.</_>
<_>
9 6 1 10 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.0431869029998779e-003</threshold>
<left_val>0.3564156889915466</left_val>
<right_val>-0.0778062269091606</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 2 1 6 -1.</_>
<_>
19 4 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.8800031654536724e-003</threshold>
<left_val>-0.4103479087352753</left_val>
<right_val>0.0696943774819374</right_val></_></_>
<_>
<!-- tree 30 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 6 2 2 -1.</_>
<_>
18 7 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.3547428213059902e-003</threshold>
<left_val>-0.7301788926124573</left_val>
<right_val>0.0366551503539085</right_val></_></_>
<_>
<!-- tree 31 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 7 3 4 -1.</_>
<_>
8 7 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.6500627696514130e-003</threshold>
<left_val>0.5518112778663635</left_val>
<right_val>-0.0531680807471275</right_val></_></_>
<_>
<!-- tree 32 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 0 6 5 -1.</_>
<_>
7 0 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0173973105847836</threshold>
<left_val>-0.5708423256874085</left_val>
<right_val>0.0502140894532204</right_val></_></_>
<_>
<!-- tree 33 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 3 7 3 -1.</_>
<_>
0 4 7 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.8304329179227352e-003</threshold>
<left_val>-0.4618028104305267</left_val>
<right_val>0.0502026900649071</right_val></_></_>
<_>
<!-- tree 34 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 6 2 1 -1.</_>
<_>
2 6 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.3255619928240776e-004</threshold>
<left_val>-0.0953627303242683</left_val>
<right_val>0.2598375976085663</right_val></_></_>
<_>
<!-- tree 35 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 8 2 10 -1.</_>
<_>
4 8 1 5 2.</_>
<_>
5 13 1 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.3100529797375202e-003</threshold>
<left_val>0.2287247031927109</left_val>
<right_val>-0.1053353026509285</right_val></_></_>
<_>
<!-- tree 36 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 18 18 2 -1.</_>
<_>
2 18 9 1 2.</_>
<_>
11 19 9 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.5426651164889336e-003</threshold>
<left_val>-0.5699051022529602</left_val>
<right_val>0.0488634593784809</right_val></_></_>
<_>
<!-- tree 37 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 7 4 4 -1.</_>
<_>
2 7 2 2 2.</_>
<_>
4 9 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.2723060362040997e-003</threshold>
<left_val>0.3514518141746521</left_val>
<right_val>-0.0823901072144508</right_val></_></_>
<_>
<!-- tree 38 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 3 3 4 -1.</_>
<_>
18 3 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.8578968271613121e-003</threshold>
<left_val>-0.6041762232780457</left_val>
<right_val>0.0445394404232502</right_val></_></_>
<_>
<!-- tree 39 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 9 2 8 -1.</_>
<_>
16 9 1 4 2.</_>
<_>
17 13 1 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.5867310576140881e-003</threshold>
<left_val>-0.1034090965986252</left_val>
<right_val>0.2328201979398727</right_val></_></_>
<_>
<!-- tree 40 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 7 1 6 -1.</_>
<_>
15 9 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.7427811659872532e-003</threshold>
<left_val>0.2849028110504150</left_val>
<right_val>-0.0980904996395111</right_val></_></_>
<_>
<!-- tree 41 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 2 2 2 -1.</_>
<_>
14 3 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.3515240279957652e-003</threshold>
<left_val>0.2309643030166626</left_val>
<right_val>-0.1136184036731720</right_val></_></_>
<_>
<!-- tree 42 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 0 2 3 -1.</_>
<_>
17 1 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.2526069078594446e-003</threshold>
<left_val>0.0644783228635788</left_val>
<right_val>-0.4220589101314545</right_val></_></_>
<_>
<!-- tree 43 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 18 2 2 -1.</_>
<_>
16 18 1 1 2.</_>
<_>
17 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.8038659840822220e-004</threshold>
<left_val>-0.3807620108127594</left_val>
<right_val>0.0600432902574539</right_val></_></_>
<_>
<!-- tree 44 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 4 4 3 -1.</_>
<_>
10 5 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.9043921753764153e-003</threshold>
<left_val>-0.0761049985885620</left_val>
<right_val>0.3323217034339905</right_val></_></_>
<_>
<!-- tree 45 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 2 8 6 -1.</_>
<_>
4 2 4 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.0969670563936234e-003</threshold>
<left_val>0.1428779065608978</left_val>
<right_val>-0.1688780039548874</right_val></_></_>
<_>
<!-- tree 46 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 14 6 6 -1.</_>
<_>
7 16 6 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.9317929446697235e-003</threshold>
<left_val>0.2725540995597839</left_val>
<right_val>-0.0928795635700226</right_val></_></_>
<_>
<!-- tree 47 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 15 2 2 -1.</_>
<_>
11 16 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.1471060570329428e-003</threshold>
<left_val>-0.1527305990457535</left_val>
<right_val>0.1970240026712418</right_val></_></_>
<_>
<!-- tree 48 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 1 9 4 -1.</_>
<_>
10 1 3 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0376628898084164</threshold>
<left_val>-0.5932043790817261</left_val>
<right_val>0.0407386012375355</right_val></_></_>
<_>
<!-- tree 49 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 7 3 7 -1.</_>
<_>
10 7 1 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.8165571428835392e-003</threshold>
<left_val>0.2549408972263336</left_val>
<right_val>-0.0940819606184959</right_val></_></_>
<_>
<!-- tree 50 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 17 2 2 -1.</_>
<_>
6 17 1 1 2.</_>
<_>
7 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.6205562325194478e-004</threshold>
<left_val>0.0467957183718681</left_val>
<right_val>-0.4845437109470367</right_val></_></_>
<_>
<!-- tree 51 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 6 3 9 -1.</_>
<_>
5 6 1 9 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.2202551849186420e-003</threshold>
<left_val>0.2468214929103851</left_val>
<right_val>-0.0946739763021469</right_val></_></_>
<_>
<!-- tree 52 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 10 19 10 -1.</_>
<_>
0 15 19 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0689865127205849</threshold>
<left_val>-0.6651480197906494</left_val>
<right_val>0.0359263904392719</right_val></_></_>
<_>
<!-- tree 53 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 17 6 1 -1.</_>
<_>
7 17 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.1707608401775360e-003</threshold>
<left_val>0.0258333198726177</left_val>
<right_val>-0.7268627285957336</right_val></_></_>
<_>
<!-- tree 54 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 12 6 3 -1.</_>
<_>
3 12 3 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0105362497270107</threshold>
<left_val>-0.0818289965391159</left_val>
<right_val>0.2976079881191254</right_val></_></_></trees>
<stage_threshold>-1.1418989896774292</stage_threshold>
<parent>9</parent>
<next>-1</next></_>
<_>
<!-- stage 11 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 5 18 5 -1.</_>
<_>
8 5 6 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0627587288618088</threshold>
<left_val>0.2789908051490784</left_val>
<right_val>-0.2965610921382904</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 15 6 4 -1.</_>
<_>
1 17 6 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.4516479354351759e-003</threshold>
<left_val>-0.3463588058948517</left_val>
<right_val>0.2090384066104889</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 10 6 6 -1.</_>
<_>
16 10 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.8699486330151558e-003</threshold>
<left_val>0.2414488941431046</left_val>
<right_val>-0.1920557022094727</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 14 4 3 -1.</_>
<_>
0 15 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.4624869003891945e-003</threshold>
<left_val>-0.5915178060531616</left_val>
<right_val>0.1248644962906838</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 7 6 11 -1.</_>
<_>
3 7 2 11 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.4818761572241783e-003</threshold>
<left_val>0.1839154064655304</left_val>
<right_val>-0.2485826015472412</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 17 7 2 -1.</_>
<_>
13 18 7 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.3226840130519122e-004</threshold>
<left_val>-0.3304725885391235</left_val>
<right_val>0.1099926009774208</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 14 2 3 -1.</_>
<_>
0 15 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.8101120367646217e-003</threshold>
<left_val>0.0987440124154091</left_val>
<right_val>-0.4963478147983551</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 6 2 -1.</_>
<_>
3 0 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.4422430694103241e-003</threshold>
<left_val>0.2934441864490509</left_val>
<right_val>-0.1309475004673004</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 1 6 3 -1.</_>
<_>
3 1 3 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.4148122221231461e-003</threshold>
<left_val>-0.1476269960403442</left_val>
<right_val>0.3327716886997223</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 8 2 6 -1.</_>
<_>
0 10 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0155651401728392</threshold>
<left_val>-0.6840490102767944</left_val>
<right_val>0.0998726934194565</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 2 6 14 -1.</_>
<_>
1 2 3 7 2.</_>
<_>
4 9 3 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0287205204367638</threshold>
<left_val>-0.1483328044414520</left_val>
<right_val>0.3090257942676544</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 5 2 2 -1.</_>
<_>
17 5 1 1 2.</_>
<_>
18 6 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.6687392215244472e-005</threshold>
<left_val>-0.1743104010820389</left_val>
<right_val>0.2140295952558518</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 10 9 4 -1.</_>
<_>
14 10 3 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0523710586130619</threshold>
<left_val>-0.0701568573713303</left_val>
<right_val>0.4922299087047577</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 9 12 4 -1.</_>
<_>
6 9 4 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0864856913685799</threshold>
<left_val>0.5075724720954895</left_val>
<right_val>-0.0752942115068436</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 10 12 2 -1.</_>
<_>
11 10 4 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0421698689460754</threshold>
<left_val>0.4568096101284027</left_val>
<right_val>-0.0902199000120163</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 13 1 2 -1.</_>
<_>
2 14 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.5369830331765115e-005</threshold>
<left_val>-0.2653827965259552</left_val>
<right_val>0.1618953943252564</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 7 4 3 -1.</_>
<_>
16 8 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.2918000146746635e-003</threshold>
<left_val>0.0748901516199112</left_val>
<right_val>-0.5405467152595520</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 16 1 3 -1.</_>
<_>
19 17 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.5511651812121272e-004</threshold>
<left_val>-0.4926199018955231</left_val>
<right_val>0.0587239488959312</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 11 1 2 -1.</_>
<_>
18 12 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.5108138844370842e-005</threshold>
<left_val>-0.2143210023641586</left_val>
<right_val>0.1407776027917862</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 7 8 2 -1.</_>
<_>
12 7 4 1 2.</_>
<_>
16 8 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.9981209449470043e-003</threshold>
<left_val>-0.0905473381280899</left_val>
<right_val>0.3571606874465942</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 9 2 4 -1.</_>
<_>
15 9 1 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.4929979806765914e-003</threshold>
<left_val>0.2562345862388611</left_val>
<right_val>-0.1422906965017319</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 2 6 4 -1.</_>
<_>
14 2 3 2 2.</_>
<_>
17 4 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.7239411137998104e-003</threshold>
<left_val>-0.1564925014972687</left_val>
<right_val>0.2108871042728424</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 0 6 1 -1.</_>
<_>
17 0 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.2218320518732071e-003</threshold>
<left_val>-0.1507298946380615</left_val>
<right_val>0.2680186927318573</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 12 2 1 -1.</_>
<_>
4 12 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.3993072146549821e-004</threshold>
<left_val>0.2954699099063873</left_val>
<right_val>-0.1069239005446434</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 2 3 1 -1.</_>
<_>
18 2 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.0113459322601557e-003</threshold>
<left_val>0.0506143495440483</left_val>
<right_val>-0.7168337106704712</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 16 18 2 -1.</_>
<_>
7 16 6 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0114528704434633</threshold>
<left_val>-0.1271906942129135</left_val>
<right_val>0.2415277957916260</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 19 8 1 -1.</_>
<_>
6 19 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.0782170575112104e-003</threshold>
<left_val>0.2481300979852676</left_val>
<right_val>-0.1346119940280914</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 17 4 3 -1.</_>
<_>
1 18 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.3417691010981798e-003</threshold>
<left_val>0.0535783097147942</left_val>
<right_val>-0.5227416753768921</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 13 1 2 -1.</_>
<_>
19 14 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.9398651248775423e-005</threshold>
<left_val>-0.2169874012470245</left_val>
<right_val>0.1281217932701111</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 16 10 4 -1.</_>
<_>
9 16 5 2 2.</_>
<_>
14 18 5 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.0982551872730255e-003</threshold>
<left_val>0.2440188974142075</left_val>
<right_val>-0.1157058998942375</right_val></_></_>
<_>
<!-- tree 30 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 9 2 4 -1.</_>
<_>
12 9 1 2 2.</_>
<_>
13 11 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.6289720078930259e-003</threshold>
<left_val>0.2826147079467773</left_val>
<right_val>-0.1065946966409683</right_val></_></_>
<_>
<!-- tree 31 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 11 1 9 -1.</_>
<_>
19 14 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0139848599210382</threshold>
<left_val>0.0427158996462822</left_val>
<right_val>-0.7364631295204163</right_val></_></_></trees>
<stage_threshold>-1.1255199909210205</stage_threshold>
<parent>10</parent>
<next>-1</next></_>
<_>
<!-- stage 12 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 6 14 14 -1.</_>
<_>
6 13 14 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.1641651988029480</threshold>
<left_val>-0.4896030128002167</left_val>
<right_val>0.1760770976543427</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 17 4 2 -1.</_>
<_>
2 18 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.3413062384352088e-004</threshold>
<left_val>-0.2822043001651764</left_val>
<right_val>0.2419957965612412</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 2 1 3 -1.</_>
<_>
0 3 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.7193210078403354e-003</threshold>
<left_val>-0.7148588895797730</left_val>
<right_val>0.0861622169613838</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 12 1 3 -1.</_>
<_>
0 13 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.5654950402677059e-003</threshold>
<left_val>-0.7297238111495972</left_val>
<right_val>0.0940706729888916</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 15 4 4 -1.</_>
<_>
15 17 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.9124479731544852e-003</threshold>
<left_val>-0.3118715882301331</left_val>
<right_val>0.1814339011907578</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 5 18 7 -1.</_>
<_>
8 5 6 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1351236999034882</threshold>
<left_val>0.2957729995250702</left_val>
<right_val>-0.2217925041913986</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 16 5 3 -1.</_>
<_>
1 17 5 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.0300549007952213e-003</threshold>
<left_val>-0.6659513711929321</left_val>
<right_val>0.0854310169816017</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 4 2 3 -1.</_>
<_>
0 5 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.8640460222959518e-003</threshold>
<left_val>-0.6208636164665222</left_val>
<right_val>0.0531060211360455</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 6 2 6 -1.</_>
<_>
1 6 1 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.4065420255064964e-003</threshold>
<left_val>0.2234628945589066</left_val>
<right_val>-0.2021100968122482</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 14 4 3 -1.</_>
<_>
16 15 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.5820449702441692e-003</threshold>
<left_val>-0.5403040051460266</left_val>
<right_val>0.0682136192917824</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 10 6 -1.</_>
<_>
0 0 5 3 2.</_>
<_>
5 3 5 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0415444709360600</threshold>
<left_val>-0.0652158409357071</left_val>
<right_val>0.6210923194885254</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 2 3 6 -1.</_>
<_>
3 2 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.1709550470113754e-003</threshold>
<left_val>-0.7555329799652100</left_val>
<right_val>0.0526404492557049</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 0 3 10 -1.</_>
<_>
3 0 1 10 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.1552738770842552e-003</threshold>
<left_val>0.0909394025802612</left_val>
<right_val>-0.4424613118171692</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 5 2 2 -1.</_>
<_>
5 6 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.0043520014733076e-003</threshold>
<left_val>0.2429233044385910</left_val>
<right_val>-0.1866979002952576</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 6 4 4 -1.</_>
<_>
12 8 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0115198297426105</threshold>
<left_val>-0.1176315024495125</left_val>
<right_val>0.3672345876693726</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 5 7 3 -1.</_>
<_>
13 6 7 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.9040733873844147e-003</threshold>
<left_val>-0.4893133044242859</left_val>
<right_val>0.1089702025055885</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 13 1 2 -1.</_>
<_>
10 14 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.3973670583218336e-004</threshold>
<left_val>-0.2185039967298508</left_val>
<right_val>0.1848998963832855</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 16 4 2 -1.</_>
<_>
18 16 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.3727260520681739e-003</threshold>
<left_val>-0.1507291048765183</left_val>
<right_val>0.2917312979698181</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 12 4 7 -1.</_>
<_>
18 12 2 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0108073903247714</threshold>
<left_val>0.4289745092391968</left_val>
<right_val>-0.1028013974428177</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 17 1 3 -1.</_>
<_>
16 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.2670770520344377e-003</threshold>
<left_val>0.0741921588778496</left_val>
<right_val>-0.6420825123786926</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 9 1 3 -1.</_>
<_>
19 10 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.2991129662841558e-003</threshold>
<left_val>0.0471002794802189</left_val>
<right_val>-0.7233523130416870</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 7 2 6 -1.</_>
<_>
19 7 1 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.7187510859221220e-003</threshold>
<left_val>-0.1708686947822571</left_val>
<right_val>0.2351350933313370</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 1 3 4 -1.</_>
<_>
9 1 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.6619180142879486e-003</threshold>
<left_val>-0.7897542715072632</left_val>
<right_val>0.0450846701860428</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 0 6 9 -1.</_>
<_>
16 0 2 9 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0482666492462158</threshold>
<left_val>-0.6957991719245911</left_val>
<right_val>0.0419760793447495</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 2 10 2 -1.</_>
<_>
9 2 5 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0152146900072694</threshold>
<left_val>-0.1081828027963638</left_val>
<right_val>0.3646062016487122</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 12 8 4 -1.</_>
<_>
2 12 4 2 2.</_>
<_>
6 14 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.0080131515860558e-003</threshold>
<left_val>0.3097099065780640</left_val>
<right_val>-0.1135921031236649</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 4 7 3 -1.</_>
<_>
0 5 7 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.6127157770097256e-003</threshold>
<left_val>0.0806653425097466</left_val>
<right_val>-0.4665853083133698</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 14 3 3 -1.</_>
<_>
15 14 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.9607013612985611e-003</threshold>
<left_val>-0.8720194101333618</left_val>
<right_val>0.0367745906114578</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 3 4 3 -1.</_>
<_>
2 3 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.8847199175506830e-003</threshold>
<left_val>-0.1166628971695900</left_val>
<right_val>0.3307026922702789</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 0 2 7 -1.</_>
<_>
2 0 1 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.0988810099661350e-003</threshold>
<left_val>0.2387257069349289</left_val>
<right_val>-0.1765675991773605</right_val></_></_></trees>
<stage_threshold>-1.1729990243911743</stage_threshold>
<parent>11</parent>
<next>-1</next></_>
<_>
<!-- stage 13 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 16 4 4 -1.</_>
<_>
15 18 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.5903379321098328e-003</threshold>
<left_val>-0.2368807941675186</left_val>
<right_val>0.2463164031505585</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 8 12 4 -1.</_>
<_>
5 10 12 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.4815930090844631e-003</threshold>
<left_val>-0.3137362003326416</left_val>
<right_val>0.1867575943470001</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 17 1 2 -1.</_>
<_>
3 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.3048402555286884e-005</threshold>
<left_val>-0.2764435112476349</left_val>
<right_val>0.1649623960256577</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 1 3 4 -1.</_>
<_>
7 1 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.8514640182256699e-003</threshold>
<left_val>-0.5601450800895691</left_val>
<right_val>0.1129473969340324</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 2 3 4 -1.</_>
<_>
7 2 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.8588210009038448e-003</threshold>
<left_val>0.0398489981889725</left_val>
<right_val>-0.5807185769081116</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 8 9 12 -1.</_>
<_>
9 8 3 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0246512200683355</threshold>
<left_val>0.1675501018762589</left_val>
<right_val>-0.2534367144107819</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 1 8 6 -1.</_>
<_>
8 3 8 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0472455210983753</threshold>
<left_val>-0.1066208034753799</left_val>
<right_val>0.3945198059082031</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 2 6 3 -1.</_>
<_>
17 2 3 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.5964651294052601e-003</threshold>
<left_val>-0.1774425059556961</left_val>
<right_val>0.2728019058704376</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 6 1 3 -1.</_>
<_>
0 7 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.3177490327507257e-003</threshold>
<left_val>-0.5427265167236328</left_val>
<right_val>0.0486065894365311</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 0 10 2 -1.</_>
<_>
15 0 5 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.0261709839105606e-003</threshold>
<left_val>0.2439424991607666</left_val>
<right_val>-0.1314364969730377</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 0 3 2 -1.</_>
<_>
12 0 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.4632768947631121e-003</threshold>
<left_val>0.0690493434667587</left_val>
<right_val>-0.7033624053001404</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 19 10 1 -1.</_>
<_>
8 19 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.1692588925361633e-003</threshold>
<left_val>-0.1328946053981781</left_val>
<right_val>0.2209852933883667</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 4 7 16 -1.</_>
<_>
0 12 7 8 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0293958708643913</threshold>
<left_val>-0.2853052020072937</left_val>
<right_val>0.1354399025440216</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 16 1 3 -1.</_>
<_>
2 17 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.6181448316201568e-004</threshold>
<left_val>-0.5804138183593750</left_val>
<right_val>0.0374506488442421</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 8 12 6 -1.</_>
<_>
11 8 4 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1082099974155426</threshold>
<left_val>0.3946728110313416</left_val>
<right_val>-0.0786559432744980</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 9 6 7 -1.</_>
<_>
16 9 2 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0180248692631722</threshold>
<left_val>0.2735562920570374</left_val>
<right_val>-0.1341529935598373</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 17 6 1 -1.</_>
<_>
14 17 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.2509840354323387e-003</threshold>
<left_val>0.0233880598098040</left_val>
<right_val>-0.8008859157562256</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 1 3 1 -1.</_>
<_>
17 1 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.6088379779830575e-003</threshold>
<left_val>-0.5676252245903015</left_val>
<right_val>0.0412156693637371</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 17 8 2 -1.</_>
<_>
0 17 4 1 2.</_>
<_>
4 18 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.7564752427861094e-004</threshold>
<left_val>-0.1489126980304718</left_val>
<right_val>0.1908618062734604</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 0 2 1 -1.</_>
<_>
18 0 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.7122338300105184e-005</threshold>
<left_val>-0.1555753052234650</left_val>
<right_val>0.1942822039127350</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 15 6 5 -1.</_>
<_>
6 15 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0207553207874298</threshold>
<left_val>-0.6300653219223023</left_val>
<right_val>0.0361343808472157</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 2 8 2 -1.</_>
<_>
7 3 8 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.2931738793849945e-003</threshold>
<left_val>0.2560924887657166</left_val>
<right_val>-0.1058826968073845</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 1 8 4 -1.</_>
<_>
4 3 8 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0108441496267915</threshold>
<left_val>-0.1012485027313232</left_val>
<right_val>0.3032212853431702</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 19 2 1 -1.</_>
<_>
6 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.3752777350600809e-005</threshold>
<left_val>0.1911157965660095</left_val>
<right_val>-0.1384923011064529</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 19 2 1 -1.</_>
<_>
6 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.6480963141657412e-005</threshold>
<left_val>-0.1520525068044663</left_val>
<right_val>0.2170630991458893</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 17 1 3 -1.</_>
<_>
16 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.3560829684138298e-003</threshold>
<left_val>0.0494317896664143</left_val>
<right_val>-0.6427984237670898</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 11 2 3 -1.</_>
<_>
1 11 1 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.0662558795884252e-004</threshold>
<left_val>0.1798201054334641</left_val>
<right_val>-0.1404460966587067</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 19 4 1 -1.</_>
<_>
2 19 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.0473709553480148e-003</threshold>
<left_val>-0.1093354970216751</left_val>
<right_val>0.2426594048738480</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 18 4 2 -1.</_>
<_>
2 18 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.0243969736620784e-003</threshold>
<left_val>0.2716268002986908</left_val>
<right_val>-0.1182091981172562</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 17 1 3 -1.</_>
<_>
2 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.2024149764329195e-003</threshold>
<left_val>-0.7015110254287720</left_val>
<right_val>0.0394898988306522</right_val></_></_>
<_>
<!-- tree 30 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 7 11 2 -1.</_>
<_>
5 8 11 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.6911649666726589e-003</threshold>
<left_val>-0.0922189131379128</left_val>
<right_val>0.3104628920555115</right_val></_></_>
<_>
<!-- tree 31 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 2 4 10 -1.</_>
<_>
9 7 4 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1396654993295670</threshold>
<left_val>0.6897938847541809</left_val>
<right_val>-0.0397061184048653</right_val></_></_>
<_>
<!-- tree 32 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 2 4 3 -1.</_>
<_>
0 3 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.1276050247251987e-003</threshold>
<left_val>0.0972776114940643</left_val>
<right_val>-0.2884179949760437</right_val></_></_>
<_>
<!-- tree 33 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 19 10 1 -1.</_>
<_>
15 19 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.7594310231506824e-003</threshold>
<left_val>0.2416867017745972</left_val>
<right_val>-0.1127782016992569</right_val></_></_>
<_>
<!-- tree 34 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 17 8 3 -1.</_>
<_>
15 17 4 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.2236132323741913e-003</threshold>
<left_val>-0.1143027991056442</left_val>
<right_val>0.2425678074359894</right_val></_></_>
<_>
<!-- tree 35 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 19 3 1 -1.</_>
<_>
9 19 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.2590440455824137e-003</threshold>
<left_val>-0.5967938899993897</left_val>
<right_val>0.0476639606058598</right_val></_></_>
<_>
<!-- tree 36 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 0 3 4 -1.</_>
<_>
15 0 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.7192099262028933e-003</threshold>
<left_val>-0.4641413092613220</left_val>
<right_val>0.0528476908802986</right_val></_></_>
<_>
<!-- tree 37 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 6 4 3 -1.</_>
<_>
10 7 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.9696151874959469e-003</threshold>
<left_val>-0.0732442885637283</left_val>
<right_val>0.3874309062957764</right_val></_></_>
<_>
<!-- tree 38 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 8 3 2 -1.</_>
<_>
0 9 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.1776720210909843e-003</threshold>
<left_val>-0.7419322729110718</left_val>
<right_val>0.0404967106878757</right_val></_></_>
<_>
<!-- tree 39 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 12 3 6 -1.</_>
<_>
7 14 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.0035100430250168e-003</threshold>
<left_val>-0.1388880014419556</left_val>
<right_val>0.1876762062311173</right_val></_></_>
<_>
<!-- tree 40 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 18 1 2 -1.</_>
<_>
1 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.2013457752764225e-004</threshold>
<left_val>-0.5494061708450317</left_val>
<right_val>0.0494178496301174</right_val></_></_>
<_>
<!-- tree 41 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 12 4 4 -1.</_>
<_>
2 12 2 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.3168768063187599e-003</threshold>
<left_val>-0.0824829787015915</left_val>
<right_val>0.3174056112766266</right_val></_></_>
<_>
<!-- tree 42 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 8 6 7 -1.</_>
<_>
3 8 2 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0147745897993445</threshold>
<left_val>0.2081609964370728</left_val>
<right_val>-0.1211555972695351</right_val></_></_>
<_>
<!-- tree 43 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 8 4 5 -1.</_>
<_>
2 8 2 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0414164513349533</threshold>
<left_val>-0.8243780732154846</left_val>
<right_val>0.0333291888237000</right_val></_></_></trees>
<stage_threshold>-1.0368299484252930</stage_threshold>
<parent>12</parent>
<next>-1</next></_>
<_>
<!-- stage 14 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 16 1 3 -1.</_>
<_>
19 17 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.0962520334869623e-004</threshold>
<left_val>0.0845799669623375</left_val>
<right_val>-0.5611841082572937</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 5 18 6 -1.</_>
<_>
7 5 6 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0561397895216942</threshold>
<left_val>0.1534174978733063</left_val>
<right_val>-0.2696731984615326</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 15 4 2 -1.</_>
<_>
2 16 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.0292009683325887e-003</threshold>
<left_val>-0.2048998028039932</left_val>
<right_val>0.2015317976474762</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 6 2 11 -1.</_>
<_>
19 6 1 11 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.8783010784536600e-003</threshold>
<left_val>-0.1735114008188248</left_val>
<right_val>0.2129794955253601</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 12 2 6 -1.</_>
<_>
0 14 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.4144392274320126e-003</threshold>
<left_val>-0.5962486863136292</left_val>
<right_val>0.0470779500901699</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 5 3 2 -1.</_>
<_>
12 6 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.4831849839538336e-003</threshold>
<left_val>0.1902461051940918</left_val>
<right_val>-0.1598639041185379</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 3 2 3 -1.</_>
<_>
1 4 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.5968941412866116e-003</threshold>
<left_val>0.0314471311867237</left_val>
<right_val>-0.6869434118270874</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 14 4 4 -1.</_>
<_>
16 16 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.4255330208688974e-003</threshold>
<left_val>-0.2360935956239700</left_val>
<right_val>0.1103610992431641</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 8 12 5 -1.</_>
<_>
10 8 4 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0849505662918091</threshold>
<left_val>0.2310716062784195</left_val>
<right_val>-0.1377653032541275</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 7 2 7 -1.</_>
<_>
14 7 1 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.0145681016147137e-003</threshold>
<left_val>0.3867610991001129</left_val>
<right_val>-0.0562173798680305</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 8 2 6 -1.</_>
<_>
2 8 1 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.1482061129063368e-003</threshold>
<left_val>0.1819159984588623</left_val>
<right_val>-0.1761569976806641</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 0 3 7 -1.</_>
<_>
16 0 1 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0103967702016234</threshold>
<left_val>-0.7535138130187988</left_val>
<right_val>0.0240919701755047</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 2 6 2 -1.</_>
<_>
6 2 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0134667502716184</threshold>
<left_val>-0.7211886048316956</left_val>
<right_val>0.0349493697285652</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 9 20 9 -1.</_>
<_>
0 12 20 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0844354778528214</threshold>
<left_val>-0.3379263877868652</left_val>
<right_val>0.0711138173937798</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 14 2 2 -1.</_>
<_>
10 15 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.4771490134298801e-003</threshold>
<left_val>-0.1176510974764824</left_val>
<right_val>0.2254198938608170</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 5 10 4 -1.</_>
<_>
6 7 10 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0158280506730080</threshold>
<left_val>-0.0695362165570259</left_val>
<right_val>0.3139536976814270</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 1 5 9 -1.</_>
<_>
6 4 5 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0649169832468033</threshold>
<left_val>-0.0750435888767242</left_val>
<right_val>0.4067733883857727</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 18 2 2 -1.</_>
<_>
16 18 1 1 2.</_>
<_>
17 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.9652469675056636e-004</threshold>
<left_val>0.0739533603191376</left_val>
<right_val>-0.3454400897026062</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 14 2 4 -1.</_>
<_>
0 16 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.3129520229995251e-003</threshold>
<left_val>-0.1690943986177445</left_val>
<right_val>0.1525837033987045</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 8 2 5 -1.</_>
<_>
11 8 1 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.8032129891216755e-003</threshold>
<left_val>0.3526014983654022</left_val>
<right_val>-0.0834440663456917</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 7 12 7 -1.</_>
<_>
7 7 4 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1479167938232422</threshold>
<left_val>0.4300465881824493</left_val>
<right_val>-0.0573099292814732</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 6 6 -1.</_>
<_>
3 0 3 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0165841504931450</threshold>
<left_val>0.2343268990516663</left_val>
<right_val>-0.1090764030814171</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 0 4 4 -1.</_>
<_>
3 0 2 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.0183270573616028e-003</threshold>
<left_val>-0.1360093951225281</left_val>
<right_val>0.2640928924083710</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 6 8 -1.</_>
<_>
2 0 2 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0364719182252884</threshold>
<left_val>-0.6280974149703980</left_val>
<right_val>0.0435451082885265</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 2 1 -1.</_>
<_>
1 0 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.3119226726703346e-005</threshold>
<left_val>0.1647063046693802</left_val>
<right_val>-0.1646378040313721</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 3 3 -1.</_>
<_>
0 1 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.6719450727105141e-003</threshold>
<left_val>-0.4742136001586914</left_val>
<right_val>0.0485869199037552</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 4 2 4 -1.</_>
<_>
5 6 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.0151178836822510e-003</threshold>
<left_val>0.1822218000888825</left_val>
<right_val>-0.1409751027822495</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 10 9 1 -1.</_>
<_>
5 10 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0199480205774307</threshold>
<left_val>-0.0697876587510109</left_val>
<right_val>0.3670746088027954</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 17 1 3 -1.</_>
<_>
1 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.6699437340721488e-004</threshold>
<left_val>0.0557292997837067</left_val>
<right_val>-0.4458543062210083</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 17 2 3 -1.</_>
<_>
0 18 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.1806039838120341e-003</threshold>
<left_val>-0.4687662124633789</left_val>
<right_val>0.0489022210240364</right_val></_></_>
<_>
<!-- tree 30 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 15 16 3 -1.</_>
<_>
8 15 8 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0158473495393991</threshold>
<left_val>-0.1212020963430405</left_val>
<right_val>0.2056653052568436</right_val></_></_>
<_>
<!-- tree 31 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 5 4 1 -1.</_>
<_>
2 5 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.1985700111836195e-003</threshold>
<left_val>0.2026209980249405</left_val>
<right_val>-0.1282382011413574</right_val></_></_>
<_>
<!-- tree 32 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 0 6 20 -1.</_>
<_>
3 0 2 20 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1096495985984802</threshold>
<left_val>-0.8661919236183167</left_val>
<right_val>0.0303518492728472</right_val></_></_>
<_>
<!-- tree 33 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 5 4 6 -1.</_>
<_>
2 5 2 3 2.</_>
<_>
4 8 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.2532606795430183e-003</threshold>
<left_val>0.2934311926364899</left_val>
<right_val>-0.0853619500994682</right_val></_></_>
<_>
<!-- tree 34 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 16 6 3 -1.</_>
<_>
11 16 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0146865304559469</threshold>
<left_val>0.0327986218035221</left_val>
<right_val>-0.7755656242370606</right_val></_></_>
<_>
<!-- tree 35 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 17 6 1 -1.</_>
<_>
14 17 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.3514430029317737e-003</threshold>
<left_val>0.2442699968814850</left_val>
<right_val>-0.1150325015187264</right_val></_></_>
<_>
<!-- tree 36 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 17 15 2 -1.</_>
<_>
8 17 5 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.3728090822696686e-003</threshold>
<left_val>0.2168767005205154</left_val>
<right_val>-0.1398448050022125</right_val></_></_>
<_>
<!-- tree 37 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 0 2 3 -1.</_>
<_>
18 1 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.4263390116393566e-003</threshold>
<left_val>0.0456142202019691</left_val>
<right_val>-0.5456771254539490</right_val></_></_>
<_>
<!-- tree 38 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 1 7 4 -1.</_>
<_>
13 3 7 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.8404068909585476e-003</threshold>
<left_val>0.1494950056076050</left_val>
<right_val>-0.1506250947713852</right_val></_></_>
<_>
<!-- tree 39 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 6 4 4 -1.</_>
<_>
13 6 2 2 2.</_>
<_>
15 8 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.7988980766385794e-003</threshold>
<left_val>-0.0873016268014908</left_val>
<right_val>0.2548153102397919</right_val></_></_>
<_>
<!-- tree 40 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 6 3 4 -1.</_>
<_>
17 8 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.0094281062483788e-003</threshold>
<left_val>0.1725907027721405</left_val>
<right_val>-0.1428847014904022</right_val></_></_>
<_>
<!-- tree 41 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 9 2 2 -1.</_>
<_>
15 9 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.4370709434151649e-003</threshold>
<left_val>0.2684809863567352</left_val>
<right_val>-0.0818982198834419</right_val></_></_>
<_>
<!-- tree 42 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 17 1 3 -1.</_>
<_>
17 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.0485399980098009e-003</threshold>
<left_val>0.0461132600903511</left_val>
<right_val>-0.4724327921867371</right_val></_></_>
<_>
<!-- tree 43 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 19 8 1 -1.</_>
<_>
7 19 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.7460780218243599e-003</threshold>
<left_val>-0.1103043034672737</left_val>
<right_val>0.2037972956895828</right_val></_></_>
<_>
<!-- tree 44 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 9 3 6 -1.</_>
<_>
0 12 3 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.8608627878129482e-003</threshold>
<left_val>-0.1561965942382813</left_val>
<right_val>0.1592743992805481</right_val></_></_>
<_>
<!-- tree 45 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 7 15 5 -1.</_>
<_>
9 7 5 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0277249794453382</threshold>
<left_val>0.1134911999106407</left_val>
<right_val>-0.2188514024019241</right_val></_></_>
<_>
<!-- tree 46 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 9 9 5 -1.</_>
<_>
9 9 3 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0470806397497654</threshold>
<left_val>-0.0416887290775776</left_val>
<right_val>0.5363004803657532</right_val></_></_>
<_>
<!-- tree 47 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 1 6 2 -1.</_>
<_>
10 1 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.9283770173788071e-003</threshold>
<left_val>-0.5359513163566589</left_val>
<right_val>0.0442375093698502</right_val></_></_>
<_>
<!-- tree 48 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 0 12 2 -1.</_>
<_>
10 0 6 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0128805404528975</threshold>
<left_val>0.2323794960975647</left_val>
<right_val>-0.1024625003337860</right_val></_></_>
<_>
<!-- tree 49 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 0 10 3 -1.</_>
<_>
12 0 5 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0236047692596912</threshold>
<left_val>-0.0882914364337921</left_val>
<right_val>0.3056105971336365</right_val></_></_>
<_>
<!-- tree 50 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 0 9 6 -1.</_>
<_>
5 2 9 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0159022007137537</threshold>
<left_val>-0.1223810985684395</left_val>
<right_val>0.1784912049770355</right_val></_></_>
<_>
<!-- tree 51 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 3 6 4 -1.</_>
<_>
8 5 6 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.9939495772123337e-003</threshold>
<left_val>-0.0837290063500404</left_val>
<right_val>0.3231959044933319</right_val></_></_>
<_>
<!-- tree 52 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 4 2 3 -1.</_>
<_>
17 5 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.7100867852568626e-003</threshold>
<left_val>0.0384792089462280</left_val>
<right_val>-0.6813815236091614</right_val></_></_></trees>
<stage_threshold>-1.0492420196533203</stage_threshold>
<parent>13</parent>
<next>-1</next></_>
<_>
<!-- stage 15 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 2 4 3 -1.</_>
<_>
5 3 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.2480720654129982e-003</threshold>
<left_val>-0.1641687005758286</left_val>
<right_val>0.4164853096008301</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 9 2 6 -1.</_>
<_>
6 9 1 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.5813550241291523e-003</threshold>
<left_val>-0.1246595978736877</left_val>
<right_val>0.4038512110710144</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 10 2 6 -1.</_>
<_>
15 10 1 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.6073239967226982e-003</threshold>
<left_val>0.2608245909214020</left_val>
<right_val>-0.2028252035379410</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 4 3 3 -1.</_>
<_>
7 5 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.5205370038747787e-003</threshold>
<left_val>-0.1055722981691361</left_val>
<right_val>0.3666911125183106</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 4 8 2 -1.</_>
<_>
12 4 4 1 2.</_>
<_>
16 5 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.4119189474731684e-003</threshold>
<left_val>-0.1387760043144226</left_val>
<right_val>0.2995991110801697</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 8 1 6 -1.</_>
<_>
15 10 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.7156179100275040e-003</threshold>
<left_val>-0.0776834636926651</left_val>
<right_val>0.4848192036151886</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 17 11 3 -1.</_>
<_>
4 18 11 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.1093840952962637e-003</threshold>
<left_val>-0.1122900024056435</left_val>
<right_val>0.2921550869941711</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 0 16 20 -1.</_>
<_>
3 10 16 10 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0868366286158562</threshold>
<left_val>-0.3677960038185120</left_val>
<right_val>0.0725972428917885</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 4 4 6 -1.</_>
<_>
12 6 4 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.2652182057499886e-003</threshold>
<left_val>-0.1089029014110565</left_val>
<right_val>0.3179126083850861</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 0 6 6 -1.</_>
<_>
13 0 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0199135299772024</threshold>
<left_val>-0.5337343811988831</left_val>
<right_val>0.0705857127904892</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 1 6 4 -1.</_>
<_>
13 1 3 2 2.</_>
<_>
16 3 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.8297839928418398e-003</threshold>
<left_val>-0.1357591003179550</left_val>
<right_val>0.2278887927532196</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 0 6 4 -1.</_>
<_>
13 0 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0104318596422672</threshold>
<left_val>0.0887979120016098</left_val>
<right_val>-0.4795897006988525</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 6 6 9 -1.</_>
<_>
10 6 2 9 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0200404394418001</threshold>
<left_val>0.1574553996324539</left_val>
<right_val>-0.1777157038450241</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 0 3 4 -1.</_>
<_>
8 0 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.2967290394008160e-003</threshold>
<left_val>-0.6843491792678833</left_val>
<right_val>0.0356714613735676</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 17 14 2 -1.</_>
<_>
0 17 7 1 2.</_>
<_>
7 18 7 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.1624139044433832e-003</threshold>
<left_val>0.2831803858280182</left_val>
<right_val>-0.0985112786293030</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 18 2 2 -1.</_>
<_>
6 18 1 1 2.</_>
<_>
7 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.5464888787828386e-004</threshold>
<left_val>-0.3707734048366547</left_val>
<right_val>0.0809329524636269</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 17 1 3 -1.</_>
<_>
18 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.8152060511056334e-004</threshold>
<left_val>-0.3220703005790710</left_val>
<right_val>0.0775510594248772</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 18 2 2 -1.</_>
<_>
17 18 1 1 2.</_>
<_>
18 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.7563021285459399e-004</threshold>
<left_val>-0.3244127929210663</left_val>
<right_val>0.0879494771361351</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 7 1 9 -1.</_>
<_>
5 10 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.3823810778558254e-003</threshold>
<left_val>-0.0889247134327888</left_val>
<right_val>0.3172721862792969</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 3 6 4 -1.</_>
<_>
7 3 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0111509095877409</threshold>
<left_val>0.0710198432207108</left_val>
<right_val>-0.4049403965473175</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 9 6 2 -1.</_>
<_>
1 9 3 1 2.</_>
<_>
4 10 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.0593760525807738e-003</threshold>
<left_val>0.2605066895484924</left_val>
<right_val>-0.1176564022898674</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 9 2 3 -1.</_>
<_>
7 9 1 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.3906480055302382e-003</threshold>
<left_val>-0.0843886211514473</left_val>
<right_val>0.3123055100440979</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 8 6 12 -1.</_>
<_>
8 8 2 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0110007496550679</threshold>
<left_val>0.1915224939584732</left_val>
<right_val>-0.1521002054214478</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 18 2 2 -1.</_>
<_>
4 18 1 1 2.</_>
<_>
5 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.4643228971399367e-004</threshold>
<left_val>-0.3176515996456146</left_val>
<right_val>0.0865822583436966</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 1 6 6 -1.</_>
<_>
9 3 6 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0230532698333263</threshold>
<left_val>-0.1008976027369499</left_val>
<right_val>0.2576929032802582</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 17 6 2 -1.</_>
<_>
6 18 6 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.2135660983622074e-003</threshold>
<left_val>0.4568921029567719</left_val>
<right_val>-0.0524047911167145</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 18 16 2 -1.</_>
<_>
3 19 16 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.7139709396287799e-004</threshold>
<left_val>-0.3551838099956513</left_val>
<right_val>0.0800943821668625</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 0 3 11 -1.</_>
<_>
4 0 1 11 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.5676229959353805e-003</threshold>
<left_val>0.1009142026305199</left_val>
<right_val>-0.2160304039716721</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 18 3 1 -1.</_>
<_>
14 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.5460801599547267e-004</threshold>
<left_val>0.0578961782157421</left_val>
<right_val>-0.4046111106872559</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 0 9 6 -1.</_>
<_>
6 2 9 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0206989701837301</threshold>
<left_val>0.3154363036155701</left_val>
<right_val>-0.0807130485773087</right_val></_></_>
<_>
<!-- tree 30 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 2 12 4 -1.</_>
<_>
1 2 6 2 2.</_>
<_>
7 4 6 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0206199400126934</threshold>
<left_val>0.2718166112899780</left_val>
<right_val>-0.0763586163520813</right_val></_></_>
<_>
<!-- tree 31 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 3 6 4 -1.</_>
<_>
5 3 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0216111298650503</threshold>
<left_val>0.0394934490323067</left_val>
<right_val>-0.5942965149879456</right_val></_></_>
<_>
<!-- tree 32 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 0 8 1 -1.</_>
<_>
16 0 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.5676742233335972e-003</threshold>
<left_val>-0.0983536690473557</left_val>
<right_val>0.2364927977323532</right_val></_></_>
<_>
<!-- tree 33 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 0 6 2 -1.</_>
<_>
11 0 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.8434796780347824e-003</threshold>
<left_val>-0.5252342820167542</left_val>
<right_val>0.0430999211966991</right_val></_></_>
<_>
<!-- tree 34 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 3 12 1 -1.</_>
<_>
9 3 6 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.4260741025209427e-003</threshold>
<left_val>0.2466513067483902</left_val>
<right_val>-0.0941307172179222</right_val></_></_>
<_>
<!-- tree 35 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 7 6 2 -1.</_>
<_>
2 7 3 1 2.</_>
<_>
5 8 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.9830230157822371e-003</threshold>
<left_val>0.2674370110034943</left_val>
<right_val>-0.0900693163275719</right_val></_></_>
<_>
<!-- tree 36 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 8 4 6 -1.</_>
<_>
0 10 4 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.7358399927616119e-003</threshold>
<left_val>0.1594001948833466</left_val>
<right_val>-0.1578941047191620</right_val></_></_>
<_>
<!-- tree 37 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 6 3 7 -1.</_>
<_>
10 6 1 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0135138696059585</threshold>
<left_val>0.4079233109951019</left_val>
<right_val>-0.0642231181263924</right_val></_></_>
<_>
<!-- tree 38 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 6 6 13 -1.</_>
<_>
11 6 2 13 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0193940103054047</threshold>
<left_val>0.1801564991474152</left_val>
<right_val>-0.1373140066862106</right_val></_></_>
<_>
<!-- tree 39 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 12 6 1 -1.</_>
<_>
13 12 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.2684770412743092e-003</threshold>
<left_val>0.2908039093017578</left_val>
<right_val>-0.0801619067788124</right_val></_></_>
<_>
<!-- tree 40 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 9 2 6 -1.</_>
<_>
18 12 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.1773589327931404e-004</threshold>
<left_val>-0.2141298055648804</left_val>
<right_val>0.1127343997359276</right_val></_></_>
<_>
<!-- tree 41 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 2 3 9 -1.</_>
<_>
18 2 1 9 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.6351119205355644e-003</threshold>
<left_val>-0.4536595940589905</left_val>
<right_val>0.0546250604093075</right_val></_></_>
<_>
<!-- tree 42 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 8 4 6 -1.</_>
<_>
13 8 2 3 2.</_>
<_>
15 11 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.3652976900339127e-003</threshold>
<left_val>0.2647292017936707</left_val>
<right_val>-0.0943341106176376</right_val></_></_>
<_>
<!-- tree 43 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 2 12 6 -1.</_>
<_>
10 2 6 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0277684498578310</threshold>
<left_val>-0.1013671010732651</left_val>
<right_val>0.2074397951364517</right_val></_></_>
<_>
<!-- tree 44 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 14 16 6 -1.</_>
<_>
12 14 8 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0548912286758423</threshold>
<left_val>0.2884030938148499</left_val>
<right_val>-0.0753120407462120</right_val></_></_>
<_>
<!-- tree 45 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 19 10 1 -1.</_>
<_>
11 19 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.5793339591473341e-003</threshold>
<left_val>-0.1108852997422218</left_val>
<right_val>0.2172496020793915</right_val></_></_>
<_>
<!-- tree 46 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 17 1 3 -1.</_>
<_>
6 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.6196516854688525e-005</threshold>
<left_val>-0.1887210011482239</left_val>
<right_val>0.1444068998098373</right_val></_></_>
<_>
<!-- tree 47 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 14 10 3 -1.</_>
<_>
4 15 10 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.0907251425087452e-003</threshold>
<left_val>-0.0776012316346169</left_val>
<right_val>0.2939837872982025</right_val></_></_>
<_>
<!-- tree 48 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 0 12 12 -1.</_>
<_>
6 4 12 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1044425964355469</threshold>
<left_val>0.2013310939073563</left_val>
<right_val>-0.1090397015213966</right_val></_></_>
<_>
<!-- tree 49 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 7 4 2 -1.</_>
<_>
5 7 2 1 2.</_>
<_>
7 8 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.7273090826347470e-004</threshold>
<left_val>0.1794590055942535</left_val>
<right_val>-0.1202367022633553</right_val></_></_>
<_>
<!-- tree 50 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 5 3 2 -1.</_>
<_>
18 5 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.2412849832326174e-003</threshold>
<left_val>0.0406881310045719</left_val>
<right_val>-0.5460057258605957</right_val></_></_></trees>
<stage_threshold>-1.1122100353240967</stage_threshold>
<parent>14</parent>
<next>-1</next></_>
<_>
<!-- stage 16 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 13 6 3 -1.</_>
<_>
8 14 6 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.2965320646762848e-003</threshold>
<left_val>-0.1215452998876572</left_val>
<right_val>0.6442037224769592</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 13 5 3 -1.</_>
<_>
8 14 5 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.5326260365545750e-003</threshold>
<left_val>0.5123322010040283</left_val>
<right_val>-0.1110825985670090</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 2 1 18 -1.</_>
<_>
13 11 1 9 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.9183230362832546e-003</threshold>
<left_val>-0.5061542987823486</left_val>
<right_val>0.1150197982788086</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 10 9 2 -1.</_>
<_>
9 10 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0236923396587372</threshold>
<left_val>0.3716728091239929</left_val>
<right_val>-0.1467268019914627</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 0 7 4 -1.</_>
<_>
11 2 7 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0201774705201387</threshold>
<left_val>-0.1738884001970291</left_val>
<right_val>0.4775949120521545</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 0 6 8 -1.</_>
<_>
3 0 2 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0217232108116150</threshold>
<left_val>-0.4388009011745453</left_val>
<right_val>0.1357689946889877</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 15 3 3 -1.</_>
<_>
9 16 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.8369780629873276e-003</threshold>
<left_val>-0.1251206994056702</left_val>
<right_val>0.4678902924060822</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 17 9 3 -1.</_>
<_>
9 18 9 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.7148420922458172e-003</threshold>
<left_val>-0.0880188569426537</left_val>
<right_val>0.3686651885509491</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 12 3 3 -1.</_>
<_>
12 13 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.2625689636915922e-003</threshold>
<left_val>-0.0853353068232536</left_val>
<right_val>0.5164473056793213</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 1 3 5 -1.</_>
<_>
5 1 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.5618850961327553e-003</threshold>
<left_val>-0.4450393021106720</left_val>
<right_val>0.0917381718754768</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 14 2 3 -1.</_>
<_>
10 15 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.9227749435231090e-003</threshold>
<left_val>-0.1107731014490128</left_val>
<right_val>0.3941699862480164</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 17 2 2 -1.</_>
<_>
18 17 1 1 2.</_>
<_>
19 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.5111969918943942e-004</threshold>
<left_val>-0.3777570128440857</left_val>
<right_val>0.1216617003083229</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 18 2 2 -1.</_>
<_>
18 18 1 1 2.</_>
<_>
19 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.9121779769193381e-004</threshold>
<left_val>0.0748160183429718</left_val>
<right_val>-0.4076710045337677</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 18 2 2 -1.</_>
<_>
18 18 1 1 2.</_>
<_>
19 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.6525629800744355e-004</threshold>
<left_val>-0.3315171897411346</left_val>
<right_val>0.1129112020134926</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 10 9 1 -1.</_>
<_>
7 10 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0200867000967264</threshold>
<left_val>-0.0615981183946133</left_val>
<right_val>0.5612881779670715</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 9 6 5 -1.</_>
<_>
5 9 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0367832481861115</threshold>
<left_val>-0.0602513886988163</left_val>
<right_val>0.5219249129295349</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 8 1 12 -1.</_>
<_>
18 14 1 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.3941619545221329e-003</threshold>
<left_val>-0.3550305068492889</left_val>
<right_val>0.1086302027106285</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 2 8 6 -1.</_>
<_>
0 2 4 3 2.</_>
<_>
4 5 4 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0151816699653864</threshold>
<left_val>0.2273965030908585</left_val>
<right_val>-0.1625299006700516</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 4 3 3 -1.</_>
<_>
9 5 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.6796840615570545e-003</threshold>
<left_val>-0.0575350411236286</left_val>
<right_val>0.4812423884868622</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 18 2 2 -1.</_>
<_>
3 18 1 1 2.</_>
<_>
4 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.7988319450523704e-004</threshold>
<left_val>-0.3058767020702362</left_val>
<right_val>0.1086815968155861</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 4 4 3 -1.</_>
<_>
6 5 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.5850999411195517e-003</threshold>
<left_val>0.3859694004058838</left_val>
<right_val>-0.0921940729022026</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 7 4 2 -1.</_>
<_>
16 7 2 1 2.</_>
<_>
18 8 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.0793360415846109e-003</threshold>
<left_val>-0.1119038984179497</left_val>
<right_val>0.3112520873546600</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 17 1 3 -1.</_>
<_>
5 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.3285802500322461e-005</threshold>
<left_val>-0.2023991048336029</left_val>
<right_val>0.1558668017387390</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 0 15 20 -1.</_>
<_>
2 10 15 10 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.1367873996496201</threshold>
<left_val>-0.2167285978794098</left_val>
<right_val>0.1442039012908936</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 11 6 4 -1.</_>
<_>
8 11 3 2 2.</_>
<_>
11 13 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0117292599752545</threshold>
<left_val>0.4350377023220062</left_val>
<right_val>-0.0748865306377411</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 16 4 3 -1.</_>
<_>
8 17 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.9230841211974621e-003</threshold>
<left_val>-0.0502893291413784</left_val>
<right_val>0.5883116126060486</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 18 2 2 -1.</_>
<_>
8 18 1 1 2.</_>
<_>
9 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.9819121118634939e-004</threshold>
<left_val>-0.3823240101337433</left_val>
<right_val>0.0924511328339577</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 16 13 3 -1.</_>
<_>
2 17 13 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.7992770560085773e-003</threshold>
<left_val>0.4848878979682922</left_val>
<right_val>-0.0731365233659744</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 16 2 2 -1.</_>
<_>
16 16 1 1 2.</_>
<_>
17 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.0155890271998942e-004</threshold>
<left_val>-0.3575735986232758</left_val>
<right_val>0.1058188006281853</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 1 6 3 -1.</_>
<_>
10 1 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0103907696902752</threshold>
<left_val>0.0529204681515694</left_val>
<right_val>-0.5724965929985046</right_val></_></_>
<_>
<!-- tree 30 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 7 2 2 -1.</_>
<_>
16 7 1 1 2.</_>
<_>
17 8 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.4488041941076517e-004</threshold>
<left_val>0.4496682882308960</left_val>
<right_val>-0.0830755233764648</right_val></_></_>
<_>
<!-- tree 31 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 7 4 2 -1.</_>
<_>
14 7 2 1 2.</_>
<_>
16 8 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.2651870492845774e-003</threshold>
<left_val>-0.0966954380273819</left_val>
<right_val>0.3130227029323578</right_val></_></_>
<_>
<!-- tree 32 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 0 14 1 -1.</_>
<_>
11 0 7 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0170945394784212</threshold>
<left_val>-0.0812489762902260</left_val>
<right_val>0.3611383140087128</right_val></_></_>
<_>
<!-- tree 33 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 4 8 2 -1.</_>
<_>
10 4 4 1 2.</_>
<_>
14 5 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.5973359588533640e-003</threshold>
<left_val>-0.1133835017681122</left_val>
<right_val>0.2223394960165024</right_val></_></_>
<_>
<!-- tree 34 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 2 3 2 -1.</_>
<_>
9 2 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.4527440071105957e-003</threshold>
<left_val>0.0697504431009293</left_val>
<right_val>-0.3672071099281311</right_val></_></_>
<_>
<!-- tree 35 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 11 6 3 -1.</_>
<_>
12 12 6 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.7638658434152603e-003</threshold>
<left_val>-0.0657889619469643</left_val>
<right_val>0.3832854032516480</right_val></_></_>
<_>
<!-- tree 36 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 5 1 4 -1.</_>
<_>
1 7 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.2501081265509129e-003</threshold>
<left_val>-0.7075446844100952</left_val>
<right_val>0.0383501984179020</right_val></_></_>
<_>
<!-- tree 37 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 1 1 18 -1.</_>
<_>
1 7 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.1765329185873270e-003</threshold>
<left_val>0.1375540047883987</left_val>
<right_val>-0.2324002981185913</right_val></_></_>
<_>
<!-- tree 38 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 13 3 2 -1.</_>
<_>
11 14 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.2191169448196888e-003</threshold>
<left_val>-0.1293545067310333</left_val>
<right_val>0.2273788005113602</right_val></_></_>
<_>
<!-- tree 39 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 1 12 2 -1.</_>
<_>
0 1 6 1 2.</_>
<_>
6 2 6 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.6365579366683960e-003</threshold>
<left_val>0.3806715011596680</left_val>
<right_val>-0.0672468394041061</right_val></_></_>
<_>
<!-- tree 40 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 18 2 2 -1.</_>
<_>
10 18 1 1 2.</_>
<_>
11 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.3844049428589642e-004</threshold>
<left_val>-0.3112238049507141</left_val>
<right_val>0.0838383585214615</right_val></_></_>
<_>
<!-- tree 41 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 5 4 4 -1.</_>
<_>
4 5 2 2 2.</_>
<_>
6 7 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.1017560288310051e-003</threshold>
<left_val>0.2606728076934815</left_val>
<right_val>-0.1044974029064179</right_val></_></_>
<_>
<!-- tree 42 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 7 1 3 -1.</_>
<_>
6 8 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.3336989795789123e-003</threshold>
<left_val>-0.0582501403987408</left_val>
<right_val>0.4768244028091431</right_val></_></_>
<_>
<!-- tree 43 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 10 6 2 -1.</_>
<_>
16 10 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.2090239906683564e-003</threshold>
<left_val>0.1483450978994370</left_val>
<right_val>-0.1732946932315826</right_val></_></_></trees>
<stage_threshold>-1.2529590129852295</stage_threshold>
<parent>15</parent>
<next>-1</next></_>
<_>
<!-- stage 17 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 8 3 6 -1.</_>
<_>
17 8 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.1760931015014648e-003</threshold>
<left_val>0.3333333134651184</left_val>
<right_val>-0.1664234995841980</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 10 6 2 -1.</_>
<_>
6 10 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0248580798506737</threshold>
<left_val>-0.0727288722991943</left_val>
<right_val>0.5667458176612854</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 5 3 7 -1.</_>
<_>
7 5 1 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.7597280032932758e-003</threshold>
<left_val>0.4625856876373291</left_val>
<right_val>-0.0931121781468391</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 13 6 6 -1.</_>
<_>
0 16 6 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.8239021822810173e-003</threshold>
<left_val>-0.2741461098194122</left_val>
<right_val>0.1324304938316345</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 5 1 9 -1.</_>
<_>
12 8 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0109488395974040</threshold>
<left_val>0.2234548032283783</left_val>
<right_val>-0.1496544927358627</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 9 3 3 -1.</_>
<_>
6 9 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.4349008928984404e-003</threshold>
<left_val>0.3872498869895935</left_val>
<right_val>-0.0661217272281647</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 5 6 13 -1.</_>
<_>
9 5 2 13 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0311562903225422</threshold>
<left_val>0.2407827973365784</left_val>
<right_val>-0.1140690967440605</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 8 1 10 -1.</_>
<_>
19 13 1 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.1100519914180040e-003</threshold>
<left_val>-0.2820797860622406</left_val>
<right_val>0.1327542960643768</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 18 6 1 -1.</_>
<_>
13 18 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.1762740109115839e-003</threshold>
<left_val>0.0345859304070473</left_val>
<right_val>-0.5137431025505066</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 7 6 12 -1.</_>
<_>
11 7 2 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0279774591326714</threshold>
<left_val>0.2392677962779999</left_val>
<right_val>-0.1325591951608658</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 7 6 6 -1.</_>
<_>
14 7 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0230979397892952</threshold>
<left_val>0.3901962041854858</left_val>
<right_val>-0.0784780085086823</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 8 3 4 -1.</_>
<_>
16 8 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.9731930010020733e-003</threshold>
<left_val>0.3069106936454773</left_val>
<right_val>-0.0706014037132263</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 11 4 2 -1.</_>
<_>
6 12 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.0335749033838511e-003</threshold>
<left_val>-0.1400219053030014</left_val>
<right_val>0.1913485974073410</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 6 6 8 -1.</_>
<_>
3 6 2 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0108443703502417</threshold>
<left_val>0.1654873043298721</left_val>
<right_val>-0.1565777957439423</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 15 6 5 -1.</_>
<_>
13 15 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0181505102664232</threshold>
<left_val>-0.6324359178543091</left_val>
<right_val>0.0395618192851543</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 17 4 2 -1.</_>
<_>
15 18 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.1052298881113529e-004</threshold>
<left_val>-0.1851557046175003</left_val>
<right_val>0.1340880990028381</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 11 6 1 -1.</_>
<_>
15 11 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0108933402225375</threshold>
<left_val>-0.0267302300781012</left_val>
<right_val>0.6097180247306824</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 18 2 2 -1.</_>
<_>
5 18 1 1 2.</_>
<_>
6 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.8780900174751878e-004</threshold>
<left_val>-0.3006514012813568</left_val>
<right_val>0.0731714591383934</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 8 4 4 -1.</_>
<_>
4 8 2 2 2.</_>
<_>
6 10 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.5855069290846586e-003</threshold>
<left_val>0.2621760964393616</left_val>
<right_val>-0.0797140970826149</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 7 9 3 -1.</_>
<_>
11 8 9 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0197592806071043</threshold>
<left_val>-0.5903922915458679</left_val>
<right_val>0.0406989715993404</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 3 10 4 -1.</_>
<_>
0 3 5 2 2.</_>
<_>
5 5 5 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0108452104032040</threshold>
<left_val>0.1636455953121185</left_val>
<right_val>-0.1258606016635895</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 18 6 1 -1.</_>
<_>
9 18 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.3183090165257454e-003</threshold>
<left_val>-0.5747488141059876</left_val>
<right_val>0.0376443117856979</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 8 3 3 -1.</_>
<_>
0 9 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.4913700288161635e-003</threshold>
<left_val>0.0609134696424007</left_val>
<right_val>-0.3022292852401733</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 6 8 -1.</_>
<_>
0 0 3 4 2.</_>
<_>
3 4 3 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0156756993383169</threshold>
<left_val>-0.0731459110975266</left_val>
<right_val>0.2937945127487183</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 6 3 8 -1.</_>
<_>
8 6 1 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0110335601493716</threshold>
<left_val>0.3931880891323090</left_val>
<right_val>-0.0470843203365803</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 7 7 3 -1.</_>
<_>
13 8 7 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.8555756956338882e-003</threshold>
<left_val>0.0376013815402985</left_val>
<right_val>-0.4910849034786224</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 3 2 2 -1.</_>
<_>
3 4 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.9665671112015843e-004</threshold>
<left_val>0.1795202046632767</left_val>
<right_val>-0.1108623966574669</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 3 3 3 -1.</_>
<_>
0 4 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.0592409893870354e-003</threshold>
<left_val>-0.4442946016788483</left_val>
<right_val>0.0510054305195808</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 3 5 2 -1.</_>
<_>
9 4 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.3201179727911949e-003</threshold>
<left_val>-0.0528410896658897</left_val>
<right_val>0.3719710111618042</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 5 9 4 -1.</_>
<_>
9 5 3 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0206828303635120</threshold>
<left_val>0.0576671697199345</left_val>
<right_val>-0.3690159916877747</right_val></_></_>
<_>
<!-- tree 30 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 10 12 3 -1.</_>
<_>
7 10 4 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0998226627707481</threshold>
<left_val>-0.0373770184814930</left_val>
<right_val>0.5816559195518494</right_val></_></_>
<_>
<!-- tree 31 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 7 3 6 -1.</_>
<_>
9 7 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.5854229032993317e-003</threshold>
<left_val>0.2850944101810455</left_val>
<right_val>-0.0609780699014664</right_val></_></_>
<_>
<!-- tree 32 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 5 6 5 -1.</_>
<_>
8 5 3 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0609003007411957</threshold>
<left_val>-0.5103176832199097</left_val>
<right_val>0.0377874001860619</right_val></_></_>
<_>
<!-- tree 33 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 5 2 3 -1.</_>
<_>
0 6 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.9991709161549807e-003</threshold>
<left_val>-0.4794301092624664</left_val>
<right_val>0.0388338901102543</right_val></_></_>
<_>
<!-- tree 34 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 7 3 4 -1.</_>
<_>
10 7 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.8906438797712326e-003</threshold>
<left_val>0.4060907959938049</left_val>
<right_val>-0.0478696487843990</right_val></_></_>
<_>
<!-- tree 35 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 0 6 15 -1.</_>
<_>
3 0 2 15 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0826889276504517</threshold>
<left_val>-0.7067118287086487</left_val>
<right_val>0.0274877492338419</right_val></_></_>
<_>
<!-- tree 36 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 1 3 5 -1.</_>
<_>
16 1 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.0060399807989597e-003</threshold>
<left_val>0.0282084401696920</left_val>
<right_val>-0.5290969014167786</right_val></_></_>
<_>
<!-- tree 37 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 2 3 10 -1.</_>
<_>
10 2 1 10 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.1695030890405178e-003</threshold>
<left_val>-0.0545548610389233</left_val>
<right_val>0.3283798098564148</right_val></_></_>
<_>
<!-- tree 38 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 8 6 12 -1.</_>
<_>
10 8 2 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.3914761152118444e-003</threshold>
<left_val>0.0921176671981812</left_val>
<right_val>-0.2163711041212082</right_val></_></_>
<_>
<!-- tree 39 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 4 3 4 -1.</_>
<_>
16 6 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.6131230406463146e-003</threshold>
<left_val>0.1365101933479309</left_val>
<right_val>-0.1378113031387329</right_val></_></_>
<_>
<!-- tree 40 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 7 2 2 -1.</_>
<_>
16 7 1 1 2.</_>
<_>
17 8 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.0490659456700087e-004</threshold>
<left_val>-0.0686371102929115</left_val>
<right_val>0.3358106911182404</right_val></_></_>
<_>
<!-- tree 41 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 0 6 9 -1.</_>
<_>
13 3 6 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0381065085530281</threshold>
<left_val>0.2944543063640595</left_val>
<right_val>-0.0682392269372940</right_val></_></_>
<_>
<!-- tree 42 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 17 1 3 -1.</_>
<_>
7 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.2450799052603543e-005</threshold>
<left_val>-0.1675013005733490</left_val>
<right_val>0.1217823028564453</right_val></_></_>
<_>
<!-- tree 43 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 1 4 2 -1.</_>
<_>
12 2 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.5837959945201874e-003</threshold>
<left_val>-0.0920428484678268</left_val>
<right_val>0.2134899049997330</right_val></_></_>
<_>
<!-- tree 44 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 3 1 3 -1.</_>
<_>
17 4 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.2924340553581715e-003</threshold>
<left_val>0.0629172325134277</left_val>
<right_val>-0.3617450892925263</right_val></_></_>
<_>
<!-- tree 45 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 16 9 3 -1.</_>
<_>
0 17 9 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.9146775901317596e-003</threshold>
<left_val>0.0195340607315302</left_val>
<right_val>-0.8101503849029541</right_val></_></_>
<_>
<!-- tree 46 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 6 2 4 -1.</_>
<_>
3 6 1 2 2.</_>
<_>
4 8 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.7086310544982553e-003</threshold>
<left_val>0.2552523910999298</left_val>
<right_val>-0.0682294592261314</right_val></_></_>
<_>
<!-- tree 47 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 18 3 1 -1.</_>
<_>
14 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.1844399161636829e-003</threshold>
<left_val>0.0233140494674444</left_val>
<right_val>-0.8429678082466126</right_val></_></_>
<_>
<!-- tree 48 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 18 4 2 -1.</_>
<_>
2 18 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.4244330599904060e-003</threshold>
<left_val>0.2721368968486786</left_val>
<right_val>-0.0763952285051346</right_val></_></_>
<_>
<!-- tree 49 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 19 2 1 -1.</_>
<_>
2 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.7591470279730856e-004</threshold>
<left_val>-0.1074284017086029</left_val>
<right_val>0.2288897037506104</right_val></_></_>
<_>
<!-- tree 50 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 18 4 2 -1.</_>
<_>
0 19 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.0005177510902286e-004</threshold>
<left_val>-0.2985421121120453</left_val>
<right_val>0.0634797364473343</right_val></_></_>
<_>
<!-- tree 51 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 17 1 3 -1.</_>
<_>
2 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.5001438916660845e-004</threshold>
<left_val>-0.2717896997928619</left_val>
<right_val>0.0696150064468384</right_val></_></_>
<_>
<!-- tree 52 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 8 3 5 -1.</_>
<_>
5 8 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.8751391954720020e-003</threshold>
<left_val>-0.0571858994662762</left_val>
<right_val>0.3669595122337341</right_val></_></_>
<_>
<!-- tree 53 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 1 6 7 -1.</_>
<_>
4 1 2 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0127619002014399</threshold>
<left_val>0.0679556876420975</left_val>
<right_val>-0.2853415012359619</right_val></_></_>
<_>
<!-- tree 54 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 6 2 8 -1.</_>
<_>
3 6 1 4 2.</_>
<_>
4 10 1 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.4752789866179228e-003</threshold>
<left_val>0.2068066000938416</left_val>
<right_val>-0.1005939021706581</right_val></_></_>
<_>
<!-- tree 55 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 5 11 10 -1.</_>
<_>
4 10 11 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.1213881969451904</threshold>
<left_val>-0.0971267968416214</left_val>
<right_val>0.1978961974382401</right_val></_></_>
<_>
<!-- tree 56 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 13 20 2 -1.</_>
<_>
10 13 10 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0500812791287899</threshold>
<left_val>0.2841717898845673</left_val>
<right_val>-0.0678799971938133</right_val></_></_>
<_>
<!-- tree 57 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 13 16 3 -1.</_>
<_>
9 13 8 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0314549505710602</threshold>
<left_val>-0.0894686728715897</left_val>
<right_val>0.2129842042922974</right_val></_></_>
<_>
<!-- tree 58 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 4 4 4 -1.</_>
<_>
16 4 2 2 2.</_>
<_>
18 6 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.8878319533541799e-003</threshold>
<left_val>-0.1165644004940987</left_val>
<right_val>0.1666352003812790</right_val></_></_>
<_>
<!-- tree 59 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 0 4 12 -1.</_>
<_>
16 0 2 6 2.</_>
<_>
18 6 2 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.7211960665881634e-003</threshold>
<left_val>0.2370214015245438</left_val>
<right_val>-0.0907766073942184</right_val></_></_>
<_>
<!-- tree 60 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 15 3 1 -1.</_>
<_>
15 15 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.8076719425152987e-004</threshold>
<left_val>0.1795192956924439</left_val>
<right_val>-0.1079348027706146</right_val></_></_>
<_>
<!-- tree 61 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 4 12 10 -1.</_>
<_>
3 9 12 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1976184993982315</threshold>
<left_val>0.4567429125308991</left_val>
<right_val>-0.0404801592230797</right_val></_></_>
<_>
<!-- tree 62 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 18 2 2 -1.</_>
<_>
9 18 1 1 2.</_>
<_>
10 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.3846809926908463e-004</threshold>
<left_val>-0.2373300939798355</left_val>
<right_val>0.0759221613407135</right_val></_></_>
<_>
<!-- tree 63 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 18 2 2 -1.</_>
<_>
9 18 1 1 2.</_>
<_>
10 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.1540730085689574e-004</threshold>
<left_val>0.0816880166530609</left_val>
<right_val>-0.2868503034114838</right_val></_></_>
<_>
<!-- tree 64 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 4 2 14 -1.</_>
<_>
13 4 1 7 2.</_>
<_>
14 11 1 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0101630901917815</threshold>
<left_val>-0.0412500202655792</left_val>
<right_val>0.4803834855556488</right_val></_></_>
<_>
<!-- tree 65 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 2 6 4 -1.</_>
<_>
7 2 3 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.2184870950877666e-003</threshold>
<left_val>0.1745858043432236</left_val>
<right_val>-0.1014650017023087</right_val></_></_>
<_>
<!-- tree 66 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 18 20 -1.</_>
<_>
0 0 9 10 2.</_>
<_>
9 10 9 10 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.2426317036151886</threshold>
<left_val>0.0534264817833900</left_val>
<right_val>-0.3231852948665619</right_val></_></_>
<_>
<!-- tree 67 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 11 1 2 -1.</_>
<_>
15 12 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.9304101634770632e-004</threshold>
<left_val>-0.1149917989969254</left_val>
<right_val>0.1479393988847733</right_val></_></_>
<_>
<!-- tree 68 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 10 2 4 -1.</_>
<_>
16 10 1 2 2.</_>
<_>
17 12 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.5475199110805988e-003</threshold>
<left_val>-0.0394249781966209</left_val>
<right_val>0.5312618017196655</right_val></_></_>
<_>
<!-- tree 69 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 17 2 2 -1.</_>
<_>
18 17 1 1 2.</_>
<_>
19 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.1403690334409475e-004</threshold>
<left_val>0.0697538331151009</left_val>
<right_val>-0.2731958031654358</right_val></_></_>
<_>
<!-- tree 70 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 17 1 2 -1.</_>
<_>
9 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.7119462871924043e-004</threshold>
<left_val>0.3436990082263947</left_val>
<right_val>-0.0576990097761154</right_val></_></_>
<_>
<!-- tree 71 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 4 9 6 -1.</_>
<_>
11 4 3 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.6290069371461868e-003</threshold>
<left_val>0.1175848990678787</left_val>
<right_val>-0.1502013951539993</right_val></_></_></trees>
<stage_threshold>-1.1188739538192749</stage_threshold>
<parent>16</parent>
<next>-1</next></_>
<_>
<!-- stage 18 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 9 9 10 -1.</_>
<_>
9 9 3 10 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0265134498476982</threshold>
<left_val>0.2056864053010941</left_val>
<right_val>-0.2647390067577362</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 0 5 4 -1.</_>
<_>
5 2 5 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.7727458924055099e-003</threshold>
<left_val>-0.1119284033775330</left_val>
<right_val>0.3257054984569550</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 7 11 4 -1.</_>
<_>
5 9 11 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0322903506457806</threshold>
<left_val>-0.0985747575759888</left_val>
<right_val>0.3177917003631592</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 4 2 14 -1.</_>
<_>
3 4 1 14 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.8103240765631199e-003</threshold>
<left_val>0.1521389931440353</left_val>
<right_val>-0.1968640983104706</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 6 3 5 -1.</_>
<_>
9 6 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0109914299100637</threshold>
<left_val>0.5140765905380249</left_val>
<right_val>-0.0437072105705738</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 4 3 9 -1.</_>
<_>
9 4 1 9 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.3133831135928631e-003</threshold>
<left_val>-0.0927810221910477</left_val>
<right_val>0.3470247089862824</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 8 20 6 -1.</_>
<_>
0 10 20 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0871059820055962</threshold>
<left_val>0.0300536490976810</left_val>
<right_val>-0.8281481862068176</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 16 6 1 -1.</_>
<_>
17 16 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.1799359926953912e-003</threshold>
<left_val>-0.1292842030525208</left_val>
<right_val>0.2064612060785294</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 18 2 2 -1.</_>
<_>
17 19 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.3056890182197094e-004</threshold>
<left_val>-0.5002143979072571</left_val>
<right_val>0.0936669930815697</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 17 6 3 -1.</_>
<_>
10 17 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0136871701106429</threshold>
<left_val>-0.7935814857482910</left_val>
<right_val>-6.6733639687299728e-003</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 1 9 15 -1.</_>
<_>
7 1 3 15 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0759174525737762</threshold>
<left_val>0.3046964108943939</left_val>
<right_val>-0.0796558931469917</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 5 3 12 -1.</_>
<_>
12 5 1 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.8559709899127483e-003</threshold>
<left_val>0.2096146047115326</left_val>
<right_val>-0.1273255050182343</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 15 4 3 -1.</_>
<_>
0 16 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.0231510065495968e-003</threshold>
<left_val>-0.6581727862358093</left_val>
<right_val>0.0506836399435997</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 15 1 -1.</_>
<_>
5 0 5 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0175580400973558</threshold>
<left_val>-0.0853826925158501</left_val>
<right_val>0.3617455959320068</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 0 6 4 -1.</_>
<_>
8 0 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0219882391393185</threshold>
<left_val>0.0629436969757080</left_val>
<right_val>-0.7089633941650391</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 0 9 3 -1.</_>
<_>
5 0 3 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.8599589131772518e-003</threshold>
<left_val>0.1468378007411957</left_val>
<right_val>-0.1646597981452942</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 6 3 7 -1.</_>
<_>
14 6 1 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0100308498367667</threshold>
<left_val>0.4957993924617767</left_val>
<right_val>-0.0271883402019739</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 6 4 2 -1.</_>
<_>
7 7 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.9560329429805279e-003</threshold>
<left_val>0.2797777950763702</left_val>
<right_val>-0.0779533311724663</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 18 6 1 -1.</_>
<_>
8 18 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.8356808945536613e-003</threshold>
<left_val>-0.5816398262977600</left_val>
<right_val>0.0357399396598339</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 6 2 2 -1.</_>
<_>
18 7 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.2647319603711367e-003</threshold>
<left_val>-0.4994508028030396</left_val>
<right_val>0.0469864904880524</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 4 7 3 -1.</_>
<_>
6 5 7 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.8412350267171860e-003</threshold>
<left_val>0.3453283011913300</left_val>
<right_val>-0.0688104033470154</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 7 3 1 -1.</_>
<_>
13 7 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.1718113506212831e-005</threshold>
<left_val>0.1504171043634415</left_val>
<right_val>-0.1414667963981628</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 1 2 10 -1.</_>
<_>
15 1 1 5 2.</_>
<_>
16 6 1 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.2448628917336464e-003</threshold>
<left_val>0.2272451072931290</left_val>
<right_val>-0.0928602069616318</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 18 2 2 -1.</_>
<_>
0 19 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.8561151167377830e-004</threshold>
<left_val>-0.4431901872158051</left_val>
<right_val>0.0578124411404133</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 4 1 8 -1.</_>
<_>
19 8 1 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.2474247533828020e-004</threshold>
<left_val>0.1395238935947418</left_val>
<right_val>-0.1466871947050095</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 17 1 3 -1.</_>
<_>
1 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.2942948746494949e-004</threshold>
<left_val>-0.2990157008171082</left_val>
<right_val>0.0760667398571968</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 15 6 4 -1.</_>
<_>
0 15 3 2 2.</_>
<_>
3 17 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.2605739757418633e-003</threshold>
<left_val>-0.1612560003995895</left_val>
<right_val>0.1395380049943924</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 0 1 18 -1.</_>
<_>
19 6 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0516670197248459</threshold>
<left_val>-0.5314283967018127</left_val>
<right_val>0.0407195203006268</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 2 6 2 -1.</_>
<_>
12 2 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0152856195345521</threshold>
<left_val>-0.7820637822151184</left_val>
<right_val>0.0271837692707777</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 8 12 2 -1.</_>
<_>
6 8 4 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0690298229455948</threshold>
<left_val>-0.0364270210266113</left_val>
<right_val>0.7110251784324646</right_val></_></_>
<_>
<!-- tree 30 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 0 4 1 -1.</_>
<_>
18 0 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.4522749697789550e-003</threshold>
<left_val>-0.0968905165791512</left_val>
<right_val>0.2166842073202133</right_val></_></_>
<_>
<!-- tree 31 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 4 2 6 -1.</_>
<_>
8 7 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.4765590205788612e-003</threshold>
<left_val>0.1164531037211418</left_val>
<right_val>-0.1822797954082489</right_val></_></_>
<_>
<!-- tree 32 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 5 2 10 -1.</_>
<_>
15 5 1 10 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.5134819550439715e-003</threshold>
<left_val>0.1786397993564606</left_val>
<right_val>-0.1221496984362602</right_val></_></_>
<_>
<!-- tree 33 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 4 2 2 -1.</_>
<_>
13 5 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.5099470037966967e-003</threshold>
<left_val>0.1808623969554901</left_val>
<right_val>-0.1144606992602348</right_val></_></_>
<_>
<!-- tree 34 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 1 3 6 -1.</_>
<_>
11 3 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.7054620012640953e-003</threshold>
<left_val>0.2510659992694855</left_val>
<right_val>-0.0918714627623558</right_val></_></_>
<_>
<!-- tree 35 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 9 12 2 -1.</_>
<_>
10 9 4 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0140752000734210</threshold>
<left_val>0.1370750963687897</left_val>
<right_val>-0.1733350008726120</right_val></_></_>
<_>
<!-- tree 36 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 16 4 2 -1.</_>
<_>
9 17 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.2400720044970512e-003</threshold>
<left_val>0.4009298086166382</left_val>
<right_val>-0.0475768782198429</right_val></_></_>
<_>
<!-- tree 37 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 14 15 4 -1.</_>
<_>
5 16 15 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0197823699563742</threshold>
<left_val>-0.1904035061597824</left_val>
<right_val>0.1492341011762619</right_val></_></_>
<_>
<!-- tree 38 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 16 2 2 -1.</_>
<_>
18 17 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.6002870872616768e-003</threshold>
<left_val>0.0469717681407928</left_val>
<right_val>-0.4330765902996063</right_val></_></_>
<_>
<!-- tree 39 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 18 2 2 -1.</_>
<_>
16 18 1 1 2.</_>
<_>
17 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.3445628145709634e-004</threshold>
<left_val>-0.4374423027038574</left_val>
<right_val>0.0415201894938946</right_val></_></_>
<_>
<!-- tree 40 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 4 3 8 -1.</_>
<_>
7 4 1 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0174665097147226</threshold>
<left_val>0.6581817269325256</left_val>
<right_val>-0.0344474911689758</right_val></_></_>
<_>
<!-- tree 41 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 9 3 1 -1.</_>
<_>
6 9 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.0425589755177498e-003</threshold>
<left_val>0.3965792953968048</left_val>
<right_val>-0.0440524294972420</right_val></_></_>
<_>
<!-- tree 42 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 8 1 6 -1.</_>
<_>
0 10 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.6661779265850782e-003</threshold>
<left_val>0.0587709583342075</left_val>
<right_val>-0.3280636966228485</right_val></_></_>
<_>
<!-- tree 43 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 2 9 6 -1.</_>
<_>
14 2 3 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0559823699295521</threshold>
<left_val>-0.5173547267913818</left_val>
<right_val>0.0357918404042721</right_val></_></_>
<_>
<!-- tree 44 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 2 6 4 -1.</_>
<_>
14 2 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.5066330088302493e-003</threshold>
<left_val>0.1512386947870255</left_val>
<right_val>-0.1252018064260483</right_val></_></_>
<_>
<!-- tree 45 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 7 2 4 -1.</_>
<_>
1 9 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0114723695442081</threshold>
<left_val>-0.6293053030967712</left_val>
<right_val>0.0347043313086033</right_val></_></_>
<_>
<!-- tree 46 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 1 6 4 -1.</_>
<_>
13 3 6 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0234096292406321</threshold>
<left_val>-0.0580633506178856</left_val>
<right_val>0.3866822123527527</right_val></_></_>
<_>
<!-- tree 47 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 10 2 10 -1.</_>
<_>
4 10 1 5 2.</_>
<_>
5 15 1 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.3243729956448078e-003</threshold>
<left_val>0.1875409930944443</left_val>
<right_val>-0.0983946695923805</right_val></_></_>
<_>
<!-- tree 48 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 16 9 3 -1.</_>
<_>
5 16 3 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0290392991155386</threshold>
<left_val>-0.5448690056800842</left_val>
<right_val>0.0409263409674168</right_val></_></_>
<_>
<!-- tree 49 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 2 3 9 -1.</_>
<_>
2 2 1 9 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0144746499136090</threshold>
<left_val>-0.6724839210510254</left_val>
<right_val>0.0231288503855467</right_val></_></_>
<_>
<!-- tree 50 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 7 1 4 -1.</_>
<_>
19 9 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.2086091600358486e-003</threshold>
<left_val>-0.4327144026756287</left_val>
<right_val>0.0437806509435177</right_val></_></_>
<_>
<!-- tree 51 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 11 6 8 -1.</_>
<_>
14 11 3 4 2.</_>
<_>
17 15 3 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.9382899887859821e-003</threshold>
<left_val>-0.1087862029671669</left_val>
<right_val>0.1934258937835693</right_val></_></_>
<_>
<!-- tree 52 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 12 4 6 -1.</_>
<_>
15 12 2 3 2.</_>
<_>
17 15 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.3193930760025978e-003</threshold>
<left_val>0.2408093065023422</left_val>
<right_val>-0.1038080006837845</right_val></_></_>
<_>
<!-- tree 53 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 15 2 2 -1.</_>
<_>
16 15 1 1 2.</_>
<_>
17 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.3705669445917010e-004</threshold>
<left_val>-0.0873490720987320</left_val>
<right_val>0.2046623975038528</right_val></_></_>
<_>
<!-- tree 54 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 16 2 2 -1.</_>
<_>
17 16 1 1 2.</_>
<_>
18 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.7858079778961837e-004</threshold>
<left_val>0.0456245802342892</left_val>
<right_val>-0.3885467052459717</right_val></_></_>
<_>
<!-- tree 55 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 16 2 2 -1.</_>
<_>
17 16 1 1 2.</_>
<_>
18 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.5342838428914547e-004</threshold>
<left_val>-0.5507794022560120</left_val>
<right_val>0.0358258895576000</right_val></_></_>
<_>
<!-- tree 56 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 3 2 2 -1.</_>
<_>
2 3 1 1 2.</_>
<_>
3 4 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.4772121075075120e-005</threshold>
<left_val>-0.1122523993253708</left_val>
<right_val>0.1750351935625076</right_val></_></_>
<_>
<!-- tree 57 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 10 3 3 -1.</_>
<_>
11 10 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.8445889949798584e-003</threshold>
<left_val>0.2452670037746429</left_val>
<right_val>-0.0811325684189796</right_val></_></_>
<_>
<!-- tree 58 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 9 7 8 -1.</_>
<_>
5 13 7 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0401284582912922</threshold>
<left_val>-0.6312270760536194</left_val>
<right_val>0.0269726701080799</right_val></_></_>
<_>
<!-- tree 59 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 16 2 2 -1.</_>
<_>
7 16 1 1 2.</_>
<_>
8 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.7886360001284629e-004</threshold>
<left_val>0.1985509991645813</left_val>
<right_val>-0.1033368036150932</right_val></_></_>
<_>
<!-- tree 60 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 16 2 2 -1.</_>
<_>
7 16 1 1 2.</_>
<_>
8 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.7668239888735116e-004</threshold>
<left_val>-0.0913590118288994</left_val>
<right_val>0.1984872072935104</right_val></_></_>
<_>
<!-- tree 61 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 8 10 3 -1.</_>
<_>
14 8 5 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0727633833885193</threshold>
<left_val>0.0500755794346333</left_val>
<right_val>-0.3385263085365295</right_val></_></_>
<_>
<!-- tree 62 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 7 4 8 -1.</_>
<_>
6 7 2 4 2.</_>
<_>
8 11 2 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0101816300302744</threshold>
<left_val>-0.0932299792766571</left_val>
<right_val>0.2005959004163742</right_val></_></_>
<_>
<!-- tree 63 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 6 4 3 -1.</_>
<_>
1 7 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.4409969337284565e-003</threshold>
<left_val>0.0646366328001022</left_val>
<right_val>-0.2692174017429352</right_val></_></_>
<_>
<!-- tree 64 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 10 6 10 -1.</_>
<_>
8 10 2 10 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.6227488890290260e-003</threshold>
<left_val>0.1316989064216614</left_val>
<right_val>-0.1251484006643295</right_val></_></_>
<_>
<!-- tree 65 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 6 3 6 -1.</_>
<_>
5 6 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.3635610230267048e-003</threshold>
<left_val>0.1635046005249023</left_val>
<right_val>-0.1066593974828720</right_val></_></_></trees>
<stage_threshold>-1.0888810157775879</stage_threshold>
<parent>17</parent>
<next>-1</next></_>
<_>
<!-- stage 19 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 10 4 4 -1.</_>
<_>
3 10 2 2 2.</_>
<_>
5 12 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.6991164609789848e-003</threshold>
<left_val>0.6112532019615173</left_val>
<right_val>-0.0662253126502037</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 10 4 4 -1.</_>
<_>
3 10 2 2 2.</_>
<_>
5 12 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.6426531672477722e-003</threshold>
<left_val>-1.</left_val>
<right_val>2.7699959464371204e-003</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 10 4 4 -1.</_>
<_>
3 10 2 2 2.</_>
<_>
5 12 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.6381865441799164e-003</threshold>
<left_val>1.</left_val>
<right_val>-2.9904270195402205e-004</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 8 2 6 -1.</_>
<_>
15 8 1 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.2553939856588840e-003</threshold>
<left_val>0.2846438884735107</left_val>
<right_val>-0.1554012000560761</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 10 4 4 -1.</_>
<_>
3 10 2 2 2.</_>
<_>
5 12 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.6223521977663040e-003</threshold>
<left_val>-1.</left_val>
<right_val>0.0439991801977158</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 10 4 4 -1.</_>
<_>
3 10 2 2 2.</_>
<_>
5 12 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.1231241822242737e-003</threshold>
<left_val>0.8686934113502502</left_val>
<right_val>-2.7267890982329845e-003</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 4 3 9 -1.</_>
<_>
13 4 1 9 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.6240433156490326e-003</threshold>
<left_val>0.4535248875617981</left_val>
<right_val>-0.0860713794827461</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 3 1 12 -1.</_>
<_>
12 7 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.9324144646525383e-003</threshold>
<left_val>0.1337555944919586</left_val>
<right_val>-0.2601251900196075</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 0 18 1 -1.</_>
<_>
8 0 6 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0142078101634979</threshold>
<left_val>0.3207764029502869</left_val>
<right_val>-0.0972264111042023</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 0 10 6 -1.</_>
<_>
10 0 5 3 2.</_>
<_>
15 3 5 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0259110108017921</threshold>
<left_val>-0.1296408027410507</left_val>
<right_val>0.2621864974498749</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 16 2 2 -1.</_>
<_>
18 17 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.0531509653665125e-004</threshold>
<left_val>-0.1240428015589714</left_val>
<right_val>0.2106295973062515</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 5 4 2 -1.</_>
<_>
3 5 2 1 2.</_>
<_>
5 6 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.4795680625829846e-005</threshold>
<left_val>0.1197429969906807</left_val>
<right_val>-0.2320127934217453</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 8 3 3 -1.</_>
<_>
12 8 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.8555199541151524e-003</threshold>
<left_val>-0.0632761269807816</left_val>
<right_val>0.4104425013065338</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 7 3 5 -1.</_>
<_>
12 7 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0122530404478312</threshold>
<left_val>0.5488333106040955</left_val>
<right_val>-0.0397311002016068</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 19 15 1 -1.</_>
<_>
8 19 5 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.9058770053088665e-003</threshold>
<left_val>0.2419098019599915</left_val>
<right_val>-0.0970960110425949</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 13 3 2 -1.</_>
<_>
8 14 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.7560980524867773e-003</threshold>
<left_val>-0.1256967931985855</left_val>
<right_val>0.1945665031671524</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 12 8 4 -1.</_>
<_>
2 12 4 2 2.</_>
<_>
6 14 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.7662160620093346e-003</threshold>
<left_val>0.2976570129394531</left_val>
<right_val>-0.0968181565403938</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 16 2 2 -1.</_>
<_>
16 16 1 1 2.</_>
<_>
17 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.8997188676148653e-004</threshold>
<left_val>0.0621884018182755</left_val>
<right_val>-0.4204089939594269</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 0 3 2 -1.</_>
<_>
8 0 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.3579880837351084e-003</threshold>
<left_val>0.0474981404840946</left_val>
<right_val>-0.6321688294410706</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 7 2 5 -1.</_>
<_>
7 7 1 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0167455393821001</threshold>
<left_val>0.7109813094139099</left_val>
<right_val>-0.0391573496162891</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 0 2 17 -1.</_>
<_>
19 0 1 17 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.5409899689257145e-003</threshold>
<left_val>-0.3504317104816437</left_val>
<right_val>0.0706169530749321</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 16 1 3 -1.</_>
<_>
16 17 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.0016340315341949e-004</threshold>
<left_val>0.0919024571776390</left_val>
<right_val>-0.2461867034435272</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 8 3 7 -1.</_>
<_>
15 8 1 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0149189904332161</threshold>
<left_val>-0.0519094504415989</left_val>
<right_val>0.5663604140281677</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 17 2 2 -1.</_>
<_>
10 17 1 1 2.</_>
<_>
11 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.8153079114854336e-004</threshold>
<left_val>0.0646595582365990</left_val>
<right_val>-0.3659060895442963</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 9 1 3 -1.</_>
<_>
4 10 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.0211321427486837e-004</threshold>
<left_val>0.1792656928300858</left_val>
<right_val>-0.1141066029667854</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 10 2 3 -1.</_>
<_>
18 11 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.8521419628523290e-004</threshold>
<left_val>0.1034561991691589</left_val>
<right_val>-0.2007246017456055</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 1 3 10 -1.</_>
<_>
13 1 1 10 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.0837132409214973e-003</threshold>
<left_val>-0.0660734623670578</left_val>
<right_val>0.3028424978256226</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 12 9 1 -1.</_>
<_>
11 12 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0228049699217081</threshold>
<left_val>0.5296235084533691</left_val>
<right_val>-0.0401189997792244</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 18 2 2 -1.</_>
<_>
5 18 1 1 2.</_>
<_>
6 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.9440450705587864e-004</threshold>
<left_val>0.0818548202514648</left_val>
<right_val>-0.2466336041688919</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 6 1 9 -1.</_>
<_>
19 9 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0128480903804302</threshold>
<left_val>-0.3497331142425537</left_val>
<right_val>0.0569162294268608</right_val></_></_>
<_>
<!-- tree 30 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 7 2 4 -1.</_>
<_>
4 7 1 2 2.</_>
<_>
5 9 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.0937290498986840e-003</threshold>
<left_val>0.2336868047714233</left_val>
<right_val>-0.0916048064827919</right_val></_></_>
<_>
<!-- tree 31 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 4 6 14 -1.</_>
<_>
3 4 2 14 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.0032650316134095e-003</threshold>
<left_val>0.1185218021273613</left_val>
<right_val>-0.1846919059753418</right_val></_></_>
<_>
<!-- tree 32 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 5 9 3 -1.</_>
<_>
13 5 3 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0446884296834469</threshold>
<left_val>-0.6436246037483215</left_val>
<right_val>0.0303632691502571</right_val></_></_>
<_>
<!-- tree 33 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 7 2 6 -1.</_>
<_>
18 9 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.1657543778419495e-003</threshold>
<left_val>0.0436746589839458</left_val>
<right_val>-0.4300208985805512</right_val></_></_>
<_>
<!-- tree 34 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 6 2 7 -1.</_>
<_>
6 6 1 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0117178102955222</threshold>
<left_val>0.4178147912025452</left_val>
<right_val>-0.0482336990535259</right_val></_></_>
<_>
<!-- tree 35 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 4 6 8 -1.</_>
<_>
13 4 3 8 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0842771306633949</threshold>
<left_val>0.0534612797200680</left_val>
<right_val>-0.3795219063758850</right_val></_></_>
<_>
<!-- tree 36 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 8 2 9 -1.</_>
<_>
0 11 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0142118399962783</threshold>
<left_val>0.0449009388685226</left_val>
<right_val>-0.4298149943351746</right_val></_></_>
<_>
<!-- tree 37 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 7 5 3 -1.</_>
<_>
0 8 5 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.5028340276330709e-003</threshold>
<left_val>0.0822276398539543</left_val>
<right_val>-0.2470639944076538</right_val></_></_>
<_>
<!-- tree 38 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 1 7 2 -1.</_>
<_>
8 2 7 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0100035797804594</threshold>
<left_val>-0.0572216697037220</left_val>
<right_val>0.3460937142372131</right_val></_></_>
<_>
<!-- tree 39 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 5 3 5 -1.</_>
<_>
8 5 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.0706320479512215e-003</threshold>
<left_val>0.4505808949470520</left_val>
<right_val>-0.0427953191101551</right_val></_></_>
<_>
<!-- tree 40 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 2 1 2 -1.</_>
<_>
19 3 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.3141620224341750e-004</threshold>
<left_val>0.1833691000938416</left_val>
<right_val>-0.1075994968414307</right_val></_></_>
<_>
<!-- tree 41 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 7 10 11 -1.</_>
<_>
11 7 5 11 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.1972327977418900</threshold>
<left_val>-0.0303638298064470</left_val>
<right_val>0.6642342805862427</right_val></_></_>
<_>
<!-- tree 42 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 19 6 1 -1.</_>
<_>
11 19 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.1258801035583019e-003</threshold>
<left_val>-0.8922504782676697</left_val>
<right_val>0.0256699901074171</right_val></_></_>
<_>
<!-- tree 43 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 0 12 1 -1.</_>
<_>
7 0 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.6921341717243195e-003</threshold>
<left_val>-0.0707643702626228</left_val>
<right_val>0.2821052968502045</right_val></_></_>
<_>
<!-- tree 44 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 1 6 5 -1.</_>
<_>
6 1 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.9262127876281738e-003</threshold>
<left_val>0.0710782334208488</left_val>
<right_val>-0.3023256063461304</right_val></_></_>
<_>
<!-- tree 45 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 12 12 6 -1.</_>
<_>
10 12 4 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0572860091924667</threshold>
<left_val>0.0509741306304932</left_val>
<right_val>-0.3919695019721985</right_val></_></_>
<_>
<!-- tree 46 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 13 2 3 -1.</_>
<_>
16 14 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.7920880131423473e-003</threshold>
<left_val>0.0338419415056705</left_val>
<right_val>-0.5101628899574280</right_val></_></_>
<_>
<!-- tree 47 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 14 4 2 -1.</_>
<_>
7 15 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.4508679741993546e-003</threshold>
<left_val>0.3087914884090424</left_val>
<right_val>-0.0638450831174850</right_val></_></_>
<_>
<!-- tree 48 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 14 2 2 -1.</_>
<_>
7 15 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.8390132188796997e-004</threshold>
<left_val>-0.1302956938743591</left_val>
<right_val>0.1460441052913666</right_val></_></_>
<_>
<!-- tree 49 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 10 2 4 -1.</_>
<_>
3 10 1 2 2.</_>
<_>
4 12 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.7221809830516577e-003</threshold>
<left_val>0.2915700972080231</left_val>
<right_val>-0.0685495585203171</right_val></_></_>
<_>
<!-- tree 50 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 3 2 6 -1.</_>
<_>
0 5 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0109482500702143</threshold>
<left_val>0.0343514084815979</left_val>
<right_val>-0.4770225882530212</right_val></_></_>
<_>
<!-- tree 51 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 10 2 2 -1.</_>
<_>
1 10 1 1 2.</_>
<_>
2 11 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.7176309484057128e-005</threshold>
<left_val>0.1605526953935623</left_val>
<right_val>-0.1169084012508392</right_val></_></_>
<_>
<!-- tree 52 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 4 4 3 -1.</_>
<_>
16 5 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.4884208366274834e-003</threshold>
<left_val>-0.4341588914394379</left_val>
<right_val>0.0461062416434288</right_val></_></_>
<_>
<!-- tree 53 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 10 2 4 -1.</_>
<_>
5 10 1 2 2.</_>
<_>
6 12 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.0975250992923975e-003</threshold>
<left_val>0.3794333934783936</left_val>
<right_val>-0.0568605512380600</right_val></_></_>
<_>
<!-- tree 54 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 11 13 2 -1.</_>
<_>
5 12 13 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.4182081259787083e-003</threshold>
<left_val>-0.1585821062326431</left_val>
<right_val>0.1233541965484619</right_val></_></_>
<_>
<!-- tree 55 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 2 3 11 -1.</_>
<_>
11 2 1 11 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0118312397971749</threshold>
<left_val>-0.0409292913973331</left_val>
<right_val>0.4587895870208740</right_val></_></_>
<_>
<!-- tree 56 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 2 4 4 -1.</_>
<_>
10 4 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0135404998436570</threshold>
<left_val>-0.0537255592644215</left_val>
<right_val>0.3505612015724182</right_val></_></_>
<_>
<!-- tree 57 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 8 6 2 -1.</_>
<_>
10 8 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.5932150892913342e-003</threshold>
<left_val>0.1101052016019821</left_val>
<right_val>-0.1675221025943756</right_val></_></_>
<_>
<!-- tree 58 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 2 3 3 -1.</_>
<_>
12 2 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.6856270376592875e-003</threshold>
<left_val>0.0665743574500084</left_val>
<right_val>-0.3083502054214478</right_val></_></_>
<_>
<!-- tree 59 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 18 14 2 -1.</_>
<_>
6 18 7 1 2.</_>
<_>
13 19 7 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.6524690911173820e-003</threshold>
<left_val>0.0663184821605682</left_val>
<right_val>-0.2786133885383606</right_val></_></_>
<_>
<!-- tree 60 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 7 1 12 -1.</_>
<_>
17 11 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.7341729775071144e-003</threshold>
<left_val>0.1971835941076279</left_val>
<right_val>-0.1078291982412338</right_val></_></_>
<_>
<!-- tree 61 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 5 10 3 -1.</_>
<_>
10 6 10 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.0944271497428417e-003</threshold>
<left_val>0.0853374898433685</left_val>
<right_val>-0.2484700977802277</right_val></_></_>
<_>
<!-- tree 62 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 1 3 3 -1.</_>
<_>
7 1 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.9162371065467596e-003</threshold>
<left_val>-0.4747635126113892</left_val>
<right_val>0.0335664898157120</right_val></_></_>
<_>
<!-- tree 63 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 8 3 1 -1.</_>
<_>
14 8 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.0121419113129377e-003</threshold>
<left_val>-0.0475753806531429</left_val>
<right_val>0.4258680045604706</right_val></_></_>
<_>
<!-- tree 64 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 14 2 6 -1.</_>
<_>
10 16 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.1694869976490736e-003</threshold>
<left_val>-0.1051945015788078</left_val>
<right_val>0.1716345995664597</right_val></_></_>
<_>
<!-- tree 65 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 1 12 14 -1.</_>
<_>
8 1 4 14 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.2232756018638611</threshold>
<left_val>-0.0143702095374465</left_val>
<right_val>0.9248365163803101</right_val></_></_>
<_>
<!-- tree 66 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 1 6 14 -1.</_>
<_>
16 1 2 14 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0955850481987000</threshold>
<left_val>-0.7420663833618164</left_val>
<right_val>0.0278189703822136</right_val></_></_>
<_>
<!-- tree 67 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 16 2 2 -1.</_>
<_>
3 16 1 1 2.</_>
<_>
4 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.4773729566950351e-005</threshold>
<left_val>-0.1276578009128571</left_val>
<right_val>0.1292666941881180</right_val></_></_>
<_>
<!-- tree 68 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 16 2 2 -1.</_>
<_>
0 17 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.2459770308341831e-005</threshold>
<left_val>-0.1651857942342758</left_val>
<right_val>0.1003680974245071</right_val></_></_></trees>
<stage_threshold>-1.0408929586410522</stage_threshold>
<parent>18</parent>
<next>-1</next></_>
<_>
<!-- stage 20 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 6 4 6 -1.</_>
<_>
15 6 2 3 2.</_>
<_>
17 9 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.5778270363807678e-003</threshold>
<left_val>0.3381525874137878</left_val>
<right_val>-0.1528190970420837</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 5 2 2 -1.</_>
<_>
12 6 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.0922809597104788e-003</threshold>
<left_val>0.2228236943483353</left_val>
<right_val>-0.1930849999189377</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 6 6 13 -1.</_>
<_>
9 6 2 13 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0297595895826817</threshold>
<left_val>0.2595987021923065</left_val>
<right_val>-0.1540940999984741</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 9 6 5 -1.</_>
<_>
3 9 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0131475403904915</threshold>
<left_val>0.1903381049633026</left_val>
<right_val>-0.1654399931430817</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 5 3 4 -1.</_>
<_>
0 7 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.4396329643204808e-003</threshold>
<left_val>0.2007171064615250</left_val>
<right_val>-0.1233894005417824</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 1 16 2 -1.</_>
<_>
4 1 8 1 2.</_>
<_>
12 2 8 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.5928250290453434e-003</threshold>
<left_val>0.2398552000522614</left_val>
<right_val>-0.1292214989662170</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 18 4 2 -1.</_>
<_>
1 18 2 1 2.</_>
<_>
3 19 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.5314699849113822e-003</threshold>
<left_val>-0.4901489913463593</left_val>
<right_val>0.1027503013610840</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 7 3 4 -1.</_>
<_>
8 7 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.2372139655053616e-003</threshold>
<left_val>0.3121463954448700</left_val>
<right_val>-0.1140562966465950</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 4 9 3 -1.</_>
<_>
6 4 3 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0333646498620510</threshold>
<left_val>-0.4952087998390198</left_val>
<right_val>0.0513284504413605</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 6 6 10 -1.</_>
<_>
6 6 2 10 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0228276997804642</threshold>
<left_val>0.3255882859230042</left_val>
<right_val>-0.0650893077254295</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 0 8 10 -1.</_>
<_>
13 0 4 10 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0861990973353386</threshold>
<left_val>-0.6764633059501648</left_val>
<right_val>0.0269856993108988</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 0 8 1 -1.</_>
<_>
12 0 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.1065981127321720e-003</threshold>
<left_val>0.2245243042707443</left_val>
<right_val>-0.1261022984981537</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 2 8 16 -1.</_>
<_>
6 2 4 8 2.</_>
<_>
10 10 4 8 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0391201488673687</threshold>
<left_val>0.1132939979434013</left_val>
<right_val>-0.2686063051223755</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 10 2 10 -1.</_>
<_>
14 10 1 5 2.</_>
<_>
15 15 1 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.5082739777863026e-003</threshold>
<left_val>-0.1135995984077454</left_val>
<right_val>0.2564977109432221</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 11 1 2 -1.</_>
<_>
12 12 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.9289898490533233e-004</threshold>
<left_val>-0.1494296938180924</left_val>
<right_val>0.1640983968973160</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 0 3 8 -1.</_>
<_>
17 0 1 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.1766850305721164e-004</threshold>
<left_val>0.0999056920409203</left_val>
<right_val>-0.2196796983480454</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 0 6 10 -1.</_>
<_>
17 0 3 10 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0218036007136106</threshold>
<left_val>-0.3171172142028809</left_val>
<right_val>0.0828895866870880</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 0 3 5 -1.</_>
<_>
17 0 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.2962779514491558e-003</threshold>
<left_val>-0.3804872930049896</left_val>
<right_val>0.0608193799853325</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 5 11 2 -1.</_>
<_>
4 6 11 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.4196270387619734e-003</threshold>
<left_val>-0.0960130169987679</left_val>
<right_val>0.2854058146476746</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 0 2 1 -1.</_>
<_>
2 0 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.4187481398694217e-004</threshold>
<left_val>0.2212793976068497</left_val>
<right_val>-0.0974349081516266</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 2 3 -1.</_>
<_>
0 1 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.4523929934948683e-003</threshold>
<left_val>0.0375531204044819</left_val>
<right_val>-0.5796905159950256</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 6 6 11 -1.</_>
<_>
13 6 2 11 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0218346007168293</threshold>
<left_val>0.2956213951110840</left_val>
<right_val>-0.0800483003258705</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 0 3 1 -1.</_>
<_>
15 0 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.1309500152710825e-004</threshold>
<left_val>0.2281450927257538</left_val>
<right_val>-0.1011418998241425</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 7 1 2 -1.</_>
<_>
19 8 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.6166249988600612e-003</threshold>
<left_val>-0.5054119825363159</left_val>
<right_val>0.0447645410895348</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 0 3 9 -1.</_>
<_>
18 0 1 9 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.5959609821438789e-003</threshold>
<left_val>0.0459865406155586</left_val>
<right_val>-0.4119768142700195</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 7 3 4 -1.</_>
<_>
13 7 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.8601809646934271e-003</threshold>
<left_val>-0.0865631699562073</left_val>
<right_val>0.2480999976396561</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 1 14 2 -1.</_>
<_>
0 1 7 1 2.</_>
<_>
7 2 7 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.0622231103479862e-003</threshold>
<left_val>-0.0755573734641075</left_val>
<right_val>0.2843326032161713</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 1 3 2 -1.</_>
<_>
4 1 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.7097420059144497e-003</threshold>
<left_val>-0.3529582023620606</left_val>
<right_val>0.0584104992449284</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 0 15 2 -1.</_>
<_>
9 0 5 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0165155790746212</threshold>
<left_val>-0.0804869532585144</left_val>
<right_val>0.2353743016719818</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 2 6 1 -1.</_>
<_>
12 2 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.8465100117027760e-003</threshold>
<left_val>0.0418952181935310</left_val>
<right_val>-0.4844304919242859</right_val></_></_>
<_>
<!-- tree 30 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 4 6 11 -1.</_>
<_>
11 4 2 11 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0311671700328588</threshold>
<left_val>0.1919230967760086</left_val>
<right_val>-0.1026815995573998</right_val></_></_>
<_>
<!-- tree 31 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 16 2 4 -1.</_>
<_>
2 18 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.1892281519249082e-004</threshold>
<left_val>-0.2108577042818070</left_val>
<right_val>0.0938869267702103</right_val></_></_>
<_>
<!-- tree 32 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 17 6 3 -1.</_>
<_>
8 17 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0119463102892041</threshold>
<left_val>0.0390961691737175</left_val>
<right_val>-0.6224862933158875</right_val></_></_>
<_>
<!-- tree 33 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 9 6 2 -1.</_>
<_>
9 9 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.5677200220525265e-003</threshold>
<left_val>0.1593683958053589</left_val>
<right_val>-0.1225078031420708</right_val></_></_>
<_>
<!-- tree 34 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 8 9 2 -1.</_>
<_>
9 8 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0537474118173122</threshold>
<left_val>-0.5562217831611633</left_val>
<right_val>0.0411900095641613</right_val></_></_>
<_>
<!-- tree 35 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 6 2 10 -1.</_>
<_>
6 6 1 5 2.</_>
<_>
7 11 1 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0155135300010443</threshold>
<left_val>-0.0398268811404705</left_val>
<right_val>0.6240072846412659</right_val></_></_>
<_>
<!-- tree 36 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 11 2 3 -1.</_>
<_>
0 12 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.5246650436893106e-003</threshold>
<left_val>0.0701386779546738</left_val>
<right_val>-0.3078907132148743</right_val></_></_>
<_>
<!-- tree 37 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 15 4 1 -1.</_>
<_>
13 15 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.8315100139006972e-004</threshold>
<left_val>0.1788765937089920</left_val>
<right_val>-0.1095862016081810</right_val></_></_>
<_>
<!-- tree 38 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 17 1 2 -1.</_>
<_>
6 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.7374739293009043e-003</threshold>
<left_val>0.0274785906076431</left_val>
<right_val>-0.8848956823348999</right_val></_></_>
<_>
<!-- tree 39 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 6 20 -1.</_>
<_>
2 0 2 20 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0657877177000046</threshold>
<left_val>-0.4643214046955109</left_val>
<right_val>0.0350371487438679</right_val></_></_>
<_>
<!-- tree 40 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 10 2 2 -1.</_>
<_>
4 10 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.2409730115905404e-003</threshold>
<left_val>-0.0964792370796204</left_val>
<right_val>0.2877922058105469</right_val></_></_>
<_>
<!-- tree 41 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 7 3 5 -1.</_>
<_>
5 7 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.1398809561505914e-004</threshold>
<left_val>0.1151171997189522</left_val>
<right_val>-0.1676616072654724</right_val></_></_>
<_>
<!-- tree 42 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 12 6 2 -1.</_>
<_>
5 12 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0239018201828003</threshold>
<left_val>-0.0326031893491745</left_val>
<right_val>0.6001734733581543</right_val></_></_>
<_>
<!-- tree 43 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 15 7 4 -1.</_>
<_>
6 17 7 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0275566000491381</threshold>
<left_val>-0.0661373436450958</left_val>
<right_val>0.2999447882175446</right_val></_></_>
<_>
<!-- tree 44 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 16 2 2 -1.</_>
<_>
17 16 1 1 2.</_>
<_>
18 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.8070970913395286e-004</threshold>
<left_val>-0.3388118147850037</left_val>
<right_val>0.0644507706165314</right_val></_></_>
<_>
<!-- tree 45 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 1 3 16 -1.</_>
<_>
16 1 1 16 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.3335429830476642e-003</threshold>
<left_val>0.1458866000175476</left_val>
<right_val>-0.1321762055158615</right_val></_></_>
<_>
<!-- tree 46 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 16 6 3 -1.</_>
<_>
8 16 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.3507990241050720e-003</threshold>
<left_val>-0.5117782950401306</left_val>
<right_val>0.0349694713950157</right_val></_></_>
<_>
<!-- tree 47 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 14 3 2 -1.</_>
<_>
15 15 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.6215229928493500e-003</threshold>
<left_val>0.0232495293021202</left_val>
<right_val>-0.6961941123008728</right_val></_></_>
<_>
<!-- tree 48 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 16 1 2 -1.</_>
<_>
12 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.3407860832521692e-005</threshold>
<left_val>0.2372737973928452</left_val>
<right_val>-0.0869107097387314</right_val></_></_>
<_>
<!-- tree 49 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 2 4 4 -1.</_>
<_>
0 2 2 2 2.</_>
<_>
2 4 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.5332329785451293e-003</threshold>
<left_val>0.1922841072082520</left_val>
<right_val>-0.1042239964008331</right_val></_></_>
<_>
<!-- tree 50 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 1 6 4 -1.</_>
<_>
1 1 3 2 2.</_>
<_>
4 3 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.3135890737175941e-003</threshold>
<left_val>-0.0962195470929146</left_val>
<right_val>0.2560121119022369</right_val></_></_>
<_>
<!-- tree 51 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 18 1 2 -1.</_>
<_>
1 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.3042880638968199e-004</threshold>
<left_val>-0.3156475126743317</left_val>
<right_val>0.0588385984301567</right_val></_></_>
<_>
<!-- tree 52 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 7 2 3 -1.</_>
<_>
4 8 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.8411828726530075e-003</threshold>
<left_val>-0.6634092926979065</left_val>
<right_val>0.0245009995996952</right_val></_></_>
<_>
<!-- tree 53 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 0 9 14 -1.</_>
<_>
1 7 9 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.1710374057292938</threshold>
<left_val>0.0338314995169640</left_val>
<right_val>-0.4561594128608704</right_val></_></_>
<_>
<!-- tree 54 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 9 2 6 -1.</_>
<_>
4 9 1 3 2.</_>
<_>
5 12 1 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.6011140542104840e-003</threshold>
<left_val>0.2157489061355591</left_val>
<right_val>-0.0836225301027298</right_val></_></_>
<_>
<!-- tree 55 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 9 4 3 -1.</_>
<_>
5 9 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0105357803404331</threshold>
<left_val>0.2455231994390488</left_val>
<right_val>-0.0823844894766808</right_val></_></_>
<_>
<!-- tree 56 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 9 2 4 -1.</_>
<_>
0 11 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.8351638726890087e-003</threshold>
<left_val>-0.4780732989311218</left_val>
<right_val>0.0440862216055393</right_val></_></_>
<_>
<!-- tree 57 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 6 3 10 -1.</_>
<_>
17 6 1 10 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0187061093747616</threshold>
<left_val>-0.6002402901649475</left_val>
<right_val>0.0214100405573845</right_val></_></_>
<_>
<!-- tree 58 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 11 2 1 -1.</_>
<_>
17 11 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.3307439237833023e-004</threshold>
<left_val>0.2432359009981155</left_val>
<right_val>-0.0741657167673111</right_val></_></_></trees>
<stage_threshold>-1.0566600561141968</stage_threshold>
<parent>19</parent>
<next>-1</next></_>
<_>
<!-- stage 21 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 7 4 4 -1.</_>
<_>
5 9 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0106462296098471</threshold>
<left_val>-0.1386138945817947</left_val>
<right_val>0.2649407088756561</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 11 9 2 -1.</_>
<_>
13 11 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0352982692420483</threshold>
<left_val>-0.0758217275142670</left_val>
<right_val>0.3902106881141663</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 10 2 2 -1.</_>
<_>
15 10 1 1 2.</_>
<_>
16 11 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.5638387352228165e-004</threshold>
<left_val>-0.0955214425921440</left_val>
<right_val>0.2906199991703033</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 6 6 14 -1.</_>
<_>
10 13 6 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0924977064132690</threshold>
<left_val>-0.2770423889160156</left_val>
<right_val>0.0794747024774551</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 7 3 5 -1.</_>
<_>
15 7 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.9340879991650581e-003</threshold>
<left_val>0.2298953980207443</left_val>
<right_val>-0.0785500109195709</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 11 12 3 -1.</_>
<_>
10 11 4 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0865358486771584</threshold>
<left_val>0.4774481058120728</left_val>
<right_val>-6.8231220357120037e-003</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 16 1 2 -1.</_>
<_>
17 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.4699288739357144e-005</threshold>
<left_val>-0.2264260947704315</left_val>
<right_val>0.0881921127438545</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 5 5 4 -1.</_>
<_>
8 7 5 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0365925207734108</threshold>
<left_val>0.2735387086868286</left_val>
<right_val>-0.0986067429184914</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 6 4 2 -1.</_>
<_>
11 7 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.6469118893146515e-003</threshold>
<left_val>-0.0440839789807796</left_val>
<right_val>0.3144528865814209</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 4 8 2 -1.</_>
<_>
3 4 4 1 2.</_>
<_>
7 5 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.4271810911595821e-003</threshold>
<left_val>0.2382272928953171</left_val>
<right_val>-0.0867842733860016</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 8 6 6 -1.</_>
<_>
2 8 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.1882481202483177e-003</threshold>
<left_val>0.1504276990890503</left_val>
<right_val>-0.1267210990190506</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 4 6 2 -1.</_>
<_>
7 5 6 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.5530400238931179e-003</threshold>
<left_val>-0.0559450201690197</left_val>
<right_val>0.3650163114070892</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 3 6 3 -1.</_>
<_>
9 3 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0145624103024602</threshold>
<left_val>0.0363977700471878</left_val>
<right_val>-0.5355919003486633</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 17 3 3 -1.</_>
<_>
2 18 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.8677567469421774e-005</threshold>
<left_val>-0.1747962981462479</left_val>
<right_val>0.1106870993971825</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 10 6 1 -1.</_>
<_>
5 10 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.9744901955127716e-003</threshold>
<left_val>0.3107787072658539</left_val>
<right_val>-0.0665302276611328</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 2 6 2 -1.</_>
<_>
9 2 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.8691250160336494e-003</threshold>
<left_val>-0.3190149068832398</left_val>
<right_val>0.0639318302273750</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 11 9 1 -1.</_>
<_>
7 11 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0111403102055192</threshold>
<left_val>0.2436479032039642</left_val>
<right_val>-0.0809351801872253</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 7 11 12 -1.</_>
<_>
7 13 11 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0586435310542583</threshold>
<left_val>-0.7608326077461243</left_val>
<right_val>0.0308096297085285</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 2 3 4 -1.</_>
<_>
4 2 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.6097282320261002e-003</threshold>
<left_val>-0.4531502127647400</left_val>
<right_val>0.0298790596425533</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 7 9 3 -1.</_>
<_>
12 7 3 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.3032103031873703e-003</threshold>
<left_val>0.1451337933540344</left_val>
<right_val>-0.1103316992521286</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 11 2 6 -1.</_>
<_>
15 11 1 3 2.</_>
<_>
16 14 1 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.3253629440441728e-003</threshold>
<left_val>-0.0976989567279816</left_val>
<right_val>0.1964644044637680</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 5 5 3 -1.</_>
<_>
0 6 5 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.9800761044025421e-003</threshold>
<left_val>0.0336480811238289</left_val>
<right_val>-0.3979220986366272</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 1 6 12 -1.</_>
<_>
10 1 2 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.6542161405086517e-003</threshold>
<left_val>0.0908419936895370</left_val>
<right_val>-0.1596754938364029</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 7 15 13 -1.</_>
<_>
8 7 5 13 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.3892059028148651</threshold>
<left_val>-0.6657109260559082</left_val>
<right_val>0.0190288294106722</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 9 9 9 -1.</_>
<_>
0 12 9 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1001966968178749</threshold>
<left_val>-0.5755926966667175</left_val>
<right_val>0.0242827795445919</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 0 3 8 -1.</_>
<_>
17 0 1 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.3541211895644665e-004</threshold>
<left_val>0.0879198014736176</left_val>
<right_val>-0.1619534045457840</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 2 4 2 -1.</_>
<_>
18 2 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.4802639856934547e-003</threshold>
<left_val>0.2606449127197266</left_val>
<right_val>-0.0602008104324341</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 0 6 5 -1.</_>
<_>
16 0 3 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.4000425413250923e-003</threshold>
<left_val>-0.1097972989082336</left_val>
<right_val>0.1570730954408646</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 1 3 2 -1.</_>
<_>
16 1 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.3786011151969433e-003</threshold>
<left_val>0.0360582396388054</left_val>
<right_val>-0.4727719128131867</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 8 3 2 -1.</_>
<_>
12 8 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.3831682093441486e-003</threshold>
<left_val>-0.0357563607394695</left_val>
<right_val>0.4949859082698822</right_val></_></_>
<_>
<!-- tree 30 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 8 2 12 -1.</_>
<_>
1 8 1 6 2.</_>
<_>
2 14 1 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.2115620560944080e-003</threshold>
<left_val>-0.1012556031346321</left_val>
<right_val>0.1574798971414566</right_val></_></_>
<_>
<!-- tree 31 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 1 6 12 -1.</_>
<_>
2 1 2 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0782096683979034</threshold>
<left_val>-0.7662708163261414</left_val>
<right_val>0.0229658298194408</right_val></_></_>
<_>
<!-- tree 32 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 17 1 3 -1.</_>
<_>
19 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.3303989261621609e-005</threshold>
<left_val>-0.1341435015201569</left_val>
<right_val>0.1111491993069649</right_val></_></_>
<_>
<!-- tree 33 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 3 3 10 -1.</_>
<_>
12 3 1 10 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.6419155597686768e-003</threshold>
<left_val>0.2506802976131439</left_val>
<right_val>-0.0666081383824348</right_val></_></_>
<_>
<!-- tree 34 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 1 9 8 -1.</_>
<_>
11 1 3 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0710926726460457</threshold>
<left_val>-0.4005681872367859</left_val>
<right_val>0.0402977913618088</right_val></_></_>
<_>
<!-- tree 35 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 16 2 2 -1.</_>
<_>
18 16 1 1 2.</_>
<_>
19 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.5171560011804104e-004</threshold>
<left_val>0.0418611802160740</left_val>
<right_val>-0.3296119868755341</right_val></_></_>
<_>
<!-- tree 36 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 16 2 2 -1.</_>
<_>
18 16 1 1 2.</_>
<_>
19 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.3458150574006140e-004</threshold>
<left_val>-0.2602983117103577</left_val>
<right_val>0.0678927376866341</right_val></_></_>
<_>
<!-- tree 37 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 13 2 6 -1.</_>
<_>
6 15 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.1451421566307545e-003</threshold>
<left_val>0.2396769970655441</left_val>
<right_val>-0.0720933377742767</right_val></_></_>
<_>
<!-- tree 38 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 14 2 2 -1.</_>
<_>
9 15 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.1754500232636929e-003</threshold>
<left_val>-0.0712352693080902</left_val>
<right_val>0.2412845045328140</right_val></_></_>
<_>
<!-- tree 39 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 10 2 4 -1.</_>
<_>
14 10 1 2 2.</_>
<_>
15 12 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.5184490047395229e-003</threshold>
<left_val>0.5032023787498474</left_val>
<right_val>-0.0296866800636053</right_val></_></_>
<_>
<!-- tree 40 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 15 2 2 -1.</_>
<_>
0 15 1 1 2.</_>
<_>
1 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.0242869979701936e-004</threshold>
<left_val>0.2487905025482178</left_val>
<right_val>-0.0567585788667202</right_val></_></_>
<_>
<!-- tree 41 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 7 2 2 -1.</_>
<_>
6 7 1 1 2.</_>
<_>
7 8 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.3125919504091144e-003</threshold>
<left_val>0.3174780011177063</left_val>
<right_val>-0.0418458618223667</right_val></_></_>
<_>
<!-- tree 42 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 18 2 2 -1.</_>
<_>
11 18 1 1 2.</_>
<_>
12 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.7123570907860994e-004</threshold>
<left_val>-0.2704207003116608</left_val>
<right_val>0.0568289905786514</right_val></_></_>
<_>
<!-- tree 43 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 6 4 -1.</_>
<_>
0 0 3 2 2.</_>
<_>
3 2 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.3241777718067169e-003</threshold>
<left_val>0.2755667865276337</left_val>
<right_val>-0.0542529709637165</right_val></_></_>
<_>
<!-- tree 44 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 1 6 6 -1.</_>
<_>
6 1 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0168517101556063</threshold>
<left_val>-0.3485291004180908</left_val>
<right_val>0.0453689992427826</right_val></_></_>
<_>
<!-- tree 45 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 13 5 4 -1.</_>
<_>
15 15 5 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0299021005630493</threshold>
<left_val>0.0316210798919201</left_val>
<right_val>-0.4311437010765076</right_val></_></_>
<_>
<!-- tree 46 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 17 6 1 -1.</_>
<_>
9 17 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.8902660124003887e-003</threshold>
<left_val>0.0380299612879753</left_val>
<right_val>-0.3702709972858429</right_val></_></_>
<_>
<!-- tree 47 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 19 4 1 -1.</_>
<_>
18 19 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.9242949783802032e-003</threshold>
<left_val>0.2480027973651886</left_val>
<right_val>-0.0593332983553410</right_val></_></_>
<_>
<!-- tree 48 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 16 4 4 -1.</_>
<_>
18 16 2 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.9354149959981441e-003</threshold>
<left_val>-0.0830684006214142</left_val>
<right_val>0.2204380929470062</right_val></_></_>
<_>
<!-- tree 49 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 8 9 4 -1.</_>
<_>
10 8 3 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0820756033062935</threshold>
<left_val>-0.0194134395569563</left_val>
<right_val>0.6908928751945496</right_val></_></_>
<_>
<!-- tree 50 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 18 2 2 -1.</_>
<_>
16 18 1 1 2.</_>
<_>
17 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.4699489586055279e-004</threshold>
<left_val>-0.2466056942939758</left_val>
<right_val>0.0647764503955841</right_val></_></_>
<_>
<!-- tree 51 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 9 2 4 -1.</_>
<_>
2 9 1 2 2.</_>
<_>
3 11 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.8365769647061825e-003</threshold>
<left_val>0.2883616089820862</left_val>
<right_val>-0.0533904582262039</right_val></_></_>
<_>
<!-- tree 52 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 3 8 4 -1.</_>
<_>
0 3 4 2 2.</_>
<_>
4 5 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.9553811550140381e-003</threshold>
<left_val>0.1274082958698273</left_val>
<right_val>-0.1255941987037659</right_val></_></_>
<_>
<!-- tree 53 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 1 8 1 -1.</_>
<_>
4 1 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.3086621016263962e-003</threshold>
<left_val>0.2347811013460159</left_val>
<right_val>-0.0716764926910400</right_val></_></_>
<_>
<!-- tree 54 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 5 8 9 -1.</_>
<_>
4 5 4 9 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1087991967797279</threshold>
<left_val>-0.2599223852157593</left_val>
<right_val>0.0586897395551205</right_val></_></_>
<_>
<!-- tree 55 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 18 6 2 -1.</_>
<_>
9 18 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.6786450594663620e-003</threshold>
<left_val>-0.7072042822837830</left_val>
<right_val>0.0187492594122887</right_val></_></_>
<_>
<!-- tree 56 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 4 1 12 -1.</_>
<_>
0 8 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0271368306130171</threshold>
<left_val>-0.5838422775268555</left_val>
<right_val>0.0216841306537390</right_val></_></_>
<_>
<!-- tree 57 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 13 1 6 -1.</_>
<_>
19 15 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.5389778465032578e-003</threshold>
<left_val>-0.5974891185760498</left_val>
<right_val>0.0214803107082844</right_val></_></_>
<_>
<!-- tree 58 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 8 6 8 -1.</_>
<_>
4 8 2 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0120956301689148</threshold>
<left_val>0.1326903998851776</left_val>
<right_val>-0.0997227206826210</right_val></_></_>
<_>
<!-- tree 59 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 9 17 -1.</_>
<_>
3 0 3 17 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1677609980106354</threshold>
<left_val>-0.5665506720542908</left_val>
<right_val>0.0321230888366699</right_val></_></_>
<_>
<!-- tree 60 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 9 6 8 -1.</_>
<_>
9 9 2 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0132625503465533</threshold>
<left_val>0.1149559020996094</left_val>
<right_val>-0.1173838973045349</right_val></_></_>
<_>
<!-- tree 61 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 10 9 4 -1.</_>
<_>
8 10 3 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0767445191740990</threshold>
<left_val>-0.0314132310450077</left_val>
<right_val>0.5993549227714539</right_val></_></_>
<_>
<!-- tree 62 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 0 8 3 -1.</_>
<_>
5 1 8 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.0785229541361332e-003</threshold>
<left_val>-0.0529119409620762</left_val>
<right_val>0.2334239929914475</right_val></_></_>
<_>
<!-- tree 63 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 6 4 4 -1.</_>
<_>
16 6 2 2 2.</_>
<_>
18 8 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.1800279393792152e-003</threshold>
<left_val>-0.0777343884110451</left_val>
<right_val>0.1765290945768356</right_val></_></_>
<_>
<!-- tree 64 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 4 2 8 -1.</_>
<_>
17 4 1 4 2.</_>
<_>
18 8 1 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.7729829996824265e-003</threshold>
<left_val>0.1959162950515747</left_val>
<right_val>-0.0797521993517876</right_val></_></_>
<_>
<!-- tree 65 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 16 1 3 -1.</_>
<_>
2 17 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.8560940194875002e-004</threshold>
<left_val>-0.2880037128925324</left_val>
<right_val>0.0490471199154854</right_val></_></_>
<_>
<!-- tree 66 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 16 1 3 -1.</_>
<_>
2 17 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.6554320831783116e-004</threshold>
<left_val>0.0679228976368904</left_val>
<right_val>-0.2249943017959595</right_val></_></_>
<_>
<!-- tree 67 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 0 1 3 -1.</_>
<_>
11 1 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.6938671362586319e-004</threshold>
<left_val>0.1658217012882233</left_val>
<right_val>-0.0897440984845161</right_val></_></_>
<_>
<!-- tree 68 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 2 9 7 -1.</_>
<_>
14 2 3 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0786842331290245</threshold>
<left_val>0.0260816793888807</left_val>
<right_val>-0.5569373965263367</right_val></_></_>
<_>
<!-- tree 69 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 2 3 6 -1.</_>
<_>
11 2 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.3774810880422592e-004</threshold>
<left_val>0.1403687000274658</left_val>
<right_val>-0.1180030032992363</right_val></_></_>
<_>
<!-- tree 70 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 9 15 2 -1.</_>
<_>
5 10 15 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0239578299224377</threshold>
<left_val>0.0304707400500774</left_val>
<right_val>-0.4615997970104218</right_val></_></_>
<_>
<!-- tree 71 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 16 6 2 -1.</_>
<_>
8 17 6 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.6239080578088760e-003</threshold>
<left_val>0.2632707953453064</left_val>
<right_val>-0.0567653700709343</right_val></_></_>
<_>
<!-- tree 72 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 16 10 2 -1.</_>
<_>
9 16 5 1 2.</_>
<_>
14 17 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.0819748584181070e-004</threshold>
<left_val>0.1546245962381363</left_val>
<right_val>-0.1108706966042519</right_val></_></_>
<_>
<!-- tree 73 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 17 2 2 -1.</_>
<_>
9 17 1 1 2.</_>
<_>
10 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.9806248969398439e-004</threshold>
<left_val>0.0556303709745407</left_val>
<right_val>-0.2833195924758911</right_val></_></_>
<_>
<!-- tree 74 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 15 6 4 -1.</_>
<_>
10 15 3 2 2.</_>
<_>
13 17 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.0506449509412050e-003</threshold>
<left_val>-0.0916048362851143</left_val>
<right_val>0.1758553981781006</right_val></_></_>
<_>
<!-- tree 75 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 5 15 12 -1.</_>
<_>
9 5 5 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0267425496131182</threshold>
<left_val>0.0620030313730240</left_val>
<right_val>-0.2448700070381165</right_val></_></_>
<_>
<!-- tree 76 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 13 2 3 -1.</_>
<_>
11 14 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.1497008856385946e-003</threshold>
<left_val>0.2944929897785187</left_val>
<right_val>-0.0532181486487389</right_val></_></_>
<_>
<!-- tree 77 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 13 7 3 -1.</_>
<_>
8 14 7 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.6671658530831337e-003</threshold>
<left_val>-0.0642982423305511</left_val>
<right_val>0.2490568011999130</right_val></_></_>
<_>
<!-- tree 78 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 12 1 2 -1.</_>
<_>
1 13 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.8317902332637459e-005</threshold>
<left_val>-0.1681963056325913</left_val>
<right_val>0.0965485796332359</right_val></_></_>
<_>
<!-- tree 79 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 18 2 2 -1.</_>
<_>
16 18 1 1 2.</_>
<_>
17 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.7600439605303109e-004</threshold>
<left_val>0.0653080120682716</left_val>
<right_val>-0.2426788061857224</right_val></_></_>
<_>
<!-- tree 80 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 19 18 1 -1.</_>
<_>
7 19 6 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.1861608624458313e-003</threshold>
<left_val>-0.0979885831475258</left_val>
<right_val>0.1805288940668106</right_val></_></_>
<_>
<!-- tree 81 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 17 6 1 -1.</_>
<_>
4 17 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.1808340679854155e-003</threshold>
<left_val>0.1923127025365830</left_val>
<right_val>-0.0941239297389984</right_val></_></_>
<_>
<!-- tree 82 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 3 1 12 -1.</_>
<_>
1 9 1 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0217304006218910</threshold>
<left_val>0.0355785116553307</left_val>
<right_val>-0.4508853852748871</right_val></_></_>
<_>
<!-- tree 83 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 9 3 6 -1.</_>
<_>
0 11 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0147802699357271</threshold>
<left_val>-0.4392701089382172</left_val>
<right_val>0.0317355915904045</right_val></_></_>
<_>
<!-- tree 84 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 4 3 10 -1.</_>
<_>
6 4 1 10 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.6145891062915325e-003</threshold>
<left_val>0.1981147974729538</left_val>
<right_val>-0.0777014195919037</right_val></_></_>
<_>
<!-- tree 85 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 17 2 1 -1.</_>
<_>
7 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.8892709631472826e-003</threshold>
<left_val>0.0199624393135309</left_val>
<right_val>-0.7204172015190125</right_val></_></_>
<_>
<!-- tree 86 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 0 6 12 -1.</_>
<_>
3 0 2 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.3822480104863644e-003</threshold>
<left_val>0.0984669476747513</left_val>
<right_val>-0.1488108038902283</right_val></_></_>
<_>
<!-- tree 87 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 7 9 2 -1.</_>
<_>
7 7 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.9505911991000175e-003</threshold>
<left_val>0.1159323006868362</left_val>
<right_val>-0.1279197037220001</right_val></_></_></trees>
<stage_threshold>-0.9769343137741089</stage_threshold>
<parent>20</parent>
<next>-1</next></_>
<_>
<!-- stage 22 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 11 9 1 -1.</_>
<_>
9 11 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0193955395370722</threshold>
<left_val>0.4747475087642670</left_val>
<right_val>-0.1172109022736549</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 10 2 10 -1.</_>
<_>
17 15 2 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0131189199164510</threshold>
<left_val>-0.2555212974548340</left_val>
<right_val>0.1637880057096481</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 10 2 10 -1.</_>
<_>
4 10 1 5 2.</_>
<_>
5 15 1 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.1606801571324468e-004</threshold>
<left_val>0.1945261955261231</left_val>
<right_val>-0.1744889020919800</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 3 3 12 -1.</_>
<_>
13 3 1 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0131841599941254</threshold>
<left_val>0.4418145120143890</left_val>
<right_val>-0.0900487527251244</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 3 4 6 -1.</_>
<_>
15 3 2 3 2.</_>
<_>
17 6 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.4657081123441458e-003</threshold>
<left_val>-0.1347709000110626</left_val>
<right_val>0.1805634051561356</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 8 3 3 -1.</_>
<_>
13 8 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.2980200164020061e-003</threshold>
<left_val>-0.0541649796068668</left_val>
<right_val>0.3603338003158569</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 14 2 4 -1.</_>
<_>
4 16 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.6879989998415112e-003</threshold>
<left_val>-0.1999794989824295</left_val>
<right_val>0.1202159970998764</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 16 1 3 -1.</_>
<_>
6 17 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.6039709812030196e-004</threshold>
<left_val>0.1052414029836655</left_val>
<right_val>-0.2411606013774872</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 1 2 3 -1.</_>
<_>
2 1 1 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.5276849735528231e-003</threshold>
<left_val>0.2813552916049957</left_val>
<right_val>-0.0689648166298866</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 2 4 1 -1.</_>
<_>
2 2 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.5033570602536201e-003</threshold>
<left_val>-0.0825195834040642</left_val>
<right_val>0.4071359038352966</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 17 12 3 -1.</_>
<_>
12 17 4 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.7337161377072334e-003</threshold>
<left_val>0.1972700953483582</left_val>
<right_val>-0.1171014010906220</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 16 6 4 -1.</_>
<_>
11 16 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0115571497008204</threshold>
<left_val>-0.5606111288070679</left_val>
<right_val>0.0681709572672844</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 6 3 6 -1.</_>
<_>
4 9 3 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0274457205086946</threshold>
<left_val>0.4971862137317658</left_val>
<right_val>-0.0623801499605179</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 2 12 9 -1.</_>
<_>
6 5 12 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0528257787227631</threshold>
<left_val>0.1692122071981430</left_val>
<right_val>-0.1309355050325394</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 0 14 20 -1.</_>
<_>
6 0 7 10 2.</_>
<_>
13 10 7 10 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.2984969913959503</threshold>
<left_val>-0.6464967131614685</left_val>
<right_val>0.0400768183171749</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 16 2 2 -1.</_>
<_>
15 16 1 1 2.</_>
<_>
16 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.6307269581593573e-004</threshold>
<left_val>0.2512794137001038</left_val>
<right_val>-0.0894948393106461</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 16 2 2 -1.</_>
<_>
15 16 1 1 2.</_>
<_>
16 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.3261709429789335e-004</threshold>
<left_val>-0.0868439897894859</left_val>
<right_val>0.2383197993040085</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 8 1 3 -1.</_>
<_>
19 9 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.3631360090803355e-004</threshold>
<left_val>0.1155446022748947</left_val>
<right_val>-0.1893634945154190</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 4 1 2 -1.</_>
<_>
13 5 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.0742209162563086e-003</threshold>
<left_val>-0.0485948510468006</left_val>
<right_val>0.5748599171638489</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 4 4 2 -1.</_>
<_>
0 5 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.0308889262378216e-003</threshold>
<left_val>-0.5412080883979797</left_val>
<right_val>0.0487437509000301</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 5 1 6 -1.</_>
<_>
19 7 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.2652270793914795e-003</threshold>
<left_val>0.0264945197850466</left_val>
<right_val>-0.6172845959663391</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 0 2 1 -1.</_>
<_>
17 0 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.0042760297656059e-004</threshold>
<left_val>-0.1176863014698029</left_val>
<right_val>0.1633386015892029</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 1 1 3 -1.</_>
<_>
13 2 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.6470040427520871e-003</threshold>
<left_val>-0.0599549189209938</left_val>
<right_val>0.3517970144748688</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 17 1 3 -1.</_>
<_>
17 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.5642538568936288e-004</threshold>
<left_val>-0.3442029953002930</left_val>
<right_val>0.0649482533335686</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 4 8 8 -1.</_>
<_>
5 4 4 4 2.</_>
<_>
9 8 4 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0309358704835176</threshold>
<left_val>0.1997970044612885</left_val>
<right_val>-0.0976936966180801</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 2 2 2 -1.</_>
<_>
1 2 1 1 2.</_>
<_>
2 3 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.3578772824257612e-004</threshold>
<left_val>-0.3148139119148254</left_val>
<right_val>0.0594250410795212</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 8 6 -1.</_>
<_>
0 0 4 3 2.</_>
<_>
4 3 4 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0118621801957488</threshold>
<left_val>0.2004369050264359</left_val>
<right_val>-0.0894475430250168</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 3 4 2 -1.</_>
<_>
6 4 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.1508930996060371e-003</threshold>
<left_val>-0.0390060618519783</left_val>
<right_val>0.5332716107368469</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 0 3 3 -1.</_>
<_>
1 1 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.0059191156178713e-003</threshold>
<left_val>-0.2846972048282623</left_val>
<right_val>0.0707236081361771</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 1 7 2 -1.</_>
<_>
6 2 7 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.6412389017641544e-003</threshold>
<left_val>-0.1066031977534294</left_val>
<right_val>0.2494480013847351</right_val></_></_>
<_>
<!-- tree 30 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 6 12 6 -1.</_>
<_>
6 6 4 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1346742957830429</threshold>
<left_val>0.4991008043289185</left_val>
<right_val>-0.0403322204947472</right_val></_></_>
<_>
<!-- tree 31 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 16 9 2 -1.</_>
<_>
4 16 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.2547659464180470e-003</threshold>
<left_val>0.1685169041156769</left_val>
<right_val>-0.1111928001046181</right_val></_></_>
<_>
<!-- tree 32 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 15 6 4 -1.</_>
<_>
9 15 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.3842289596796036e-003</threshold>
<left_val>0.0861394926905632</left_val>
<right_val>-0.2743177115917206</right_val></_></_>
<_>
<!-- tree 33 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 15 12 1 -1.</_>
<_>
12 15 6 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.3361168615520000e-003</threshold>
<left_val>0.2487521022558212</left_val>
<right_val>-0.0959191620349884</right_val></_></_>
<_>
<!-- tree 34 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 17 1 3 -1.</_>
<_>
17 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.4666912658140063e-004</threshold>
<left_val>0.0674315765500069</left_val>
<right_val>-0.3375408053398132</right_val></_></_>
<_>
<!-- tree 35 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 15 2 2 -1.</_>
<_>
17 15 1 1 2.</_>
<_>
18 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.2983769304119051e-004</threshold>
<left_val>-0.0839030519127846</left_val>
<right_val>0.2458409965038300</right_val></_></_>
<_>
<!-- tree 36 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 13 3 3 -1.</_>
<_>
3 14 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.7039071582257748e-003</threshold>
<left_val>0.0290793292224407</left_val>
<right_val>-0.6905593872070313</right_val></_></_>
<_>
<!-- tree 37 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 17 1 3 -1.</_>
<_>
10 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.0734888645820320e-005</threshold>
<left_val>-0.1569671928882599</left_val>
<right_val>0.1196542978286743</right_val></_></_>
<_>
<!-- tree 38 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 0 14 8 -1.</_>
<_>
11 0 7 8 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.2033555954694748</threshold>
<left_val>-0.6950634717941284</left_val>
<right_val>0.0275075193494558</right_val></_></_>
<_>
<!-- tree 39 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 0 12 2 -1.</_>
<_>
6 0 4 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.4939414411783218e-003</threshold>
<left_val>-0.0874493718147278</left_val>
<right_val>0.2396833002567291</right_val></_></_>
<_>
<!-- tree 40 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 0 4 3 -1.</_>
<_>
4 0 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.4055240210145712e-003</threshold>
<left_val>0.2115096002817154</left_val>
<right_val>-0.1314893066883087</right_val></_></_>
<_>
<!-- tree 41 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 1 1 2 -1.</_>
<_>
13 2 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.1342419747961685e-004</threshold>
<left_val>0.1523378938436508</left_val>
<right_val>-0.1272590011358261</right_val></_></_>
<_>
<!-- tree 42 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 5 3 6 -1.</_>
<_>
8 5 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0149922100827098</threshold>
<left_val>-0.0341279692947865</left_val>
<right_val>0.5062407255172730</right_val></_></_>
<_>
<!-- tree 43 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 2 2 2 -1.</_>
<_>
18 2 1 1 2.</_>
<_>
19 3 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.4068200774490833e-004</threshold>
<left_val>0.0487647503614426</left_val>
<right_val>-0.4022532105445862</right_val></_></_>
<_>
<!-- tree 44 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 1 2 14 -1.</_>
<_>
16 1 1 14 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.2459447868168354e-003</threshold>
<left_val>0.2155476063489914</left_val>
<right_val>-0.0871269926428795</right_val></_></_>
<_>
<!-- tree 45 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 6 2 2 -1.</_>
<_>
15 6 1 1 2.</_>
<_>
16 7 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.8655109498649836e-004</threshold>
<left_val>-0.0754187181591988</left_val>
<right_val>0.2640590965747833</right_val></_></_>
<_>
<!-- tree 46 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 1 6 3 -1.</_>
<_>
5 1 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0167514607310295</threshold>
<left_val>-0.6772903203964233</left_val>
<right_val>0.0329187288880348</right_val></_></_>
<_>
<!-- tree 47 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 16 2 2 -1.</_>
<_>
7 16 1 1 2.</_>
<_>
8 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.6301678735762835e-004</threshold>
<left_val>0.2272586971521378</left_val>
<right_val>-0.0905348733067513</right_val></_></_>
<_>
<!-- tree 48 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 17 2 2 -1.</_>
<_>
5 17 1 1 2.</_>
<_>
6 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.3398610432632267e-004</threshold>
<left_val>0.0558943785727024</left_val>
<right_val>-0.3559266924858093</right_val></_></_>
<_>
<!-- tree 49 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 10 6 10 -1.</_>
<_>
11 10 2 10 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0201501492410898</threshold>
<left_val>0.1916276067495346</left_val>
<right_val>-0.0949299708008766</right_val></_></_>
<_>
<!-- tree 50 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 17 6 3 -1.</_>
<_>
12 17 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0144521296024323</threshold>
<left_val>-0.6851034164428711</left_val>
<right_val>0.0254221707582474</right_val></_></_>
<_>
<!-- tree 51 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 5 2 10 -1.</_>
<_>
14 10 2 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0211497396230698</threshold>
<left_val>0.3753319084644318</left_val>
<right_val>-0.0514965802431107</right_val></_></_>
<_>
<!-- tree 52 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 12 6 2 -1.</_>
<_>
11 13 6 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0211377702653408</threshold>
<left_val>0.0290830805897713</left_val>
<right_val>-0.8943036794662476</right_val></_></_>
<_>
<!-- tree 53 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 1 1 3 -1.</_>
<_>
8 2 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.1524349683895707e-003</threshold>
<left_val>-0.0696949362754822</left_val>
<right_val>0.2729980051517487</right_val></_></_>
<_>
<!-- tree 54 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 15 2 2 -1.</_>
<_>
12 15 1 1 2.</_>
<_>
13 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.9070580310653895e-004</threshold>
<left_val>0.1822811961174011</left_val>
<right_val>-0.0983670726418495</right_val></_></_>
<_>
<!-- tree 55 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 8 6 4 -1.</_>
<_>
6 8 3 2 2.</_>
<_>
9 10 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0363496318459511</threshold>
<left_val>-0.8369309902191162</left_val>
<right_val>0.0250557605177164</right_val></_></_>
<_>
<!-- tree 56 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 5 3 5 -1.</_>
<_>
8 5 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.0632075443863869e-003</threshold>
<left_val>0.4146350026130676</left_val>
<right_val>-0.0544134490191936</right_val></_></_>
<_>
<!-- tree 57 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 5 7 3 -1.</_>
<_>
0 6 7 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.0535490475594997e-003</threshold>
<left_val>-0.1975031048059464</left_val>
<right_val>0.1050689965486527</right_val></_></_></trees>
<stage_threshold>-1.0129359960556030</stage_threshold>
<parent>21</parent>
<next>-1</next></_>
<_>
<!-- stage 23 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 9 6 6 -1.</_>
<_>
9 9 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0227170195430517</threshold>
<left_val>0.2428855001926422</left_val>
<right_val>-0.1474552005529404</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 7 8 8 -1.</_>
<_>
5 11 8 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0255059506744146</threshold>
<left_val>-0.2855173945426941</left_val>
<right_val>0.1083720996975899</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 9 2 6 -1.</_>
<_>
4 9 1 3 2.</_>
<_>
5 12 1 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.6640091091394424e-003</threshold>
<left_val>0.2927573025226593</left_val>
<right_val>-0.1037271022796631</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 11 6 1 -1.</_>
<_>
12 11 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.8115289062261581e-003</threshold>
<left_val>0.2142689973115921</left_val>
<right_val>-0.1381113976240158</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 6 6 11 -1.</_>
<_>
15 6 2 11 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0167326908558607</threshold>
<left_val>0.2655026018619537</left_val>
<right_val>-0.0439113304018974</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 17 2 2 -1.</_>
<_>
8 17 1 1 2.</_>
<_>
9 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.9277010839432478e-004</threshold>
<left_val>0.0211045593023300</left_val>
<right_val>-0.4297136068344116</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 12 12 1 -1.</_>
<_>
8 12 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0366911105811596</threshold>
<left_val>0.5399242043495178</left_val>
<right_val>-0.0436488017439842</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 17 3 2 -1.</_>
<_>
11 18 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.2615970335900784e-003</threshold>
<left_val>-0.1293386965990067</left_val>
<right_val>0.1663877069950104</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 17 6 1 -1.</_>
<_>
10 17 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.4106856957077980e-003</threshold>
<left_val>-0.9469841122627258</left_val>
<right_val>0.0214658491313457</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 1 14 6 -1.</_>
<_>
4 3 14 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0649027228355408</threshold>
<left_val>-0.0717277601361275</left_val>
<right_val>0.2661347985267639</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 2 2 12 -1.</_>
<_>
14 8 2 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0303050000220537</threshold>
<left_val>-0.0827824920415878</left_val>
<right_val>0.2769432067871094</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 13 3 2 -1.</_>
<_>
12 14 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.5875340215861797e-003</threshold>
<left_val>-0.1296616941690445</left_val>
<right_val>0.1775663048028946</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 1 6 1 -1.</_>
<_>
8 1 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.0240451022982597e-003</threshold>
<left_val>-0.6424317955970764</left_val>
<right_val>0.0399432107806206</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 6 6 1 -1.</_>
<_>
12 6 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.0099769569933414e-003</threshold>
<left_val>0.1417661011219025</left_val>
<right_val>-0.1165997013449669</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 19 2 1 -1.</_>
<_>
4 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.1179071558872238e-005</threshold>
<left_val>0.1568766981363297</left_val>
<right_val>-0.1112734004855156</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 16 2 2 -1.</_>
<_>
18 16 1 1 2.</_>
<_>
19 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.7293151146732271e-004</threshold>
<left_val>-0.3355455994606018</left_val>
<right_val>0.0459777303040028</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 11 3 7 -1.</_>
<_>
17 11 1 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.7178079579025507e-003</threshold>
<left_val>0.1695290952920914</left_val>
<right_val>-0.1057806983590126</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 5 1 6 -1.</_>
<_>
19 8 1 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0133331697434187</threshold>
<left_val>-0.5825781226158142</left_val>
<right_val>0.0309784300625324</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 8 4 3 -1.</_>
<_>
9 9 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.8783430568873882e-003</threshold>
<left_val>0.1426687985658646</left_val>
<right_val>-0.1113125979900360</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 8 4 4 -1.</_>
<_>
16 8 2 2 2.</_>
<_>
18 10 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.5765981562435627e-003</threshold>
<left_val>0.2756136059761047</left_val>
<right_val>-0.0531003288924694</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 8 2 2 -1.</_>
<_>
2 8 1 1 2.</_>
<_>
3 9 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.7210381277836859e-005</threshold>
<left_val>0.1324024051427841</left_val>
<right_val>-0.1116779968142510</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 5 6 4 -1.</_>
<_>
3 5 3 2 2.</_>
<_>
6 7 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0219685398042202</threshold>
<left_val>-0.0269681606441736</left_val>
<right_val>0.5006716847419739</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 3 8 16 -1.</_>
<_>
2 3 4 8 2.</_>
<_>
6 11 4 8 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0274457503110170</threshold>
<left_val>-0.2408674061298370</left_val>
<right_val>0.0604782700538635</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 17 1 3 -1.</_>
<_>
17 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.8305849456228316e-005</threshold>
<left_val>-0.1333488970994949</left_val>
<right_val>0.1012346968054771</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 2 8 11 -1.</_>
<_>
11 2 4 11 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0701906830072403</threshold>
<left_val>-0.0548637807369232</left_val>
<right_val>0.2480994015932083</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 3 6 14 -1.</_>
<_>
16 3 3 14 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0719021335244179</threshold>
<left_val>-0.3784669041633606</left_val>
<right_val>0.0422109998762608</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 9 18 2 -1.</_>
<_>
6 9 6 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1078097969293594</threshold>
<left_val>-0.3748658895492554</left_val>
<right_val>0.0428334400057793</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 10 14 3 -1.</_>
<_>
6 11 14 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.4364200178533792e-003</threshold>
<left_val>0.0804763585329056</left_val>
<right_val>-0.1726378947496414</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 9 9 3 -1.</_>
<_>
13 9 3 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0682891905307770</threshold>
<left_val>-0.0355957895517349</left_val>
<right_val>0.4076131880283356</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 5 4 6 -1.</_>
<_>
3 5 2 3 2.</_>
<_>
5 8 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.8037179298698902e-003</threshold>
<left_val>0.1923379004001617</left_val>
<right_val>-0.0823680236935616</right_val></_></_>
<_>
<!-- tree 30 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 7 3 7 -1.</_>
<_>
4 7 1 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.6193489581346512e-004</threshold>
<left_val>0.1305712014436722</left_val>
<right_val>-0.1435514986515045</right_val></_></_>
<_>
<!-- tree 31 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 8 11 6 -1.</_>
<_>
2 10 11 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0582766495645046</threshold>
<left_val>-0.3012543916702271</left_val>
<right_val>0.0528196506202221</right_val></_></_>
<_>
<!-- tree 32 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 9 6 3 -1.</_>
<_>
8 10 6 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.1205718666315079e-003</threshold>
<left_val>0.2204390019178391</left_val>
<right_val>-0.0756917521357536</right_val></_></_>
<_>
<!-- tree 33 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 3 3 11 -1.</_>
<_>
4 3 1 11 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0135943097993732</threshold>
<left_val>-0.3904936015605927</left_val>
<right_val>0.0418571084737778</right_val></_></_>
<_>
<!-- tree 34 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 19 6 1 -1.</_>
<_>
3 19 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.3626200379803777e-003</threshold>
<left_val>-0.0953634232282639</left_val>
<right_val>0.1497032046318054</right_val></_></_>
<_>
<!-- tree 35 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 18 1 2 -1.</_>
<_>
18 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.5074219845701009e-004</threshold>
<left_val>-0.2394558042287827</left_val>
<right_val>0.0647983327507973</right_val></_></_>
<_>
<!-- tree 36 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 0 12 6 -1.</_>
<_>
8 0 6 3 2.</_>
<_>
14 3 6 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0774142593145370</threshold>
<left_val>0.5594198107719421</left_val>
<right_val>-0.0245168805122375</right_val></_></_>
<_>
<!-- tree 37 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 5 1 3 -1.</_>
<_>
19 6 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.2117872554808855e-004</threshold>
<left_val>0.0549288615584373</left_val>
<right_val>-0.2793481051921845</right_val></_></_>
<_>
<!-- tree 38 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 8 2 1 -1.</_>
<_>
6 8 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.0250780032947659e-003</threshold>
<left_val>-0.0621673092246056</left_val>
<right_val>0.2497636973857880</right_val></_></_>
<_>
<!-- tree 39 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 11 2 1 -1.</_>
<_>
14 11 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.1174750812351704e-004</threshold>
<left_val>0.2343793958425522</left_val>
<right_val>-0.0657258108258247</right_val></_></_>
<_>
<!-- tree 40 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 6 15 13 -1.</_>
<_>
8 6 5 13 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0834310203790665</threshold>
<left_val>0.0509548000991344</left_val>
<right_val>-0.3102098107337952</right_val></_></_>
<_>
<!-- tree 41 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 3 6 2 -1.</_>
<_>
6 3 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.2014456167817116e-003</threshold>
<left_val>-0.3924253880977631</left_val>
<right_val>0.0329269506037235</right_val></_></_>
<_>
<!-- tree 42 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 18 1 2 -1.</_>
<_>
0 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.9086650465615094e-004</threshold>
<left_val>-0.3103975057601929</left_val>
<right_val>0.0497118197381496</right_val></_></_>
<_>
<!-- tree 43 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 8 2 6 -1.</_>
<_>
8 8 1 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.7576898038387299e-003</threshold>
<left_val>-0.0440407507121563</left_val>
<right_val>0.3643135130405426</right_val></_></_>
<_>
<!-- tree 44 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 0 6 19 -1.</_>
<_>
5 0 2 19 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1246609017252922</threshold>
<left_val>-0.8195707798004150</left_val>
<right_val>0.0191506408154964</right_val></_></_>
<_>
<!-- tree 45 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 1 6 5 -1.</_>
<_>
5 1 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0132425501942635</threshold>
<left_val>0.0389888398349285</left_val>
<right_val>-0.3323068022727966</right_val></_></_>
<_>
<!-- tree 46 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 14 3 6 -1.</_>
<_>
17 16 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.6770128905773163e-003</threshold>
<left_val>-0.3579013943672180</left_val>
<right_val>0.0404602102935314</right_val></_></_>
<_>
<!-- tree 47 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 13 2 6 -1.</_>
<_>
18 13 1 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.7479929849505424e-003</threshold>
<left_val>0.2525390088558197</left_val>
<right_val>-0.0564278215169907</right_val></_></_>
<_>
<!-- tree 48 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 18 2 2 -1.</_>
<_>
18 18 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.2659651525318623e-004</threshold>
<left_val>-0.0719886571168900</left_val>
<right_val>0.2278047949075699</right_val></_></_>
<_>
<!-- tree 49 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 14 9 4 -1.</_>
<_>
14 14 3 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0501534007489681</threshold>
<left_val>-0.6303647160530090</left_val>
<right_val>0.0274620503187180</right_val></_></_>
<_>
<!-- tree 50 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 8 4 6 -1.</_>
<_>
15 8 2 3 2.</_>
<_>
17 11 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.4203149415552616e-003</threshold>
<left_val>-0.0666107162833214</left_val>
<right_val>0.2778733968734741</right_val></_></_>
<_>
<!-- tree 51 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 16 1 3 -1.</_>
<_>
1 17 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.7951780511066318e-004</threshold>
<left_val>-0.3632706105709076</left_val>
<right_val>0.0427954308688641</right_val></_></_>
<_>
<!-- tree 52 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 0 3 14 -1.</_>
<_>
8 0 1 14 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.9305750029161572e-003</threshold>
<left_val>0.1419623047113419</left_val>
<right_val>-0.1075998023152351</right_val></_></_>
<_>
<!-- tree 53 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 0 2 1 -1.</_>
<_>
13 0 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.8132671033963561e-004</threshold>
<left_val>0.2159176021814346</left_val>
<right_val>-0.0702026635408401</right_val></_></_>
<_>
<!-- tree 54 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 9 6 5 -1.</_>
<_>
10 9 3 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0709903463721275</threshold>
<left_val>0.4526660144329071</left_val>
<right_val>-0.0407504811882973</right_val></_></_>
<_>
<!-- tree 55 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 5 4 9 -1.</_>
<_>
17 5 2 9 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0533680804073811</threshold>
<left_val>-0.6767405867576599</left_val>
<right_val>0.0192883405834436</right_val></_></_>
<_>
<!-- tree 56 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 0 6 6 -1.</_>
<_>
13 0 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0200648494064808</threshold>
<left_val>-0.4336543083190918</left_val>
<right_val>0.0318532884120941</right_val></_></_>
<_>
<!-- tree 57 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 15 2 2 -1.</_>
<_>
16 15 1 1 2.</_>
<_>
17 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.1976360110566020e-003</threshold>
<left_val>-0.0265598706901073</left_val>
<right_val>0.5079718232154846</right_val></_></_>
<_>
<!-- tree 58 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 15 2 2 -1.</_>
<_>
16 15 1 1 2.</_>
<_>
17 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.2697300300933421e-004</threshold>
<left_val>0.1801259964704514</left_val>
<right_val>-0.0836065486073494</right_val></_></_>
<_>
<!-- tree 59 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 2 2 18 -1.</_>
<_>
13 11 2 9 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0152626996859908</threshold>
<left_val>-0.2023892998695374</left_val>
<right_val>0.0674220174551010</right_val></_></_>
<_>
<!-- tree 60 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 4 8 10 -1.</_>
<_>
8 9 8 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.2081176936626434</threshold>
<left_val>0.6694386005401611</left_val>
<right_val>-0.0224521104246378</right_val></_></_>
<_>
<!-- tree 61 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 3 2 3 -1.</_>
<_>
8 4 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.5514369588345289e-003</threshold>
<left_val>-0.0751218423247337</left_val>
<right_val>0.1732691973447800</right_val></_></_>
<_>
<!-- tree 62 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 1 6 9 -1.</_>
<_>
11 4 6 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0529240109026432</threshold>
<left_val>0.2499251961708069</left_val>
<right_val>-0.0628791674971581</right_val></_></_>
<_>
<!-- tree 63 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 4 5 6 -1.</_>
<_>
15 6 5 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0216488502919674</threshold>
<left_val>-0.2919428050518036</left_val>
<right_val>0.0526144914329052</right_val></_></_>
<_>
<!-- tree 64 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 18 2 2 -1.</_>
<_>
12 18 1 1 2.</_>
<_>
13 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.2905069636180997e-004</threshold>
<left_val>-0.2211730033159256</left_val>
<right_val>0.0631683394312859</right_val></_></_>
<_>
<!-- tree 65 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 17 1 3 -1.</_>
<_>
1 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.0170070608146489e-005</threshold>
<left_val>-0.1151070967316628</left_val>
<right_val>0.1161144003272057</right_val></_></_>
<_>
<!-- tree 66 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 19 2 1 -1.</_>
<_>
13 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.6416069411206990e-004</threshold>
<left_val>0.1587152034044266</left_val>
<right_val>-0.0826006010174751</right_val></_></_>
<_>
<!-- tree 67 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 10 6 6 -1.</_>
<_>
10 10 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0120032895356417</threshold>
<left_val>0.1221809014678001</left_val>
<right_val>-0.1122969985008240</right_val></_></_>
<_>
<!-- tree 68 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 2 6 5 -1.</_>
<_>
16 2 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0177841000258923</threshold>
<left_val>-0.3507278859615326</left_val>
<right_val>0.0313419215381145</right_val></_></_>
<_>
<!-- tree 69 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 5 2 6 -1.</_>
<_>
9 7 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.3457582145929337e-003</threshold>
<left_val>0.1307806968688965</left_val>
<right_val>-0.1057441011071205</right_val></_></_>
<_>
<!-- tree 70 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 15 2 2 -1.</_>
<_>
2 15 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.9523242311552167e-004</threshold>
<left_val>0.1720467060804367</left_val>
<right_val>-0.0860019922256470</right_val></_></_>
<_>
<!-- tree 71 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 17 1 3 -1.</_>
<_>
18 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.1029590172693133e-004</threshold>
<left_val>-0.2843317091464996</left_val>
<right_val>0.0518171191215515</right_val></_></_>
<_>
<!-- tree 72 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 14 4 6 -1.</_>
<_>
10 16 4 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0170537102967501</threshold>
<left_val>0.3924242854118347</left_val>
<right_val>-0.0401432700455189</right_val></_></_>
<_>
<!-- tree 73 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 7 3 2 -1.</_>
<_>
10 7 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.6504959464073181e-003</threshold>
<left_val>-0.0318375602364540</left_val>
<right_val>0.4123769998550415</right_val></_></_>
<_>
<!-- tree 74 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 9 6 2 -1.</_>
<_>
6 9 3 1 2.</_>
<_>
9 10 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0103587601333857</threshold>
<left_val>-0.5699319839477539</left_val>
<right_val>0.0292483791708946</right_val></_></_>
<_>
<!-- tree 75 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 2 1 12 -1.</_>
<_>
0 6 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0221962407231331</threshold>
<left_val>-0.4560528993606567</left_val>
<right_val>0.0262859892100096</right_val></_></_>
<_>
<!-- tree 76 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 0 15 1 -1.</_>
<_>
9 0 5 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.0536029525101185e-003</threshold>
<left_val>0.1599832028150559</left_val>
<right_val>-0.0915948599576950</right_val></_></_>
<_>
<!-- tree 77 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 0 8 2 -1.</_>
<_>
9 0 4 1 2.</_>
<_>
13 1 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.7094299700111151e-004</threshold>
<left_val>-0.1407632976770401</left_val>
<right_val>0.1028741970658302</right_val></_></_>
<_>
<!-- tree 78 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 2 8 1 -1.</_>
<_>
16 2 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.2152599412947893e-003</threshold>
<left_val>0.1659359931945801</left_val>
<right_val>-0.0852739885449409</right_val></_></_>
<_>
<!-- tree 79 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 1 10 6 -1.</_>
<_>
7 3 10 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0280848909169436</threshold>
<left_val>0.2702234089374542</left_val>
<right_val>-0.0558738112449646</right_val></_></_>
<_>
<!-- tree 80 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 6 2 3 -1.</_>
<_>
18 7 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.1515151020139456e-003</threshold>
<left_val>0.0424728915095329</left_val>
<right_val>-0.3200584948062897</right_val></_></_>
<_>
<!-- tree 81 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 12 2 2 -1.</_>
<_>
4 12 1 1 2.</_>
<_>
5 13 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.9733829433098435e-004</threshold>
<left_val>0.1617716997861862</left_val>
<right_val>-0.0851155892014503</right_val></_></_>
<_>
<!-- tree 82 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 6 6 2 -1.</_>
<_>
8 6 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0166947804391384</threshold>
<left_val>-0.4285877048969269</left_val>
<right_val>0.0305416099727154</right_val></_></_>
<_>
<!-- tree 83 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 9 9 6 -1.</_>
<_>
3 9 3 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.1198299005627632</threshold>
<left_val>-0.0162772908806801</left_val>
<right_val>0.7984678149223328</right_val></_></_>
<_>
<!-- tree 84 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 18 2 2 -1.</_>
<_>
18 18 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.5499420482665300e-004</threshold>
<left_val>0.1593593955039978</left_val>
<right_val>-0.0832728818058968</right_val></_></_>
<_>
<!-- tree 85 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 2 6 16 -1.</_>
<_>
13 2 2 16 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0182262696325779</threshold>
<left_val>0.1952728033065796</left_val>
<right_val>-0.0739398896694183</right_val></_></_>
<_>
<!-- tree 86 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 4 15 13 -1.</_>
<_>
7 4 5 13 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.0238600922748446e-004</threshold>
<left_val>0.0791018083691597</left_val>
<right_val>-0.2080612927675247</right_val></_></_>
<_>
<!-- tree 87 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 2 3 10 -1.</_>
<_>
17 2 1 10 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.0892060496844351e-004</threshold>
<left_val>0.1003663018345833</left_val>
<right_val>-0.1512821018695831</right_val></_></_>
<_>
<!-- tree 88 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 10 2 1 -1.</_>
<_>
7 10 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.5368112670257688e-004</threshold>
<left_val>-0.0730116665363312</left_val>
<right_val>0.2175202071666718</right_val></_></_>
<_>
<!-- tree 89 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 1 18 16 -1.</_>
<_>
10 1 9 16 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.4308179914951325</threshold>
<left_val>-0.0274506993591785</left_val>
<right_val>0.5706158280372620</right_val></_></_>
<_>
<!-- tree 90 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 4 3 15 -1.</_>
<_>
15 4 1 15 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.3564831614494324e-004</threshold>
<left_val>0.1158754006028175</left_val>
<right_val>-0.1279056072235107</right_val></_></_>
<_>
<!-- tree 91 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 13 1 2 -1.</_>
<_>
19 14 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.4430730263702571e-005</threshold>
<left_val>-0.1681662946939468</left_val>
<right_val>0.0804499834775925</right_val></_></_>
<_>
<!-- tree 92 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 6 5 8 -1.</_>
<_>
2 10 5 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0553456507623196</threshold>
<left_val>0.4533894956111908</left_val>
<right_val>-0.0312227793037891</right_val></_></_></trees>
<stage_threshold>-0.9774749279022217</stage_threshold>
<parent>22</parent>
<next>-1</next></_></stages></haarcascade_frontaleye>
</opencv_storage>
This file has been truncated, but you can view the full file.
<?xml version="1.0"?>
<!--
Tree-based 20x20 frontal eye detector with better handling of eyeglasses.
Created by Shameem Hameed (http://umich.edu/~shameem)
////////////////////////////////////////////////////////////////////////////////////////
IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
By downloading, copying, installing or using the software you agree to this license.
If you do not agree to this license, do not download, install,
copy or use the software.
Intel License Agreement
For Open Source Computer Vision Library
Copyright (C) 2000, Intel Corporation, all rights reserved.
Third party copyrights are property of their respective owners.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistribution's of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistribution's in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* The name of Intel Corporation may not be used to endorse or promote products
derived from this software without specific prior written permission.
This software is provided by the copyright holders and contributors "as is" and
any express or implied warranties, including, but not limited to, the implied
warranties of merchantability and fitness for a particular purpose are disclaimed.
In no event shall the Intel Corporation or contributors be liable for any direct,
indirect, incidental, special, exemplary, or consequential damages
(including, but not limited to, procurement of substitute goods or services;
loss of use, data, or profits; or business interruption) however caused
and on any theory of liability, whether in contract, strict liability,
or tort (including negligence or otherwise) arising in any way out of
the use of this software, even if advised of the possibility of such damage.
-->
<opencv_storage>
<haarcascade_eye_tree type_id="opencv-haar-classifier">
<size>
20 20</size>
<stages>
<_>
<!-- stage 0 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 7 12 1 -1.</_>
<_>
8 7 6 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0269871093332767</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 7 8 6 -1.</_>
<_>
6 7 4 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0506705306470394</threshold>
<left_val>-0.8039547204971314</left_val>
<right_val>0.6049140095710754</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 3 12 12 -1.</_>
<_>
9 7 4 4 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1291539072990418</threshold>
<left_val>0.9054458141326904</left_val>
<right_val>0.0440708100795746</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 8 12 12 -1.</_>
<_>
1 14 12 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0888277366757393</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 9 9 5 -1.</_>
<_>
8 9 3 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0203982405364513</threshold>
<left_val>0.7921888232231140</left_val>
<right_val>0.0406922996044159</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 7 9 6 -1.</_>
<_>
8 7 3 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0612617582082748</threshold>
<left_val>0.4258536100387573</left_val>
<right_val>-0.7032520771026611</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 0 18 15 -1.</_>
<_>
2 5 18 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.2049081027507782</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 1 9 9 -1.</_>
<_>
7 4 9 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0949330478906631</threshold>
<left_val>-0.4401764869689941</left_val>
<right_val>0.5364052057266235</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 19 3 1 -1.</_>
<_>
9 19 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.2091030366718769e-003</threshold>
<left_val>0.6877645850181580</left_val>
<right_val>-0.5587934851646423</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 17 2 2 -1.</_>
<_>
5 17 1 1 2.</_>
<_>
6 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.2227972345426679e-004</threshold>
<left_node>1</left_node>
<right_val>-0.7268440127372742</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 17 2 2 -1.</_>
<_>
5 17 1 1 2.</_>
<_>
6 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.2678289143368602e-004</threshold>
<left_val>-0.5802800059318543</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
10 18 3 1 -1.</_>
<_>
11 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.8421510513871908e-004</threshold>
<left_val>0.5617753267288208</left_val>
<right_val>-0.2983418107032776</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 7 9 7 -1.</_>
<_>
10 7 3 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0511505901813507</threshold>
<left_val>0.5984076261520386</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 8 12 5 -1.</_>
<_>
9 8 6 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0616220608353615</threshold>
<left_node>2</left_node>
<right_val>0.7474393248558044</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
13 1 6 7 -1.</_>
<_>
13 1 3 7 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0728734731674194</threshold>
<left_val>-0.4970377981662750</left_val>
<right_val>0.2812925875186920</right_val></_></_></trees>
<stage_threshold>-1.6473180055618286</stage_threshold>
<parent>-1</parent>
<next>-1</next></_>
<_>
<!-- stage 1 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 2 12 15 -1.</_>
<_>
9 7 4 5 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.4199487864971161</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 5 14 1 -1.</_>
<_>
6 5 7 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0561862885951996</threshold>
<left_val>0.2758620083332062</left_val>
<right_val>-0.6462321877479553</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
9 9 10 1 -1.</_>
<_>
9 9 5 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0237111095339060</threshold>
<left_val>0.8524125218391419</left_val>
<right_val>8.3703370764851570e-003</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 9 9 3 -1.</_>
<_>
5 9 3 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0405234396457672</threshold>
<left_node>1</left_node>
<right_val>0.7427021861076355</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 8 20 12 -1.</_>
<_>
0 14 20 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.2738890051841736</threshold>
<left_val>-0.4928669035434723</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 5 4 13 -1.</_>
<_>
2 5 2 13 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0142938001081347</threshold>
<left_val>0.7178478837013245</left_val>
<right_val>-0.0422239787876606</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 18 3 2 -1.</_>
<_>
12 18 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.1144729107618332e-003</threshold>
<left_val>-0.8019660115242004</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
11 18 3 1 -1.</_>
<_>
12 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.0659949621185660e-003</threshold>
<left_node>2</left_node>
<right_val>-0.6602591276168823</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
11 19 3 1 -1.</_>
<_>
12 19 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.0812469990924001e-003</threshold>
<left_val>0.4791637063026428</left_val>
<right_val>-0.5164529085159302</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 9 9 3 -1.</_>
<_>
13 9 3 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0301982890814543</threshold>
<left_node>1</left_node>
<right_val>0.5132756233215332</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 8 8 7 -1.</_>
<_>
7 8 4 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0405695512890816</threshold>
<left_node>2</left_node>
<right_val>0.6664149761199951</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 6 9 8 -1.</_>
<_>
11 6 3 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0706797391176224</threshold>
<left_val>-0.4529865980148315</left_val>
<right_val>0.5548071861267090</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 18 2 2 -1.</_>
<_>
4 18 1 1 2.</_>
<_>
5 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.8928138827905059e-004</threshold>
<left_val>-0.7252629995346069</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 18 2 2 -1.</_>
<_>
4 18 1 1 2.</_>
<_>
5 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.0574717139825225e-004</threshold>
<left_node>2</left_node>
<right_val>-0.5647987127304077</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
7 6 8 14 -1.</_>
<_>
9 6 4 14 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0209765601903200</threshold>
<left_val>0.6999353766441345</left_val>
<right_val>0.0685004666447639</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 13 4 3 -1.</_>
<_>
15 14 4 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0127949602901936</threshold>
<left_node>1</left_node>
<right_val>-0.8640956878662109</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 13 4 2 -1.</_>
<_>
16 13 2 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-8.1120636314153671e-003</threshold>
<left_val>0.4444836080074310</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 6 6 14 -1.</_>
<_>
7 6 2 14 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0155065301805735</threshold>
<left_val>0.3667531013488770</left_val>
<right_val>-0.2918907105922699</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 7 8 11 -1.</_>
<_>
2 7 4 11 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0129156503826380</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 7 8 7 -1.</_>
<_>
2 7 4 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.6297221928834915e-003</threshold>
<left_val>-0.4756678044795990</left_val>
<right_val>0.1035035029053688</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
2 16 3 1 -1.</_>
<_>
3 17 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-3.6532930098474026e-003</threshold>
<left_val>-0.6172305941581726</left_val>
<right_val>0.5438253283500671</right_val></_></_></trees>
<stage_threshold>-1.4257860183715820</stage_threshold>
<parent>0</parent>
<next>-1</next></_>
<_>
<!-- stage 2 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 0 15 18 -1.</_>
<_>
8 6 5 6 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.7873197197914124</threshold>
<left_val>0.7126883864402771</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 6 20 14 -1.</_>
<_>
0 13 20 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.1690800935029984</threshold>
<left_val>-0.7190899848937988</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 7 9 7 -1.</_>
<_>
9 7 3 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0403696894645691</threshold>
<left_val>0.4414893090724945</left_val>
<right_val>-0.4225192964076996</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 9 6 2 -1.</_>
<_>
5 9 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0191323608160019</threshold>
<left_node>1</left_node>
<right_val>0.6918622851371765</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
17 16 2 2 -1.</_>
<_>
17 16 1 1 2.</_>
<_>
18 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.4184539951384068e-004</threshold>
<left_node>2</left_node>
<right_val>-0.7611696720123291</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
17 16 2 2 -1.</_>
<_>
17 16 1 1 2.</_>
<_>
18 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.8941037645563483e-004</threshold>
<left_val>-0.6814042925834656</left_val>
<right_val>0.1600991934537888</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 8 6 5 -1.</_>
<_>
16 8 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.1503049694001675e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 18 4 2 -1.</_>
<_>
16 19 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.3156129755079746e-003</threshold>
<left_val>-0.5591660737991333</left_val>
<right_val>0.5128449797630310</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 8 9 12 -1.</_>
<_>
11 8 3 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0415212698280811</threshold>
<left_val>0.2442256957292557</left_val>
<right_val>-0.4688340127468109</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 18 3 1 -1.</_>
<_>
9 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.1200548922643065e-004</threshold>
<left_node>1</left_node>
<right_val>-0.6952788829803467</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 18 3 2 -1.</_>
<_>
9 18 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.5798299573361874e-003</threshold>
<left_val>-0.6350964903831482</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 8 4 11 -1.</_>
<_>
2 8 2 11 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0115736499428749</threshold>
<left_val>0.6468638181686401</left_val>
<right_val>6.9198559504002333e-004</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 0 10 1 -1.</_>
<_>
15 0 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.1843519061803818e-003</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
13 1 3 3 -1.</_>
<_>
14 1 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.9345690272748470e-003</threshold>
<left_val>0.4563289880752564</left_val>
<right_val>-0.5884143710136414</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
2 8 12 12 -1.</_>
<_>
6 8 4 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0587881505489349</threshold>
<left_val>0.2670420110225678</left_val>
<right_val>-0.3834899067878723</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 17 1 3 -1.</_>
<_>
18 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.5392808280885220e-004</threshold>
<left_val>-0.4891336858272553</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
18 18 1 2 -1.</_>
<_>
18 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.3035060409456491e-004</threshold>
<left_val>-0.3842155039310455</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 10 6 5 -1.</_>
<_>
10 10 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.8775108084082603e-003</threshold>
<left_val>0.6684569716453552</left_val>
<right_val>0.0931582599878311</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 17 3 2 -1.</_>
<_>
14 17 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.6710379859432578e-003</threshold>
<left_node>1</left_node>
<right_val>-0.6036937236785889</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 4 6 12 -1.</_>
<_>
0 8 6 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.4162790030241013e-003</threshold>
<left_node>2</left_node>
<right_val>-0.3041876852512360</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 8 5 4 -1.</_>
<_>
0 9 5 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.7876187860965729e-003</threshold>
<left_val>0.3969906866550446</left_val>
<right_val>-0.6668758988380432</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 6 4 6 -1.</_>
<_>
14 7 2 6 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0129167800769210</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 2 3 2 -1.</_>
<_>
5 2 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.0156269203871489e-003</threshold>
<left_val>-0.7123972773551941</left_val>
<right_val>0.4625298976898193</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
11 2 8 17 -1.</_>
<_>
13 2 4 17 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0197859406471252</threshold>
<left_val>0.2833831906318665</left_val>
<right_val>-0.3531793057918549</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 0 3 3 -1.</_>
<_>
16 0 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.3207770902663469e-003</threshold>
<left_node>1</left_node>
<right_val>-0.7329139709472656</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
10 5 9 13 -1.</_>
<_>
13 5 3 13 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0296062398701906</threshold>
<left_node>2</left_node>
<right_val>0.4953075945377350</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 8 8 6 -1.</_>
<_>
7 8 4 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0446147881448269</threshold>
<left_val>-0.1950280964374542</left_val>
<right_val>0.7981641888618469</right_val></_></_></trees>
<stage_threshold>-1.4711019992828369</stage_threshold>
<parent>1</parent>
<next>-1</next></_>
<_>
<!-- stage 3 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 1 15 18 -1.</_>
<_>
8 7 5 6 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.9236614108085632</threshold>
<left_val>0.7691580057144165</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 7 9 8 -1.</_>
<_>
9 7 3 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0481939390301704</threshold>
<left_node>2</left_node>
<right_val>-0.5136122703552246</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 6 20 14 -1.</_>
<_>
0 13 20 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.2866987884044647</threshold>
<left_val>-0.2967190146446228</left_val>
<right_val>0.6202818751335144</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 7 6 7 -1.</_>
<_>
3 7 2 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0130381602793932</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
9 19 3 1 -1.</_>
<_>
10 19 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.4749659458175302e-003</threshold>
<left_val>-0.7129424810409546</left_val>
<right_val>0.5911517739295960</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
4 6 9 7 -1.</_>
<_>
7 6 3 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0469217486679554</threshold>
<left_val>0.3130356073379517</left_val>
<right_val>-0.3674969077110291</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 10 1 10 -1.</_>
<_>
18 15 1 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.4459899868816137e-003</threshold>
<left_val>-0.4693000018596649</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
12 16 2 4 -1.</_>
<_>
12 16 1 2 2.</_>
<_>
13 18 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.5321498978883028e-003</threshold>
<left_val>-0.7745016217231751</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
12 19 4 1 -1.</_>
<_>
13 19 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.4651260571554303e-003</threshold>
<left_val>0.3641478121280670</left_val>
<right_val>-0.5744588971138001</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 5 6 15 -1.</_>
<_>
11 5 2 15 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0113074202090502</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
10 18 4 1 -1.</_>
<_>
11 18 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.2048849603161216e-003</threshold>
<left_val>-0.5572764873504639</left_val>
<right_val>0.4787167012691498</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
1 0 12 16 -1.</_>
<_>
5 0 4 16 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0627528727054596</threshold>
<left_val>0.2278853058815002</left_val>
<right_val>-0.4366796910762787</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 13 3 3 -1.</_>
<_>
0 14 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.0173111483454704e-003</threshold>
<left_val>-0.7356877923011780</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
1 13 1 3 -1.</_>
<_>
1 14 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.5160309849306941e-003</threshold>
<left_node>2</left_node>
<right_val>-0.5848069787025452</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
14 0 6 1 -1.</_>
<_>
17 0 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.9954680465161800e-003</threshold>
<left_val>0.0215440206229687</left_val>
<right_val>0.5587568879127502</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 0 3 3 -1.</_>
<_>
13 0 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.4435209818184376e-003</threshold>
<left_node>1</left_node>
<right_val>-0.7656589746475220</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
12 1 3 2 -1.</_>
<_>
13 1 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.6550020556896925e-003</threshold>
<left_val>-0.6544749736785889</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
14 2 6 13 -1.</_>
<_>
16 2 2 13 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0114076901227236</threshold>
<left_val>0.5363308191299439</left_val>
<right_val>-0.0388491712510586</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 4 6 1 -1.</_>
<_>
14 6 2 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-2.3805440869182348e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
15 6 5 2 -1.</_>
<_>
15 7 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.6475258208811283e-003</threshold>
<left_val>0.3398441076278687</left_val>
<right_val>-0.6502509117126465</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
9 0 5 12 -1.</_>
<_>
9 4 5 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.1401824057102203</threshold>
<left_val>-0.3249109089374542</left_val>
<right_val>0.7506706714630127</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 1 13 9 -1.</_>
<_>
6 4 13 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0623583607375622</threshold>
<left_val>0.4577716886997223</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 0 3 2 -1.</_>
<_>
17 0 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.3628599699586630e-003</threshold>
<left_node>2</left_node>
<right_val>-0.6320266127586365</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 0 4 2 -1.</_>
<_>
6 0 2 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-4.4609848409891129e-003</threshold>
<left_val>0.4059796035289764</left_val>
<right_val>-0.2085406929254532</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 2 3 3 -1.</_>
<_>
3 3 3 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0100468397140503</threshold>
<left_val>-0.7478982806205750</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 1 13 6 -1.</_>
<_>
5 3 13 2 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0292748194187880</threshold>
<left_node>2</left_node>
<right_val>-0.1799547970294952</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
3 2 2 3 -1.</_>
<_>
2 3 2 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>7.7389390207827091e-003</threshold>
<left_val>0.4778284132480621</left_val>
<right_val>-0.6511334180831909</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 0 3 1 -1.</_>
<_>
18 0 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.4774020528420806e-003</threshold>
<left_node>1</left_node>
<right_val>-0.6626989841461182</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
1 12 5 6 -1.</_>
<_>
1 15 5 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0149898203089833</threshold>
<left_val>-0.1669555008411408</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 14 3 1 -1.</_>
<_>
6 15 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>4.5073241926729679e-003</threshold>
<left_val>0.3870205879211426</left_val>
<right_val>-0.7340937256813049</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 7 7 3 -1.</_>
<_>
0 8 7 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.4901049435138702e-003</threshold>
<left_node>1</left_node>
<right_val>-0.3428083956241608</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 8 2 4 -1.</_>
<_>
0 9 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.9141662465408444e-004</threshold>
<left_node>2</left_node>
<right_val>-0.2803674042224884</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
7 2 4 3 -1.</_>
<_>
6 3 4 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0115582197904587</threshold>
<left_val>-0.4252395927906036</left_val>
<right_val>0.4525966942310333</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 7 6 10 -1.</_>
<_>
8 7 2 10 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0200119502842426</threshold>
<left_val>0.4013311862945557</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 5 8 12 -1.</_>
<_>
4 5 4 12 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0170923005789518</threshold>
<left_val>0.3697001039981842</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
4 0 12 4 -1.</_>
<_>
4 2 12 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0676851719617844</threshold>
<left_val>0.7443867921829224</left_val>
<right_val>-0.3825584053993225</right_val></_></_></trees>
<stage_threshold>-1.3850779533386230</stage_threshold>
<parent>2</parent>
<next>-1</next></_>
<_>
<!-- stage 4 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 8 8 12 -1.</_>
<_>
9 8 4 12 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0209111496806145</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 6 11 14 -1.</_>
<_>
8 13 11 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.1430570930242539</threshold>
<left_val>-0.3496556878089905</left_val>
<right_val>0.7013456225395203</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
16 9 4 9 -1.</_>
<_>
18 9 2 9 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0119250295683742</threshold>
<left_val>-0.6040462851524353</left_val>
<right_val>0.0856159031391144</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 9 6 2 -1.</_>
<_>
14 9 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0247420091181993</threshold>
<left_node>1</left_node>
<right_val>0.8536558747291565</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 1 10 6 -1.</_>
<_>
6 3 10 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0457321181893349</threshold>
<left_node>2</left_node>
<right_val>0.4187641143798828</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 0 4 5 -1.</_>
<_>
5 0 2 5 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0432044304907322</threshold>
<left_val>-0.3909491896629334</left_val>
<right_val>0.2738798856735230</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 17 1 3 -1.</_>
<_>
2 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.2548422031104565e-004</threshold>
<left_val>-0.6201112270355225</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 17 1 3 -1.</_>
<_>
2 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.4243220211938024e-003</threshold>
<left_node>2</left_node>
<right_val>-0.6158943772315979</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 0 12 2 -1.</_>
<_>
12 0 4 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.3335479460656643e-003</threshold>
<left_val>0.6059644818305969</left_val>
<right_val>0.0158404801040888</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 8 6 5 -1.</_>
<_>
2 8 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.1891010738909245e-003</threshold>
<left_node>1</left_node>
<right_val>-0.2085282951593399</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 18 4 1 -1.</_>
<_>
9 18 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.8233320442959666e-003</threshold>
<left_node>2</left_node>
<right_val>-0.8133838176727295</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
10 18 2 1 -1.</_>
<_>
11 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.6109029529616237e-003</threshold>
<left_val>0.5678064823150635</left_val>
<right_val>-0.8704625964164734</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 2 9 3 -1.</_>
<_>
10 5 3 3 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0483502782881260</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 3 5 6 -1.</_>
<_>
8 5 5 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0317461714148521</threshold>
<left_val>-0.3533582091331482</left_val>
<right_val>0.4407657086849213</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 14 1 3 -1.</_>
<_>
0 15 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.9233829807490110e-003</threshold>
<left_val>0.4073063135147095</left_val>
<right_val>-0.5959256887435913</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 17 3 2 -1.</_>
<_>
13 17 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.3614529743790627e-003</threshold>
<left_node>1</left_node>
<right_val>-0.5530725121498108</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
12 17 3 3 -1.</_>
<_>
13 17 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.6934199742972851e-003</threshold>
<left_val>-0.7316309809684753</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
7 9 1 4 -1.</_>
<_>
6 10 1 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-8.5378461517393589e-004</threshold>
<left_val>0.4389067888259888</left_val>
<right_val>-0.0630091726779938</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 7 8 8 -1.</_>
<_>
14 7 4 8 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0109507702291012</threshold>
<left_val>0.3926307857036591</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 10 4 6 -1.</_>
<_>
5 12 4 2 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-7.2186449542641640e-003</threshold>
<left_val>0.2722525000572205</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 6 4 10 -1.</_>
<_>
2 6 2 10 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0185482893139124</threshold>
<left_val>-0.4120861887931824</left_val>
<right_val>0.6379063725471497</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 9 1 3 -1.</_>
<_>
19 10 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.0859060566872358e-003</threshold>
<left_node>1</left_node>
<right_val>-0.5085721015930176</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 1 4 15 -1.</_>
<_>
17 2 2 15 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-6.5618362277746201e-003</threshold>
<left_val>0.3538672924041748</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
14 5 6 7 -1.</_>
<_>
16 7 2 7 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0617774203419685</threshold>
<left_val>0.5756828188896179</left_val>
<right_val>-0.2847724854946137</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 18 2 2 -1.</_>
<_>
18 18 1 1 2.</_>
<_>
19 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.9480778397992253e-004</threshold>
<left_node>1</left_node>
<right_val>-0.4958389103412628</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 7 4 6 -1.</_>
<_>
0 9 4 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0116068804636598</threshold>
<left_node>2</left_node>
<right_val>-0.5132020115852356</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
16 9 4 4 -1.</_>
<_>
17 9 2 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.6142609529197216e-003</threshold>
<left_val>0.5266572833061218</left_val>
<right_val>0.0309171602129936</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 15 1 3 -1.</_>
<_>
0 16 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.0437680650502443e-003</threshold>
<left_node>1</left_node>
<right_val>-0.7094858884811401</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 5 10 3 -1.</_>
<_>
6 6 10 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-8.2394909113645554e-003</threshold>
<left_val>0.3418981134891510</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
9 7 9 7 -1.</_>
<_>
12 7 3 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0396992117166519</threshold>
<left_val>0.4738334119319916</left_val>
<right_val>-0.2506085038185120</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 4 6 8 -1.</_>
<_>
14 6 6 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.0377282574772835e-004</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
17 6 3 1 -1.</_>
<_>
18 7 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-5.4273242130875587e-003</threshold>
<left_val>-0.5138400793075562</left_val>
<right_val>0.2975271046161652</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
17 1 3 8 -1.</_>
<_>
17 3 3 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.2662738598883152e-003</threshold>
<left_val>0.1457702964544296</left_val>
<right_val>-0.4600752890110016</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 10 1 3 -1.</_>
<_>
0 11 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.3841522205621004e-004</threshold>
<left_node>1</left_node>
<right_val>-0.3641282916069031</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 2 3 1 -1.</_>
<_>
6 2 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.5458120033144951e-003</threshold>
<left_val>-0.5808160901069641</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 2 3 1 -1.</_>
<_>
6 2 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.1863360414281487e-003</threshold>
<left_val>0.2929860949516296</left_val>
<right_val>-0.5142071843147278</right_val></_></_></trees>
<stage_threshold>-1.4432040452957153</stage_threshold>
<parent>3</parent>
<next>-1</next></_>
<_>
<!-- stage 5 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 2 9 15 -1.</_>
<_>
9 7 3 5 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.2774501144886017</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 9 6 3 -1.</_>
<_>
2 9 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.1200000084936619e-003</threshold>
<left_val>0.8326563835144043</left_val>
<right_val>0.1023318991065025</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
9 6 6 9 -1.</_>
<_>
11 9 2 3 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0802809223532677</threshold>
<left_val>0.2377357929944992</left_val>
<right_val>-0.6454666256904602</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 3 12 9 -1.</_>
<_>
4 6 12 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0693915486335754</threshold>
<left_val>0.4600824117660523</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 5 6 4 -1.</_>
<_>
8 6 6 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.3355181589722633e-003</threshold>
<left_node>2</left_node>
<right_val>0.2913798987865448</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 1 17 8 -1.</_>
<_>
0 3 17 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0541896186769009</threshold>
<left_val>0.4702672958374023</left_val>
<right_val>-0.5772340297698975</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 10 9 1 -1.</_>
<_>
5 10 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0185629595071077</threshold>
<left_node>1</left_node>
<right_val>0.7055550217628479</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 11 9 8 -1.</_>
<_>
2 15 9 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0463057309389114</threshold>
<left_val>-0.5283988118171692</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
14 0 6 15 -1.</_>
<_>
16 0 2 15 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.8262781500816345e-003</threshold>
<left_val>0.4395360946655273</left_val>
<right_val>-0.1388749033212662</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 6 2 9 -1.</_>
<_>
17 9 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.8772179502993822e-003</threshold>
<left_node>1</left_node>
<right_val>-0.2747583091259003</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 16 1 3 -1.</_>
<_>
15 17 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-2.6457069907337427e-003</threshold>
<left_val>-0.5774679780006409</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
7 0 4 2 -1.</_>
<_>
8 0 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.3441530540585518e-003</threshold>
<left_val>0.3661524057388306</left_val>
<right_val>-0.6358674168586731</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 0 12 15 -1.</_>
<_>
10 0 4 15 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0837423726916313</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 8 12 6 -1.</_>
<_>
11 8 4 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.1016476973891258</threshold>
<left_val>-0.2966451942920685</left_val>
<right_val>0.5614004731178284</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
11 18 4 1 -1.</_>
<_>
12 18 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.1541758906096220e-003</threshold>
<left_val>-0.7544627189636231</left_val>
<right_val>0.3960126042366028</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 18 4 1 -1.</_>
<_>
9 18 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.7133549554273486e-003</threshold>
<left_val>-0.7374163269996643</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 0 8 4 -1.</_>
<_>
7 2 8 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0138994101434946</threshold>
<left_node>2</left_node>
<right_val>0.4824739098548889</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 0 12 8 -1.</_>
<_>
8 2 12 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0284981206059456</threshold>
<left_val>0.4197104871273041</left_val>
<right_val>-0.2002128958702087</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 9 6 3 -1.</_>
<_>
6 9 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.9728769809007645e-003</threshold>
<left_val>0.3763135075569153</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 4 9 12 -1.</_>
<_>
3 8 3 4 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0347518809139729</threshold>
<left_node>2</left_node>
<right_val>-0.4479779005050659</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 18 1 2 -1.</_>
<_>
6 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.7171117775142193e-004</threshold>
<left_val>-0.6999509930610657</left_val>
<right_val>0.1564090996980667</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 2 4 2 -1.</_>
<_>
10 2 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.3666230738162994e-003</threshold>
<left_val>-0.6772192120552063</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 1 8 17 -1.</_>
<_>
8 1 4 17 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0213788300752640</threshold>
<left_val>0.3395152986049652</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
13 9 4 4 -1.</_>
<_>
14 10 2 4 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0118692498654127</threshold>
<left_val>0.5405067205429077</left_val>
<right_val>-0.2407158017158508</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 1 4 3 -1.</_>
<_>
8 1 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.4268160127103329e-003</threshold>
<left_val>-0.7396550774574280</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
12 8 6 4 -1.</_>
<_>
14 8 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0414053983986378</threshold>
<left_node>2</left_node>
<right_val>0.8290563821792603</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
13 1 7 15 -1.</_>
<_>
13 6 7 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0378844104707241</threshold>
<left_val>0.1703073978424072</left_val>
<right_val>-0.2449869960546494</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 18 2 2 -1.</_>
<_>
17 18 1 1 2.</_>
<_>
18 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.7567419349215925e-004</threshold>
<left_node>1</left_node>
<right_val>-0.4510369896888733</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
3 6 4 10 -1.</_>
<_>
4 6 2 10 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.7140299100428820e-003</threshold>
<left_val>0.3834812939167023</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 4 4 11 -1.</_>
<_>
7 4 2 11 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.1806719750165939e-003</threshold>
<left_val>0.3609752058982849</left_val>
<right_val>-0.2064443975687027</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 18 4 1 -1.</_>
<_>
8 18 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.2373559875413775e-003</threshold>
<left_val>-0.5816687941551209</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
15 0 4 2 -1.</_>
<_>
15 0 4 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-2.1339580416679382e-003</threshold>
<left_val>0.4166969060897827</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 0 10 3 -1.</_>
<_>
8 1 10 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.8985869139432907e-003</threshold>
<left_val>-0.2472126036882401</left_val>
<right_val>0.3505684137344360</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 0 12 3 -1.</_>
<_>
12 1 4 1 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.4636861421167850e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 0 3 2 -1.</_>
<_>
17 0 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.6411510296165943e-003</threshold>
<left_val>0.3562541007995606</left_val>
<right_val>-0.4104009866714478</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
16 10 4 6 -1.</_>
<_>
17 11 2 6 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-7.3051019571721554e-003</threshold>
<left_val>0.2021612972021103</left_val>
<right_val>-0.3423452079296112</right_val></_></_></trees>
<stage_threshold>-1.5415630340576172</stage_threshold>
<parent>4</parent>
<next>-1</next></_>
<_>
<!-- stage 6 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 4 5 6 -1.</_>
<_>
9 6 5 2 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0519426092505455</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
12 3 6 10 -1.</_>
<_>
14 5 2 10 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0472685284912586</threshold>
<left_val>0.8819893002510071</left_val>
<right_val>0.0648292377591133</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
9 7 5 3 -1.</_>
<_>
8 8 5 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-7.8969672322273254e-003</threshold>
<left_val>0.0886627584695816</left_val>
<right_val>-0.5900781154632568</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 10 2 1 -1.</_>
<_>
5 10 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.0199249098077416e-004</threshold>
<left_node>1</left_node>
<right_val>0.5904089808464050</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 2 16 16 -1.</_>
<_>
4 6 16 8 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1728982031345367</threshold>
<left_node>2</left_node>
<right_val>-0.5202903151512146</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
15 8 4 6 -1.</_>
<_>
16 8 2 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.3374119773507118e-003</threshold>
<left_val>0.5298172831535339</left_val>
<right_val>-0.1498585045337677</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 7 2 6 -1.</_>
<_>
15 7 1 6 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0175349507480860</threshold>
<left_val>0.5326902866363525</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 17 1 2 -1.</_>
<_>
6 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.8875310060102493e-005</threshold>
<left_val>-0.4570972025394440</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
7 4 12 12 -1.</_>
<_>
11 8 4 4 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.3224102854728699</threshold>
<left_val>0.5738016963005066</left_val>
<right_val>-0.1286648064851761</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 16 1 2 -1.</_>
<_>
18 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.3220787928439677e-005</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
17 17 2 1 -1.</_>
<_>
18 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.1180160072399303e-004</threshold>
<left_val>0.0900062099099159</left_val>
<right_val>-0.5635238885879517</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 4 3 6 -1.</_>
<_>
7 5 1 6 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0103449802845716</threshold>
<left_val>0.6327341794967651</left_val>
<right_val>0.0500642694532871</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 10 4 1 -1.</_>
<_>
5 10 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.4440882094204426e-004</threshold>
<left_val>0.4438664019107819</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 10 6 9 -1.</_>
<_>
8 10 2 9 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.7474210839718580e-003</threshold>
<left_node>2</left_node>
<right_val>-0.3499991893768311</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
1 8 2 12 -1.</_>
<_>
1 14 2 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.0574651211500168e-003</threshold>
<left_val>-0.4529821872711182</left_val>
<right_val>0.3092019855976105</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 0 2 1 -1.</_>
<_>
17 0 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.5205920943990350e-005</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 2 7 9 -1.</_>
<_>
8 5 7 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0756782889366150</threshold>
<left_val>0.3554409146308899</left_val>
<right_val>-0.3604736030101776</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 0 20 20 -1.</_>
<_>
0 0 10 10 2.</_>
<_>
10 10 10 10 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.3097536861896515</threshold>
<left_val>-0.6495401859283447</left_val>
<right_val>0.3067927956581116</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 6 1 2 -1.</_>
<_>
18 7 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.9595847637392581e-005</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
18 5 2 1 -1.</_>
<_>
18 5 1 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>4.0613119490444660e-003</threshold>
<left_val>0.3385047018527985</left_val>
<right_val>-0.5327190160751343</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
7 4 10 6 -1.</_>
<_>
7 6 10 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0432408712804317</threshold>
<left_val>-0.3259232938289642</left_val>
<right_val>0.5507627129554749</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 9 3 3 -1.</_>
<_>
16 10 1 3 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-6.7015928216278553e-003</threshold>
<left_val>0.5010917186737061</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
17 18 3 2 -1.</_>
<_>
17 19 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.0451120324432850e-003</threshold>
<left_val>-0.5888198018074036</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
15 9 3 2 -1.</_>
<_>
16 10 1 2 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>8.3967261016368866e-003</threshold>
<left_val>-0.0952375978231430</left_val>
<right_val>0.5651699900627136</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 2 1 -1.</_>
<_>
1 0 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.5531006839592010e-005</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
1 14 1 2 -1.</_>
<_>
1 15 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.8218057751655579e-005</threshold>
<left_val>-0.4655671119689941</left_val>
<right_val>0.0545097813010216</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 18 20 1 -1.</_>
<_>
10 18 10 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0329881682991982</threshold>
<left_val>0.3524878919124603</left_val>
<right_val>-0.5272294878959656</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 7 6 2 -1.</_>
<_>
9 7 6 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0141614498570561</threshold>
<left_val>0.3681178092956543</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
10 9 6 5 -1.</_>
<_>
12 9 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0315004400908947</threshold>
<left_node>2</left_node>
<right_val>0.5204042196273804</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
11 8 4 5 -1.</_>
<_>
12 8 2 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.1956730633974075e-003</threshold>
<left_val>0.1160352975130081</left_val>
<right_val>-0.3098528087139130</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 0 2 18 -1.</_>
<_>
18 9 2 9 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0400998890399933</threshold>
<left_val>-0.4514637887477875</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
3 15 9 3 -1.</_>
<_>
6 16 3 1 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0325696393847466</threshold>
<left_val>-0.6439204812049866</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
16 16 1 3 -1.</_>
<_>
15 17 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-4.2014168575406075e-003</threshold>
<left_val>-0.8259450197219849</left_val>
<right_val>0.1925954073667526</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 16 9 4 -1.</_>
<_>
2 17 9 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.0385689567774534e-003</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 18 5 2 -1.</_>
<_>
0 19 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.6212540213018656e-003</threshold>
<left_val>-0.3772337138652802</left_val>
<right_val>0.3391883075237274</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
17 7 2 3 -1.</_>
<_>
16 8 2 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-8.6220083758234978e-003</threshold>
<left_val>0.4898692071437836</left_val>
<right_val>-0.2753207087516785</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 17 2 1 -1.</_>
<_>
18 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.2185800895094872e-005</threshold>
<left_node>1</left_node>
<right_val>0.2422374933958054</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 18 2 1 -1.</_>
<_>
17 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.1932889113668352e-005</threshold>
<left_node>2</left_node>
<right_val>-0.4218919873237610</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
17 18 1 2 -1.</_>
<_>
17 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.4952900498174131e-004</threshold>
<left_val>0.2940784096717835</left_val>
<right_val>-0.4402804970741272</right_val></_></_></trees>
<stage_threshold>-1.4762729406356812</stage_threshold>
<parent>5</parent>
<next>-1</next></_>
<_>
<!-- stage 7 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 10 9 2 -1.</_>
<_>
9 10 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0196384508162737</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 8 18 12 -1.</_>
<_>
2 14 18 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.1136429980397224</threshold>
<left_val>-0.3244445025920868</left_val>
<right_val>0.7460201978683472</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
12 6 3 3 -1.</_>
<_>
11 7 3 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0101121496409178</threshold>
<left_val>0.3333333134651184</left_val>
<right_val>-0.5643565058708191</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 8 3 3 -1.</_>
<_>
16 9 1 3 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0121308797970414</threshold>
<left_node>1</left_node>
<right_val>0.7221491932868958</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 3 17 12 -1.</_>
<_>
2 6 17 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1595885008573532</threshold>
<left_node>2</left_node>
<right_val>-0.3927459120750427</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
2 7 4 9 -1.</_>
<_>
3 7 2 9 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.3524949792772532e-003</threshold>
<left_val>0.5615249276161194</left_val>
<right_val>-0.1376848071813583</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 9 2 6 -1.</_>
<_>
4 9 1 3 2.</_>
<_>
5 12 1 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.1118920780718327e-003</threshold>
<left_val>0.6355608105659485</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
1 6 12 9 -1.</_>
<_>
5 9 4 3 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1783290058374405</threshold>
<left_val>0.3337314128875732</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 2 1 8 -1.</_>
<_>
8 4 1 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.8500732779502869e-003</threshold>
<left_val>0.3953677117824554</left_val>
<right_val>-0.3338043093681335</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 16 2 1 -1.</_>
<_>
4 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.6880490117473528e-005</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
3 16 2 1 -1.</_>
<_>
4 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.2934719860786572e-005</threshold>
<left_val>-0.6611827015876770</left_val>
<right_val>-0.0482321903109550</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
4 17 1 3 -1.</_>
<_>
4 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.0851430235779844e-005</threshold>
<left_val>-0.0988383591175079</left_val>
<right_val>0.4452841877937317</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 17 9 3 -1.</_>
<_>
9 17 3 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0184252895414829</threshold>
<left_val>-0.6569089889526367</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
14 8 3 4 -1.</_>
<_>
15 9 1 4 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-7.6133902184665203e-003</threshold>
<left_val>0.5341367721557617</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
17 8 3 6 -1.</_>
<_>
18 9 1 6 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-6.0353721491992474e-003</threshold>
<left_val>0.3617104887962341</left_val>
<right_val>-0.2047843039035797</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 17 1 3 -1.</_>
<_>
16 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.3712720071198419e-005</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
14 18 3 2 -1.</_>
<_>
14 19 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.8823999501764774e-004</threshold>
<left_val>-0.4532682895660400</left_val>
<right_val>0.3551769852638245</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 8 3 3 -1.</_>
<_>
7 8 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.5693209394812584e-003</threshold>
<left_val>0.6172103285789490</left_val>
<right_val>-0.2970770001411438</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 0 16 11 -1.</_>
<_>
7 0 8 11 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0380585715174675</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
1 0 18 20 -1.</_>
<_>
1 5 18 10 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1179768964648247</threshold>
<left_val>0.3500399887561798</left_val>
<right_val>-0.2725766897201538</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
15 5 4 4 -1.</_>
<_>
15 5 2 2 2.</_>
<_>
17 7 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.6841651201248169e-003</threshold>
<left_val>-0.3255917131900787</left_val>
<right_val>0.3773747086524963</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 10 2 1 -1.</_>
<_>
16 10 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.6372840511612594e-004</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 18 6 2 -1.</_>
<_>
9 18 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.2580420635640621e-003</threshold>
<left_val>0.3742173910140991</left_val>
<right_val>-0.5892670154571533</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
15 10 2 1 -1.</_>
<_>
16 10 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.6767999922158197e-005</threshold>
<left_val>-0.4885902106761932</left_val>
<right_val>-0.0186237301677465</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 0 18 4 -1.</_>
<_>
2 1 18 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.2742107808589935e-003</threshold>
<left_node>1</left_node>
<right_val>0.3093354105949402</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 0 9 4 -1.</_>
<_>
5 1 9 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.8514519110321999e-003</threshold>
<left_node>2</left_node>
<right_val>-0.3451372981071472</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 0 2 1 -1.</_>
<_>
1 0 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.3287498303689063e-005</threshold>
<left_val>0.5234032869338989</left_val>
<right_val>-0.0911594033241272</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 18 1 2 -1.</_>
<_>
0 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.8315975628793240e-004</threshold>
<left_node>1</left_node>
<right_val>-0.5018535256385803</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
18 0 2 2 -1.</_>
<_>
18 1 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.2858657697215676e-004</threshold>
<left_node>2</left_node>
<right_val>-0.3052954971790314</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
17 0 2 4 -1.</_>
<_>
17 0 1 4 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0112297898158431</threshold>
<left_val>0.2621921002864838</left_val>
<right_val>-0.4796982109546661</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 2 3 4 -1.</_>
<_>
3 3 3 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0103276399895549</threshold>
<left_val>-0.5631508231163025</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 4 6 11 -1.</_>
<_>
2 4 2 11 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.9197742268443108e-003</threshold>
<left_val>0.3122507035732269</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 4 8 4 -1.</_>
<_>
0 4 4 2 2.</_>
<_>
4 6 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.0027170218527317e-003</threshold>
<left_val>0.1782077997922897</left_val>
<right_val>-0.3009114861488342</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 3 1 2 -1.</_>
<_>
4 4 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.1156810069223866e-004</threshold>
<left_val>0.1888367980718613</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 1 6 4 -1.</_>
<_>
0 1 3 2 2.</_>
<_>
3 3 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.2464961297810078e-003</threshold>
<left_val>-0.4010157883167267</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
3 5 4 2 -1.</_>
<_>
3 5 2 1 2.</_>
<_>
5 6 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.7280951548600569e-005</threshold>
<left_val>0.4650590121746063</left_val>
<right_val>-0.2986364066600800</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 9 4 1 -1.</_>
<_>
5 9 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.8891280051320791e-003</threshold>
<left_val>0.5696374773979187</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 15 2 2 -1.</_>
<_>
8 15 1 1 2.</_>
<_>
9 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.8536308642942458e-005</threshold>
<left_val>0.1800824999809265</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 15 2 2 -1.</_>
<_>
8 15 1 1 2.</_>
<_>
9 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.0671950551331975e-005</threshold>
<left_val>-0.5865960121154785</left_val>
<right_val>-5.4875258356332779e-003</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 18 5 2 -1.</_>
<_>
2 19 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.1267509544268250e-003</threshold>
<left_val>-0.4026159942150116</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 12 10 8 -1.</_>
<_>
4 14 10 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0213784407824278</threshold>
<left_node>2</left_node>
<right_val>0.3923035860061646</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
9 7 5 3 -1.</_>
<_>
8 8 5 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0125460401177406</threshold>
<left_val>0.4947456121444702</left_val>
<right_val>-0.1732252985239029</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 18 6 2 -1.</_>
<_>
2 18 3 1 2.</_>
<_>
5 19 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.2257901774719357e-004</threshold>
<left_val>-0.3038032948970795</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 16 12 4 -1.</_>
<_>
6 17 12 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.4563672058284283e-003</threshold>
<left_node>2</left_node>
<right_val>0.4717349112033844</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
10 9 1 4 -1.</_>
<_>
10 11 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.9086650833487511e-003</threshold>
<left_val>-0.1638054996728897</left_val>
<right_val>0.3770849108695984</right_val></_></_></trees>
<stage_threshold>-1.4963719844818115</stage_threshold>
<parent>6</parent>
<next>-1</next></_>
<_>
<!-- stage 8 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 9 12 3 -1.</_>
<_>
9 10 4 1 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0726175606250763</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
9 7 3 3 -1.</_>
<_>
10 8 1 1 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.9059380330145359e-003</threshold>
<left_val>0.2660279870033264</left_val>
<right_val>-0.4932517111301422</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
1 6 19 14 -1.</_>
<_>
1 13 19 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.2172794938087463</threshold>
<left_val>-0.1076923012733460</left_val>
<right_val>0.8266112208366394</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 9 4 2 -1.</_>
<_>
16 9 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.0319509785622358e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 9 3 8 -1.</_>
<_>
8 13 3 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0289315897971392</threshold>
<left_val>-0.0379631407558918</left_val>
<right_val>0.8023043870925903</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 8 4 3 -1.</_>
<_>
7 8 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.6076569706201553e-003</threshold>
<left_val>0.4246839880943298</left_val>
<right_val>-0.2937937974929810</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 1 8 4 -1.</_>
<_>
5 2 8 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.9408868439495564e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 1 3 4 -1.</_>
<_>
8 2 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.9231962077319622e-003</threshold>
<left_val>0.4173704981803894</left_val>
<right_val>-0.2555258870124817</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
2 10 18 10 -1.</_>
<_>
2 15 18 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0511281602084637</threshold>
<left_val>-0.3861986100673676</left_val>
<right_val>0.4707686007022858</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 8 5 3 -1.</_>
<_>
7 9 5 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0152013301849365</threshold>
<left_node>1</left_node>
<right_val>0.5435479879379273</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 9 7 2 -1.</_>
<_>
7 9 7 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0180963408201933</threshold>
<left_val>0.2665114104747772</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 17 1 3 -1.</_>
<_>
5 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.9378951340913773e-005</threshold>
<left_val>-0.4392774999141693</left_val>
<right_val>2.5831260718405247e-003</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 18 13 2 -1.</_>
<_>
7 19 13 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.3462558425962925e-003</threshold>
<left_val>-0.6630896925926209</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 16 2 2 -1.</_>
<_>
16 16 2 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-6.9701080210506916e-003</threshold>
<left_val>-0.7031068205833435</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
3 14 1 2 -1.</_>
<_>
3 15 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.4738981968257576e-005</threshold>
<left_val>-0.1788080930709839</left_val>
<right_val>0.2599329948425293</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 9 3 4 -1.</_>
<_>
13 9 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.8513800352811813e-003</threshold>
<left_val>0.4505367875099182</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
12 9 3 2 -1.</_>
<_>
13 9 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.2954840678721666e-003</threshold>
<left_node>2</left_node>
<right_val>0.3056051135063171</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
7 9 2 3 -1.</_>
<_>
6 10 2 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-3.5036220215260983e-003</threshold>
<left_val>0.1504087001085281</left_val>
<right_val>-0.3328307867050171</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 3 9 12 -1.</_>
<_>
10 7 9 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0695702284574509</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
15 5 2 1 -1.</_>
<_>
16 5 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.9261121350573376e-005</threshold>
<left_val>-0.0368997193872929</left_val>
<right_val>0.4092730879783630</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
1 0 15 9 -1.</_>
<_>
1 3 15 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0590583495795727</threshold>
<left_val>0.1382637023925781</left_val>
<right_val>-0.3821440935134888</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 15 2 3 -1.</_>
<_>
3 15 1 3 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-8.9645627886056900e-003</threshold>
<left_val>-0.5813472867012024</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 16 1 2 -1.</_>
<_>
2 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.9211819714400917e-005</threshold>
<left_val>-0.1848174035549164</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
12 1 8 4 -1.</_>
<_>
11 2 8 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>9.9640293046832085e-003</threshold>
<left_val>0.0876854732632637</left_val>
<right_val>0.5850980281829834</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 5 3 6 -1.</_>
<_>
7 6 1 6 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0193026997148991</threshold>
<left_val>0.5326346158981323</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 7 2 2 -1.</_>
<_>
5 7 1 1 2.</_>
<_>
6 8 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.3869198998436332e-004</threshold>
<left_val>0.2889113128185272</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
17 7 3 1 -1.</_>
<_>
18 7 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.5669846662785858e-005</threshold>
<left_val>-0.3349359929561615</left_val>
<right_val>0.0595667511224747</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 0 6 5 -1.</_>
<_>
14 0 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0202245190739632</threshold>
<left_val>-0.6553608179092407</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
17 0 2 1 -1.</_>
<_>
18 0 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.7082196841947734e-005</threshold>
<left_val>-0.1221178993582726</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
10 1 6 5 -1.</_>
<_>
12 1 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0162027198821306</threshold>
<left_val>-0.4707683920860291</left_val>
<right_val>0.3099077045917511</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 14 3 2 -1.</_>
<_>
17 14 3 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>4.4353529810905457e-003</threshold>
<left_node>1</left_node>
<right_val>-0.5403993129730225</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 10 4 1 -1.</_>
<_>
6 10 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.0544822160154581e-004</threshold>
<left_val>0.4287880063056946</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
3 8 3 6 -1.</_>
<_>
4 8 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.4297979651018977e-003</threshold>
<left_val>0.2232273966073990</left_val>
<right_val>-0.1819442063570023</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 16 5 4 -1.</_>
<_>
8 17 5 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.2359519973397255e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
14 15 2 2 -1.</_>
<_>
14 15 1 1 2.</_>
<_>
15 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.0716189717641100e-004</threshold>
<left_val>-0.2921822071075440</left_val>
<right_val>0.1391046047210693</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
4 18 1 2 -1.</_>
<_>
4 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.8802281273528934e-004</threshold>
<left_val>-0.4692608118057251</left_val>
<right_val>0.3808549940586090</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 15 2 3 -1.</_>
<_>
8 15 1 3 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-9.0546347200870514e-003</threshold>
<left_val>-0.5042654275894165</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
19 0 1 20 -1.</_>
<_>
19 10 1 10 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.6048766970634460e-003</threshold>
<left_val>-0.2755903005599976</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
7 9 8 1 -1.</_>
<_>
9 9 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.2719300575554371e-003</threshold>
<left_val>0.3602210879325867</left_val>
<right_val>-0.0264849700033665</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 10 3 1 -1.</_>
<_>
15 10 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.9098240085877478e-004</threshold>
<left_val>0.2665173113346100</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
15 11 2 1 -1.</_>
<_>
16 11 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.6405251012183726e-004</threshold>
<left_val>0.1472164988517761</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
18 11 2 8 -1.</_>
<_>
18 11 1 4 2.</_>
<_>
19 15 1 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.6685711499303579e-004</threshold>
<left_val>-0.4971973896026611</left_val>
<right_val>-0.0615798495709896</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 1 8 4 -1.</_>
<_>
8 1 4 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0248455703258514</threshold>
<left_val>-0.7082098126411438</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 0 5 4 -1.</_>
<_>
5 1 5 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0154363997280598</threshold>
<left_val>-0.4720689058303833</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 5 12 15 -1.</_>
<_>
10 10 4 5 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.5657231211662293</threshold>
<left_val>0.6396523118019104</left_val>
<right_val>0.0520693287253380</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 2 8 9 -1.</_>
<_>
7 5 8 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0574801415205002</threshold>
<left_val>0.2929739058017731</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 1 10 3 -1.</_>
<_>
2 2 10 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0146138202399015</threshold>
<left_val>0.6012967228889465</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
2 5 15 12 -1.</_>
<_>
7 9 5 4 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.3399373888969421</threshold>
<left_val>0.0190412998199463</left_val>
<right_val>-0.3325459957122803</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 8 3 6 -1.</_>
<_>
8 8 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.1427140347659588e-003</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 6 3 7 -1.</_>
<_>
8 6 1 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.1966299973428249e-003</threshold>
<left_val>-0.2297272980213165</left_val>
<right_val>0.2236734032630920</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
4 16 9 4 -1.</_>
<_>
7 16 3 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0248585902154446</threshold>
<left_val>-0.5621296763420105</left_val>
<right_val>0.3954285979270935</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 18 5 2 -1.</_>
<_>
15 19 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.6135630430653691e-003</threshold>
<left_val>-0.4825679063796997</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
15 16 1 4 -1.</_>
<_>
15 17 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.1416019697207958e-004</threshold>
<left_node>2</left_node>
<right_val>0.2687731981277466</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
15 16 2 2 -1.</_>
<_>
15 16 1 1 2.</_>
<_>
16 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.3170539750717580e-004</threshold>
<left_val>-0.3907892107963562</left_val>
<right_val>0.1715344041585922</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 15 2 2 -1.</_>
<_>
6 15 1 1 2.</_>
<_>
7 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.5256207967177033e-005</threshold>
<left_val>0.2175457030534744</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 15 2 2 -1.</_>
<_>
6 15 1 1 2.</_>
<_>
7 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.4925159676931798e-005</threshold>
<left_val>-0.4746862053871155</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 16 8 3 -1.</_>
<_>
10 16 4 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0126896398141980</threshold>
<left_val>-0.6653857827186585</left_val>
<right_val>0.1234709024429321</right_val></_></_></trees>
<stage_threshold>-1.5243699550628662</stage_threshold>
<parent>7</parent>
<next>-1</next></_>
<_>
<!-- stage 9 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 10 12 1 -1.</_>
<_>
9 10 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0298446398228407</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 2 9 15 -1.</_>
<_>
9 7 3 5 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.4548766016960144</threshold>
<left_val>0.3922204077243805</left_val>
<right_val>-0.3931488096714020</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
17 6 1 14 -1.</_>
<_>
17 13 1 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.7445149607956409e-003</threshold>
<left_val>-0.1592357009649277</left_val>
<right_val>0.8269670009613037</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 7 3 3 -1.</_>
<_>
8 8 3 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0105846701189876</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 5 4 3 -1.</_>
<_>
15 6 4 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0163083802908659</threshold>
<left_val>0.4595468938350678</left_val>
<right_val>-0.2162012010812759</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
13 7 4 9 -1.</_>
<_>
13 7 2 9 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0487874411046505</threshold>
<left_val>0.7510365247726440</left_val>
<right_val>0.0745579674839973</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 10 2 2 -1.</_>
<_>
3 10 2 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-2.9621229041367769e-003</threshold>
<left_node>1</left_node>
<right_val>-0.2445227056741715</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 4 3 15 -1.</_>
<_>
0 9 3 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0173005294054747</threshold>
<left_node>2</left_node>
<right_val>-0.3309040963649750</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
7 8 9 6 -1.</_>
<_>
10 8 3 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0167311690747738</threshold>
<left_val>0.5375185012817383</left_val>
<right_val>0.0291538201272488</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 17 9 2 -1.</_>
<_>
8 17 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0123261800035834</threshold>
<left_node>1</left_node>
<right_val>-0.5482481122016907</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 2 6 18 -1.</_>
<_>
7 11 6 9 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0549282990396023</threshold>
<left_val>-0.2195277065038681</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
15 9 2 10 -1.</_>
<_>
15 9 1 5 2.</_>
<_>
16 14 1 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.7763319667428732e-003</threshold>
<left_val>0.0364636890590191</left_val>
<right_val>0.5063378214836121</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 7 6 4 -1.</_>
<_>
14 9 2 4 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0451169982552528</threshold>
<left_val>0.4233931005001068</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
13 8 3 2 -1.</_>
<_>
14 9 1 2 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0112079400569201</threshold>
<left_node>2</left_node>
<right_val>0.3998400866985321</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
17 4 3 2 -1.</_>
<_>
18 5 1 2 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-5.7006389833986759e-003</threshold>
<left_val>-0.5972918272018433</left_val>
<right_val>-0.0985576510429382</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 5 8 2 -1.</_>
<_>
10 6 8 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.3951311856508255e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
18 4 2 2 -1.</_>
<_>
18 4 1 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>7.8587066382169724e-003</threshold>
<left_val>0.3473469018936157</left_val>
<right_val>-0.4728192090988159</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
7 4 7 4 -1.</_>
<_>
7 5 7 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0106666395440698</threshold>
<left_val>-0.2331566959619522</left_val>
<right_val>0.2436001002788544</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 15 6 4 -1.</_>
<_>
1 17 6 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.8001810424029827e-003</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 13 2 6 -1.</_>
<_>
0 15 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.9198479652404785e-003</threshold>
<left_val>-0.4835455119609833</left_val>
<right_val>0.1832112073898315</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
10 13 4 2 -1.</_>
<_>
10 13 4 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-2.3832279257476330e-003</threshold>
<left_val>0.0321684814989567</left_val>
<right_val>-0.5047625899314880</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 14 2 4 -1.</_>
<_>
15 15 2 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-9.7674019634723663e-003</threshold>
<left_val>-0.7441521286964417</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 4 3 4 -1.</_>
<_>
8 5 1 4 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0138972597196698</threshold>
<left_val>0.4542512893676758</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 9 4 3 -1.</_>
<_>
6 9 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.4803068526089191e-003</threshold>
<left_val>0.4829286932945252</left_val>
<right_val>-0.1025857031345367</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 1 2 4 -1.</_>
<_>
3 2 2 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>9.4482619315385818e-003</threshold>
<left_node>1</left_node>
<right_val>-0.5332602262496948</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 1 2 3 -1.</_>
<_>
3 1 1 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.0351187605410814e-004</threshold>
<left_val>0.2943583130836487</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
1 2 8 4 -1.</_>
<_>
1 2 4 2 2.</_>
<_>
5 4 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.2770579457283020e-003</threshold>
<left_val>0.1550199985504150</left_val>
<right_val>-0.3086796998977661</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 0 4 4 -1.</_>
<_>
7 0 2 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.8752358891069889e-003</threshold>
<left_node>1</left_node>
<right_val>-0.6049131751060486</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 4 3 5 -1.</_>
<_>
7 5 1 5 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>9.5629561692476273e-003</threshold>
<left_node>2</left_node>
<right_val>0.4403988122940064</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
3 5 1 2 -1.</_>
<_>
3 6 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.8425266363192350e-005</threshold>
<left_val>0.1020627021789551</left_val>
<right_val>-0.2562403082847595</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 8 3 3 -1.</_>
<_>
7 8 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.4002371616661549e-003</threshold>
<left_node>1</left_node>
<right_val>0.4537158012390137</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 16 3 1 -1.</_>
<_>
6 17 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>2.9745819047093391e-003</threshold>
<left_node>2</left_node>
<right_val>-0.6096798777580261</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 9 4 4 -1.</_>
<_>
7 9 2 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.5536341127008200e-003</threshold>
<left_val>0.2211160957813263</left_val>
<right_val>-0.1280117034912109</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 11 9 2 -1.</_>
<_>
9 12 9 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.0425839833915234e-003</threshold>
<left_val>-0.1926402002573013</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 2 7 2 -1.</_>
<_>
5 3 7 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.6407291926443577e-003</threshold>
<left_node>2</left_node>
<right_val>0.6117882132530212</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
12 18 8 2 -1.</_>
<_>
12 19 8 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.0939979692921042e-003</threshold>
<left_val>-0.3797368109226227</left_val>
<right_val>0.1643894016742706</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 0 1 4 -1.</_>
<_>
19 2 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.1377089685993269e-004</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
14 1 6 2 -1.</_>
<_>
17 1 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.2979402244091034e-003</threshold>
<left_val>-0.0277704801410437</left_val>
<right_val>0.4301962852478027</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
14 2 6 4 -1.</_>
<_>
14 2 3 2 2.</_>
<_>
17 4 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.9510098975151777e-003</threshold>
<left_val>-0.3791233897209168</left_val>
<right_val>0.1013085022568703</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 7 3 6 -1.</_>
<_>
8 7 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.3235480338335037e-003</threshold>
<left_node>1</left_node>
<right_val>0.4041346013545990</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
11 6 5 4 -1.</_>
<_>
11 7 5 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.9955950342118740e-003</threshold>
<left_val>-0.1509774029254913</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
17 7 3 3 -1.</_>
<_>
18 7 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.3595582721754909e-004</threshold>
<left_val>0.5952280163764954</left_val>
<right_val>-0.0343801714479923</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 16 1 2 -1.</_>
<_>
15 16 1 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>3.6193430423736572e-003</threshold>
<left_node>1</left_node>
<right_val>-0.7445452213287354</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 0 4 4 -1.</_>
<_>
7 1 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.4626820124685764e-003</threshold>
<left_node>2</left_node>
<right_val>0.2850461006164551</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 1 8 8 -1.</_>
<_>
6 3 8 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0290308594703674</threshold>
<left_val>-0.1856544017791748</left_val>
<right_val>0.1582998931407929</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 1 2 -1.</_>
<_>
0 1 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.0747697716578841e-004</threshold>
<left_node>1</left_node>
<right_val>-0.3378897011280060</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 0 4 2 -1.</_>
<_>
2 0 4 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>9.4140451401472092e-003</threshold>
<left_node>2</left_node>
<right_val>-0.3675057888031006</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
10 0 6 5 -1.</_>
<_>
12 0 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0222306102514267</threshold>
<left_val>-0.6420571804046631</left_val>
<right_val>0.1752641052007675</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 7 4 7 -1.</_>
<_>
8 7 2 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.6881791204214096e-003</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
9 3 2 8 -1.</_>
<_>
10 3 1 8 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.9184167981147766e-003</threshold>
<left_val>0.1647686958312988</left_val>
<right_val>-0.2272956073284149</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 1 4 4 -1.</_>
<_>
7 2 2 4 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-6.3269808888435364e-003</threshold>
<left_val>0.5738862752914429</left_val>
<right_val>0.0579312816262245</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 18 1 2 -1.</_>
<_>
0 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.7428940413519740e-004</threshold>
<left_val>-0.3528814017772675</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
17 2 3 1 -1.</_>
<_>
18 3 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>2.8672320768237114e-003</threshold>
<left_node>2</left_node>
<right_val>-0.4141938984394074</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
18 18 2 2 -1.</_>
<_>
18 18 1 1 2.</_>
<_>
19 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.4337199283763766e-004</threshold>
<left_val>0.2002764046192169</left_val>
<right_val>-0.2826314866542816</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 13 3 4 -1.</_>
<_>
16 14 3 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-9.1555183753371239e-003</threshold>
<left_val>-0.5450873970985413</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
3 10 4 3 -1.</_>
<_>
4 10 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.2892490485683084e-003</threshold>
<left_val>0.2532123923301697</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 8 4 5 -1.</_>
<_>
1 8 2 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.6453899443149567e-003</threshold>
<left_val>0.1763567030429840</left_val>
<right_val>-0.2305361926555634</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 8 14 12 -1.</_>
<_>
4 14 14 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0764855369925499</threshold>
<left_val>-0.7048028707504273</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 16 2 2 -1.</_>
<_>
17 16 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.8297360879369080e-004</threshold>
<left_node>2</left_node>
<right_val>0.2237505018711090</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
16 18 4 2 -1.</_>
<_>
17 18 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.6448920834809542e-004</threshold>
<left_val>0.1425154060125351</left_val>
<right_val>-0.2460895031690598</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 1 3 4 -1.</_>
<_>
18 2 1 4 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-7.9496540129184723e-003</threshold>
<left_val>-0.4212369918823242</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
3 0 4 7 -1.</_>
<_>
4 0 2 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.7398279681801796e-003</threshold>
<left_val>-0.4647572934627533</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 1 6 3 -1.</_>
<_>
8 1 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0104679800570011</threshold>
<left_val>-0.4731298089027405</left_val>
<right_val>0.1359892934560776</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 8 4 4 -1.</_>
<_>
13 8 2 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.4248689711093903e-003</threshold>
<left_node>1</left_node>
<right_val>0.3558753132820129</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 1 5 2 -1.</_>
<_>
6 2 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.7210211157798767e-003</threshold>
<left_node>2</left_node>
<right_val>-0.1589923948049545</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
1 7 5 12 -1.</_>
<_>
1 13 5 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0165391005575657</threshold>
<left_val>-0.6114267110824585</left_val>
<right_val>0.3377831876277924</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 17 6 3 -1.</_>
<_>
10 18 2 1 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0182581394910812</threshold>
<left_node>1</left_node>
<right_val>-0.7012097239494324</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
12 4 3 12 -1.</_>
<_>
13 4 1 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.1498139984905720e-003</threshold>
<left_val>0.3841418921947479</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
3 11 8 1 -1.</_>
<_>
5 13 4 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0143966302275658</threshold>
<left_val>0.0228735599666834</left_val>
<right_val>-0.4802901148796082</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 2 9 6 -1.</_>
<_>
5 4 9 2 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0489275082945824</threshold>
<left_node>1</left_node>
<right_val>-0.1221953034400940</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
14 1 1 2 -1.</_>
<_>
14 1 1 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-4.9874751130118966e-004</threshold>
<left_val>0.4489968121051788</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 1 16 1 -1.</_>
<_>
8 1 8 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0123383998870850</threshold>
<left_val>0.5830662250518799</left_val>
<right_val>-0.1559246033430100</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 8 3 2 -1.</_>
<_>
9 8 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.9237860366702080e-003</threshold>
<left_node>1</left_node>
<right_val>0.5788943767547607</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 14 1 2 -1.</_>
<_>
0 15 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.4515617850702256e-005</threshold>
<left_val>-0.2225205004215241</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
11 5 3 8 -1.</_>
<_>
11 7 3 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.0754460543394089e-003</threshold>
<left_val>0.2511818110942841</left_val>
<right_val>-0.1191598027944565</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 9 3 3 -1.</_>
<_>
6 10 3 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-2.2913129068911076e-003</threshold>
<left_val>0.2020304948091507</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 5 6 11 -1.</_>
<_>
2 5 2 11 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0116182295605540</threshold>
<left_node>2</left_node>
<right_val>-0.2499044984579086</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
1 0 4 14 -1.</_>
<_>
2 0 2 14 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0262312907725573</threshold>
<left_val>-0.7285898923873901</left_val>
<right_val>0.2248336970806122</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 18 2 2 -1.</_>
<_>
16 18 1 1 2.</_>
<_>
17 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.1525719785131514e-004</threshold>
<left_node>1</left_node>
<right_val>-0.3023762106895447</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 0 3 3 -1.</_>
<_>
17 1 1 3 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>5.4147760383784771e-003</threshold>
<left_node>2</left_node>
<right_val>-0.3446780145168304</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
19 5 1 4 -1.</_>
<_>
19 7 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.8281739950180054e-003</threshold>
<left_val>-0.5147011876106262</left_val>
<right_val>0.1876202970743179</right_val></_></_></trees>
<stage_threshold>-1.3592849969863892</stage_threshold>
<parent>8</parent>
<next>-1</next></_>
<_>
<!-- stage 10 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 10 6 1 -1.</_>
<_>
5 10 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.8577903807163239e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 10 3 1 -1.</_>
<_>
7 10 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.2660400718450546e-003</threshold>
<left_val>-0.3619781136512756</left_val>
<right_val>0.3453562855720520</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 7 2 10 -1.</_>
<_>
8 12 2 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0155092002823949</threshold>
<left_val>-0.2281450033187866</left_val>
<right_val>0.8052160143852234</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 9 6 2 -1.</_>
<_>
14 9 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0197306293994188</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
18 3 1 12 -1.</_>
<_>
14 7 1 4 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0528041310608387</threshold>
<left_val>0.2216223031282425</left_val>
<right_val>-0.2630726099014282</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
13 3 2 8 -1.</_>
<_>
11 5 2 4 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0341235511004925</threshold>
<left_val>0.8768774271011353</left_val>
<right_val>0.1514794975519180</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 2 2 3 -1.</_>
<_>
2 3 2 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-4.4995918869972229e-003</threshold>
<left_val>-0.5152047872543335</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 3 6 4 -1.</_>
<_>
0 3 3 2 2.</_>
<_>
3 5 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.8060150109231472e-003</threshold>
<left_val>0.3156319856643677</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
3 2 2 1 -1.</_>
<_>
4 2 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.5935899328906089e-005</threshold>
<left_val>0.1105265021324158</left_val>
<right_val>-0.3001616001129150</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 8 3 5 -1.</_>
<_>
13 8 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.5838904380798340e-003</threshold>
<left_node>1</left_node>
<right_val>0.5280817747116089</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
15 15 2 3 -1.</_>
<_>
14 16 2 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>4.2877299711108208e-003</threshold>
<left_node>2</left_node>
<right_val>-0.6369404196739197</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 18 3 2 -1.</_>
<_>
0 19 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.2141651026904583e-003</threshold>
<left_val>0.0359101705253124</left_val>
<right_val>-0.5433439016342163</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 17 1 3 -1.</_>
<_>
18 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.9250690760090947e-004</threshold>
<left_val>-0.4786733984947205</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 6 2 2 -1.</_>
<_>
5 7 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.5514569822698832e-003</threshold>
<left_node>2</left_node>
<right_val>-0.0914622768759727</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
2 7 16 2 -1.</_>
<_>
6 7 8 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0177905503660440</threshold>
<left_val>0.4561277925968170</left_val>
<right_val>0.0106282597407699</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 8 4 7 -1.</_>
<_>
17 8 2 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.5881261099129915e-003</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
14 9 4 5 -1.</_>
<_>
15 9 2 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.7412150520831347e-003</threshold>
<left_val>0.1619894951581955</left_val>
<right_val>-0.2911323904991150</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 6 3 14 -1.</_>
<_>
0 13 3 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.4753181282430887e-004</threshold>
<left_val>-0.2848221957683563</left_val>
<right_val>0.3390209078788757</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 3 3 1 -1.</_>
<_>
18 4 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-3.6593680270016193e-003</threshold>
<left_val>-0.5108960270881653</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
18 5 2 1 -1.</_>
<_>
18 5 1 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>2.4432500358670950e-003</threshold>
<left_node>2</left_node>
<right_val>-0.3215484917163849</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
18 0 2 18 -1.</_>
<_>
18 6 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0135464100167155</threshold>
<left_val>0.2735697925090790</left_val>
<right_val>-0.1206268966197968</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 0 13 12 -1.</_>
<_>
4 3 13 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.1124157011508942</threshold>
<left_node>1</left_node>
<right_val>0.3650527894496918</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
12 9 4 2 -1.</_>
<_>
13 9 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.5845299027860165e-003</threshold>
<left_val>0.4477399885654450</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
4 2 3 3 -1.</_>
<_>
3 3 3 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>6.3416222110390663e-003</threshold>
<left_val>-0.0975437536835670</left_val>
<right_val>-0.6169824004173279</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 10 6 3 -1.</_>
<_>
10 10 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.1398190706968307e-003</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
11 5 4 6 -1.</_>
<_>
11 5 2 6 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0823714733123779</threshold>
<left_val>0.6147822737693787</left_val>
<right_val>-0.1761246025562286</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
10 2 4 2 -1.</_>
<_>
11 2 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.1728888861835003e-003</threshold>
<left_val>0.2746239900588989</left_val>
<right_val>-0.5383396148681641</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 16 2 4 -1.</_>
<_>
4 18 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.2914117956534028e-004</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 18 8 2 -1.</_>
<_>
9 18 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0170792303979397</threshold>
<left_val>-0.4366978108882904</left_val>
<right_val>0.1793588995933533</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
19 9 1 8 -1.</_>
<_>
19 9 1 4 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-4.8665981739759445e-003</threshold>
<left_val>-0.0620177090167999</left_val>
<right_val>-0.5914124846458435</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 15 5 3 -1.</_>
<_>
0 16 5 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.3614661078900099e-003</threshold>
<left_val>-0.4343728125095367</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
19 4 1 15 -1.</_>
<_>
19 9 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0444822013378143</threshold>
<left_val>-0.6815791726112366</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
7 19 4 1 -1.</_>
<_>
8 19 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.8765870481729507e-003</threshold>
<left_val>-0.6866797208786011</left_val>
<right_val>0.1165793016552925</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 2 12 4 -1.</_>
<_>
6 3 12 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0231923200190067</threshold>
<left_node>1</left_node>
<right_val>0.4077670872211456</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 1 11 6 -1.</_>
<_>
4 3 11 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0450414307415485</threshold>
<left_val>0.3713751137256622</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 14 2 4 -1.</_>
<_>
0 15 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.3778830654919147e-003</threshold>
<left_val>-0.0711813867092133</left_val>
<right_val>-0.5389872789382935</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 9 4 5 -1.</_>
<_>
2 9 2 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.3468379620462656e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 5 2 4 -1.</_>
<_>
3 6 2 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>4.3169260025024414e-003</threshold>
<left_val>0.2318418025970459</left_val>
<right_val>-0.3844893872737885</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
1 17 6 3 -1.</_>
<_>
3 18 2 1 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.5682261697947979e-003</threshold>
<left_val>-0.2485719025135040</left_val>
<right_val>0.1251966953277588</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
11 0 6 6 -1.</_>
<_>
13 0 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0110577996820211</threshold>
<left_node>1</left_node>
<right_val>-0.3822847008705139</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
17 18 3 2 -1.</_>
<_>
17 19 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.6700251772999763e-004</threshold>
<left_val>-0.2738777995109558</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
18 17 1 3 -1.</_>
<_>
18 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.8536141548538581e-005</threshold>
<left_val>-0.0296645890921354</left_val>
<right_val>0.2838588953018189</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 7 15 3 -1.</_>
<_>
8 8 5 1 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0399723909795284</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
10 8 3 3 -1.</_>
<_>
11 9 1 1 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0168807804584503</threshold>
<left_val>0.6357060074806213</left_val>
<right_val>-0.1918942034244537</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 10 6 8 -1.</_>
<_>
0 12 6 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0560820512473583</threshold>
<left_val>-0.9009236097335815</left_val>
<right_val>0.1914550960063934</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 8 3 3 -1.</_>
<_>
10 8 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.4141261130571365e-003</threshold>
<left_node>1</left_node>
<right_val>0.4213257133960724</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
10 7 3 8 -1.</_>
<_>
11 7 1 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.1075859963893890e-003</threshold>
<left_node>2</left_node>
<right_val>0.5507156252861023</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
12 4 4 1 -1.</_>
<_>
13 4 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.3897320022806525e-003</threshold>
<left_val>-0.5044754147529602</left_val>
<right_val>-0.0408022701740265</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 1 11 4 -1.</_>
<_>
2 2 11 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0172317195683718</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 3 3 4 -1.</_>
<_>
0 4 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.0052720792591572e-003</threshold>
<left_val>-0.3156726956367493</left_val>
<right_val>0.5516824722290039</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
17 0 3 2 -1.</_>
<_>
17 1 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.5111181205138564e-004</threshold>
<left_val>0.0567363388836384</left_val>
<right_val>-0.2655394971370697</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 14 1 4 -1.</_>
<_>
19 15 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.0616729743778706e-003</threshold>
<left_val>-0.4963766038417816</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
1 16 2 4 -1.</_>
<_>
2 16 1 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.0434100404381752e-003</threshold>
<left_val>0.2562547922134399</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
3 13 4 3 -1.</_>
<_>
2 14 4 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>2.0041360985487700e-003</threshold>
<left_val>-0.2363777011632919</left_val>
<right_val>0.1256282031536102</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 14 4 3 -1.</_>
<_>
0 15 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.6680038794875145e-003</threshold>
<left_val>-0.5133150815963745</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
9 3 5 4 -1.</_>
<_>
9 4 5 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0103520900011063</threshold>
<left_node>2</left_node>
<right_val>0.3521429896354675</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
12 0 8 4 -1.</_>
<_>
12 1 8 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.9808359686285257e-003</threshold>
<left_val>-0.1662887930870056</left_val>
<right_val>0.1664941012859345</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 0 2 5 -1.</_>
<_>
18 0 1 5 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0108351903036237</threshold>
<left_node>1</left_node>
<right_val>-0.3892920911312103</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
14 3 1 4 -1.</_>
<_>
14 5 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.8211939390748739e-003</threshold>
<left_val>0.3546645939350128</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 15 3 2 -1.</_>
<_>
6 16 1 2 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-3.4161040093749762e-003</threshold>
<left_val>-0.4581452012062073</left_val>
<right_val>0.0458530187606812</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 7 4 8 -1.</_>
<_>
10 7 2 8 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.8807642199099064e-003</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
14 5 1 12 -1.</_>
<_>
10 9 1 4 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0349138900637627</threshold>
<left_val>0.1024037972092629</left_val>
<right_val>-0.2594524919986725</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 0 2 3 -1.</_>
<_>
4 1 2 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>4.8959217965602875e-003</threshold>
<left_val>0.2677854895591736</left_val>
<right_val>-0.4895980060100555</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 1 2 2 -1.</_>
<_>
18 1 2 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>5.8120768517255783e-003</threshold>
<left_node>1</left_node>
<right_val>0.3037706017494202</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 8 9 2 -1.</_>
<_>
6 9 9 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.5575949586927891e-003</threshold>
<left_val>-0.1806481927633286</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
7 8 13 4 -1.</_>
<_>
7 9 13 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.5241500698029995e-003</threshold>
<left_val>0.4148091077804565</left_val>
<right_val>-0.1979449987411499</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 7 3 4 -1.</_>
<_>
7 8 1 4 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0154929701238871</threshold>
<left_node>1</left_node>
<right_val>0.4780220985412598</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
9 18 2 2 -1.</_>
<_>
9 18 1 1 2.</_>
<_>
10 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.3261269961949438e-004</threshold>
<left_node>2</left_node>
<right_val>-0.3089103996753693</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 18 6 2 -1.</_>
<_>
6 18 3 1 2.</_>
<_>
9 19 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.1607619710266590e-003</threshold>
<left_val>-0.4022316038608551</left_val>
<right_val>0.1109884977340698</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 6 3 4 -1.</_>
<_>
6 7 1 4 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>3.5326189827173948e-003</threshold>
<left_node>1</left_node>
<right_val>0.2248906046152115</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 8 2 12 -1.</_>
<_>
5 8 1 6 2.</_>
<_>
6 14 1 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.3474999945610762e-003</threshold>
<left_val>0.1663186997175217</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
19 0 1 8 -1.</_>
<_>
19 0 1 4 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0291682109236717</threshold>
<left_val>-0.0740267783403397</left_val>
<right_val>-0.4574469923973084</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 11 4 6 -1.</_>
<_>
1 13 4 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0162425003945827</threshold>
<left_val>-0.4349718987941742</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 12 4 4 -1.</_>
<_>
6 12 2 4 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-7.5024510733783245e-003</threshold>
<left_val>0.1664609014987946</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
18 13 1 6 -1.</_>
<_>
18 16 1 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.7816389445215464e-003</threshold>
<left_val>-0.3915584981441498</left_val>
<right_val>0.0805713534355164</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 15 2 2 -1.</_>
<_>
16 15 1 1 2.</_>
<_>
17 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.2545823059044778e-005</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 15 2 2 -1.</_>
<_>
16 15 1 1 2.</_>
<_>
17 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.1626458773389459e-005</threshold>
<left_val>-0.4167973101139069</left_val>
<right_val>6.0808397829532623e-003</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
14 15 4 4 -1.</_>
<_>
14 15 2 2 2.</_>
<_>
16 17 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.3781189015135169e-004</threshold>
<left_val>0.3192054927349091</left_val>
<right_val>-0.0775062665343285</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 3 1 2 -1.</_>
<_>
4 4 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.0576970311813056e-004</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 3 3 4 -1.</_>
<_>
5 4 3 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0131078995764256</threshold>
<left_val>-0.3646284043788910</left_val>
<right_val>0.2239166051149368</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
2 1 3 1 -1.</_>
<_>
3 2 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-7.4203108670189977e-004</threshold>
<left_val>0.0683436170220375</left_val>
<right_val>-0.2959760129451752</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 8 3 5 -1.</_>
<_>
7 8 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.7575328759849072e-003</threshold>
<left_val>0.4574872851371765</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 9 1 8 -1.</_>
<_>
8 11 1 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.0043099541217089e-003</threshold>
<left_node>2</left_node>
<right_val>0.1805900037288666</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
14 10 4 4 -1.</_>
<_>
14 10 2 4 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0585617609322071</threshold>
<left_val>0.2655555903911591</left_val>
<right_val>-0.2038139998912811</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 16 9 3 -1.</_>
<_>
8 16 3 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0252952892333269</threshold>
<left_val>-0.5870481133460999</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
14 11 6 6 -1.</_>
<_>
14 13 6 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0498106591403484</threshold>
<left_val>-0.8444283008575440</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
9 16 5 2 -1.</_>
<_>
9 17 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.4564980994910002e-003</threshold>
<left_val>0.4401744008064270</left_val>
<right_val>3.7946549709886312e-003</right_val></_></_></trees>
<stage_threshold>-1.3664239645004272</stage_threshold>
<parent>9</parent>
<next>-1</next></_>
<_>
<!-- stage 11 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 10 12 1 -1.</_>
<_>
8 10 6 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0237959995865822</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
1 5 18 5 -1.</_>
<_>
7 5 6 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0429167188704014</threshold>
<left_val>2.1881549619138241e-003</left_val>
<right_val>-0.4964042007923126</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
15 9 2 3 -1.</_>
<_>
16 9 1 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.9466904066503048e-004</threshold>
<left_val>0.8371809720993042</left_val>
<right_val>-0.0302797593176365</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 14 20 6 -1.</_>
<_>
0 17 20 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0138956503942609</threshold>
<left_val>-0.3949576914310455</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 9 2 6 -1.</_>
<_>
4 9 1 3 2.</_>
<_>
5 12 1 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.2832138929516077e-003</threshold>
<left_node>2</left_node>
<right_val>-0.0386893004179001</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 1 12 15 -1.</_>
<_>
9 6 4 5 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.4844757914543152</threshold>
<left_val>0.8393334746360779</left_val>
<right_val>0.2311190962791443</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 20 1 -1.</_>
<_>
5 0 10 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.3761418461799622e-003</threshold>
<left_val>0.2309499979019165</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 0 12 1 -1.</_>
<_>
6 0 6 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.3793840557336807e-003</threshold>
<left_node>2</left_node>
<right_val>0.0916085317730904</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 0 10 6 -1.</_>
<_>
5 0 5 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0334152691066265</threshold>
<left_val>0.1146292984485626</left_val>
<right_val>-0.5480918288230896</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 0 4 3 -1.</_>
<_>
2 1 4 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-7.6022851280868053e-003</threshold>
<left_val>-0.5795956850051880</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 0 15 6 -1.</_>
<_>
7 2 5 2 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0762296169996262</threshold>
<left_node>2</left_node>
<right_val>0.3466677963733673</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 2 6 4 -1.</_>
<_>
3 2 3 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.7729479372501373e-003</threshold>
<left_val>0.1189967021346092</left_val>
<right_val>-0.2798354029655457</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 10 2 1 -1.</_>
<_>
15 10 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.2590490193106234e-004</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 7 6 9 -1.</_>
<_>
4 7 2 9 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.4475867226719856e-003</threshold>
<left_val>0.1440328955650330</left_val>
<right_val>-0.2805388867855072</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
1 0 15 18 -1.</_>
<_>
6 6 5 6 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.8022003173828125</threshold>
<left_val>0.6643000841140747</left_val>
<right_val>0.0548347681760788</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 5 1 3 -1.</_>
<_>
2 6 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-2.8851430397480726e-003</threshold>
<left_val>-0.3883669972419739</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
19 12 1 3 -1.</_>
<_>
19 13 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.2341480469331145e-003</threshold>
<left_val>-0.3673455119132996</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
19 13 1 2 -1.</_>
<_>
19 14 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.8669218813301995e-005</threshold>
<left_val>-0.0789823234081268</left_val>
<right_val>0.3018474876880646</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 5 7 12 -1.</_>
<_>
7 8 7 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1649180054664612</threshold>
<left_val>0.3888623118400574</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
15 9 3 2 -1.</_>
<_>
15 10 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.0784890037029982e-003</threshold>
<left_val>-0.2447739988565445</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
16 9 4 4 -1.</_>
<_>
17 9 2 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.8511860873550177e-003</threshold>
<left_val>0.4575313925743103</left_val>
<right_val>-0.0534997694194317</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 15 9 2 -1.</_>
<_>
13 15 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.2212301157414913e-003</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 15 10 1 -1.</_>
<_>
7 15 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.4995030146092176e-003</threshold>
<left_val>-0.2430385053157806</left_val>
<right_val>0.1588134020566940</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
15 13 4 3 -1.</_>
<_>
14 14 4 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0100987795740366</threshold>
<left_val>-0.5581660866737366</left_val>
<right_val>0.3219622969627380</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 17 2 3 -1.</_>
<_>
4 17 1 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.6468201112002134e-004</threshold>
<left_val>0.2457288950681686</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
12 18 8 2 -1.</_>
<_>
16 18 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.6263898946344852e-003</threshold>
<left_val>0.1809433996677399</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 7 12 6 -1.</_>
<_>
12 7 4 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0767914205789566</threshold>
<left_val>0.2663452923297882</left_val>
<right_val>-0.3505102992057800</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 16 1 2 -1.</_>
<_>
18 16 1 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-2.7685859240591526e-003</threshold>
<left_val>-0.4350436031818390</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
17 11 3 9 -1.</_>
<_>
17 14 3 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0256765298545361</threshold>
<left_node>2</left_node>
<right_val>-0.3514328002929688</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
16 9 4 2 -1.</_>
<_>
17 10 2 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-4.6753739006817341e-003</threshold>
<left_val>0.4104990959167481</left_val>
<right_val>0.0331448204815388</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 0 4 7 -1.</_>
<_>
17 0 2 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.7022559233009815e-003</threshold>
<left_node>1</left_node>
<right_val>-0.4973830878734589</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 2 2 18 -1.</_>
<_>
5 11 2 9 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0162080004811287</threshold>
<left_val>-0.1794546991586685</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 9 8 9 -1.</_>
<_>
7 9 4 9 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0110248699784279</threshold>
<left_val>0.4045715034008026</left_val>
<right_val>-0.0430775806307793</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 10 2 1 -1.</_>
<_>
6 10 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.7911361586302519e-004</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 5 15 9 -1.</_>
<_>
10 8 5 3 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1813969016075134</threshold>
<left_val>0.5186663866043091</left_val>
<right_val>-0.0753649696707726</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 18 4 2 -1.</_>
<_>
0 19 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.2972550466656685e-003</threshold>
<left_val>-0.5064393281936646</left_val>
<right_val>-0.0172262992709875</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 12 10 3 -1.</_>
<_>
0 13 10 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0204316601157188</threshold>
<left_node>1</left_node>
<right_val>-0.7058460116386414</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
1 14 1 2 -1.</_>
<_>
1 15 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.6622639959678054e-003</threshold>
<left_node>2</left_node>
<right_val>-0.4510225057601929</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 1 4 2 -1.</_>
<_>
6 1 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.7155179996043444e-003</threshold>
<left_val>-0.4459821879863739</left_val>
<right_val>0.1388610005378723</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 13 1 2 -1.</_>
<_>
2 14 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.2074210796272382e-005</threshold>
<left_val>-0.2217022925615311</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 13 7 3 -1.</_>
<_>
0 14 7 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.3489577993750572e-003</threshold>
<left_node>2</left_node>
<right_val>-0.4655444920063019</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
15 6 3 5 -1.</_>
<_>
16 7 1 5 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0132266096770763</threshold>
<left_val>0.5485987067222595</left_val>
<right_val>0.0679701790213585</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 10 2 1 -1.</_>
<_>
14 10 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.5071720117703080e-003</threshold>
<left_val>0.4648112952709198</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 3 3 5 -1.</_>
<_>
6 4 1 5 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>8.7646767497062683e-003</threshold>
<left_node>2</left_node>
<right_val>0.2799291014671326</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 3 3 5 -1.</_>
<_>
6 4 1 5 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0105426497757435</threshold>
<left_val>0.2123970985412598</left_val>
<right_val>-0.2251451015472412</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 5 3 2 -1.</_>
<_>
18 6 1 2 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-6.4357798546552658e-003</threshold>
<left_val>-0.4181163012981415</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 0 2 3 -1.</_>
<_>
3 1 2 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>7.8919027000665665e-003</threshold>
<left_node>2</left_node>
<right_val>-0.6221169829368591</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
11 5 2 1 -1.</_>
<_>
12 5 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.8666176705155522e-005</threshold>
<left_val>0.2718409001827240</left_val>
<right_val>-0.0429345592856407</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 6 3 3 -1.</_>
<_>
15 7 3 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>8.2855960354208946e-003</threshold>
<left_node>1</left_node>
<right_val>0.3466930985450745</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 16 1 4 -1.</_>
<_>
2 17 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.4834279580973089e-005</threshold>
<left_node>2</left_node>
<right_val>0.0720087885856628</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
2 13 5 2 -1.</_>
<_>
2 13 5 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>2.4197530001401901e-003</threshold>
<left_val>-0.3777442872524262</left_val>
<right_val>0.1787102967500687</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 5 1 2 -1.</_>
<_>
12 6 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.7930121440440416e-004</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
10 3 6 4 -1.</_>
<_>
10 4 6 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.6035388261079788e-003</threshold>
<left_val>0.1681724041700363</left_val>
<right_val>-0.2765980958938599</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
13 8 4 6 -1.</_>
<_>
13 8 2 3 2.</_>
<_>
15 11 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.4534510970115662e-003</threshold>
<left_val>0.0695867314934731</left_val>
<right_val>0.6728498935699463</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 15 3 2 -1.</_>
<_>
7 16 1 2 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>4.4707441702485085e-003</threshold>
<left_node>1</left_node>
<right_val>-0.4218375980854034</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 10 4 3 -1.</_>
<_>
17 11 2 3 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-9.1664772480726242e-003</threshold>
<left_val>0.3631944060325623</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
1 2 6 8 -1.</_>
<_>
4 2 3 8 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0711680129170418</threshold>
<left_val>-0.5952010750770569</left_val>
<right_val>0.0233220793306828</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 0 15 1 -1.</_>
<_>
9 0 5 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.6344379186630249e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
15 13 2 2 -1.</_>
<_>
15 13 2 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-5.8278841897845268e-003</threshold>
<left_val>-0.3510842025279999</left_val>
<right_val>0.2736631035804749</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
14 2 6 1 -1.</_>
<_>
17 2 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.5245670694857836e-003</threshold>
<left_val>0.1498972028493881</left_val>
<right_val>-0.2493329048156738</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 0 3 3 -1.</_>
<_>
16 1 1 3 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>5.6592230685055256e-003</threshold>
<left_node>1</left_node>
<right_val>-0.3473316133022308</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
18 7 2 1 -1.</_>
<_>
18 7 1 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>4.0714079514145851e-003</threshold>
<left_node>2</left_node>
<right_val>-0.4735985994338989</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
4 3 3 4 -1.</_>
<_>
3 4 3 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0119215501472354</threshold>
<left_val>-0.4001652896404266</left_val>
<right_val>0.1576768010854721</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 8 4 4 -1.</_>
<_>
16 9 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.8874024115502834e-004</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 4 2 4 -1.</_>
<_>
6 5 2 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>1.4633700484409928e-003</threshold>
<left_val>0.2103355973958969</left_val>
<right_val>-0.1531770974397659</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
16 14 4 6 -1.</_>
<_>
18 14 2 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.6617081649601460e-003</threshold>
<left_val>0.2348176985979080</left_val>
<right_val>-0.3718707859516144</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 9 6 3 -1.</_>
<_>
9 10 2 1 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0177705697715282</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 9 3 4 -1.</_>
<_>
9 9 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.8388901203870773e-003</threshold>
<left_val>-0.1641412973403931</left_val>
<right_val>0.4824588894844055</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 0 6 3 -1.</_>
<_>
10 0 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0100585296750069</threshold>
<left_val>-0.5438815951347351</left_val>
<right_val>0.2812717854976654</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 8 3 3 -1.</_>
<_>
0 9 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.8392190579324961e-003</threshold>
<left_node>1</left_node>
<right_val>-0.3857780098915100</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
18 16 1 3 -1.</_>
<_>
18 17 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.8546267468482256e-004</threshold>
<left_val>-0.3286094963550568</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
18 17 1 3 -1.</_>
<_>
18 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.2725168896140531e-005</threshold>
<left_val>-0.0466547682881355</left_val>
<right_val>0.2774116992950440</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 5 3 3 -1.</_>
<_>
16 6 3 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>5.1506902091205120e-003</threshold>
<left_node>1</left_node>
<right_val>0.2734803855419159</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
12 8 1 6 -1.</_>
<_>
10 10 1 2 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-8.3640925586223602e-003</threshold>
<left_val>0.1431567072868347</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
10 3 6 12 -1.</_>
<_>
12 3 2 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.8340323418378830e-003</threshold>
<left_val>0.0540493614971638</left_val>
<right_val>-0.3626655936241150</right_val></_></_></trees>
<stage_threshold>-1.3621879816055298</stage_threshold>
<parent>10</parent>
<next>-1</next></_>
<_>
<!-- stage 12 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 6 5 14 -1.</_>
<_>
8 13 5 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.1711488962173462</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
1 17 19 2 -1.</_>
<_>
1 18 19 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.2740959431976080e-003</threshold>
<left_val>-0.5564535856246948</left_val>
<right_val>0.0550181306898594</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
14 7 2 4 -1.</_>
<_>
14 9 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.8062200658023357e-003</threshold>
<left_val>0.0111902002245188</left_val>
<right_val>0.7955148816108704</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 13 2 4 -1.</_>
<_>
3 15 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.8143800552934408e-003</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
1 2 18 12 -1.</_>
<_>
7 6 6 4 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.4279597103595734</threshold>
<left_val>0.5840831995010376</left_val>
<right_val>-0.0139401797205210</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 0 4 5 -1.</_>
<_>
2 0 2 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.3261981122195721e-003</threshold>
<left_val>0.1665998995304108</left_val>
<right_val>-0.5016152262687683</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 14 6 6 -1.</_>
<_>
17 14 3 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0107020195573568</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 16 16 3 -1.</_>
<_>
8 16 8 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.3792198672890663e-003</threshold>
<left_val>-0.4065352082252502</left_val>
<right_val>0.1287705004215241</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 17 8 1 -1.</_>
<_>
10 17 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.8895571380853653e-003</threshold>
<left_val>0.4399087131023407</left_val>
<right_val>-0.7899739742279053</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 7 4 4 -1.</_>
<_>
4 9 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0100123202428222</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 0 18 9 -1.</_>
<_>
6 3 6 3 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.3435631096363068</threshold>
<left_val>-0.2561636865139008</left_val>
<right_val>0.4637744128704071</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 9 6 2 -1.</_>
<_>
2 9 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.2859530337154865e-003</threshold>
<left_val>0.5801448822021484</left_val>
<right_val>-0.0546094514429569</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 0 3 1 -1.</_>
<_>
16 0 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.5099609736353159e-003</threshold>
<left_val>-0.6405451893806458</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 0 2 1 -1.</_>
<_>
17 0 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.9597719549201429e-004</threshold>
<left_node>2</left_node>
<right_val>0.3895671069622040</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
18 14 1 2 -1.</_>
<_>
18 15 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.0984730033669621e-004</threshold>
<left_val>-0.3411337137222290</left_val>
<right_val>0.1111171990633011</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 0 3 2 -1.</_>
<_>
5 0 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.2580990809947252e-003</threshold>
<left_val>-0.7341446280479431</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 14 3 1 -1.</_>
<_>
7 15 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-3.8750080857425928e-003</threshold>
<left_val>-0.6350858211517334</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 11 7 3 -1.</_>
<_>
0 12 7 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0145424697548151</threshold>
<left_val>0.1763252019882202</left_val>
<right_val>-0.6669527292251587</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 14 19 3 -1.</_>
<_>
1 15 19 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0266160704195499</threshold>
<left_node>1</left_node>
<right_val>-0.7583190202713013</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
15 1 3 5 -1.</_>
<_>
16 1 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.2236141636967659e-003</threshold>
<left_node>2</left_node>
<right_val>-0.6262210011482239</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
14 2 6 4 -1.</_>
<_>
14 2 3 2 2.</_>
<_>
17 4 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.8677811175584793e-003</threshold>
<left_val>-0.0318109504878521</left_val>
<right_val>0.4103187918663025</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 10 2 2 -1.</_>
<_>
16 10 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.0499180061742663e-003</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
14 11 3 4 -1.</_>
<_>
14 13 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.3986180312931538e-003</threshold>
<left_val>-0.5293647050857544</left_val>
<right_val>0.0226202793419361</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
16 5 3 15 -1.</_>
<_>
17 5 1 15 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0110095301643014</threshold>
<left_val>0.3052845001220703</left_val>
<right_val>-0.7465983033180237</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 10 14 3 -1.</_>
<_>
6 11 14 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0239578895270824</threshold>
<left_val>-0.5802757143974304</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 17 12 3 -1.</_>
<_>
6 17 4 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.6849190946668386e-003</threshold>
<left_val>0.3098559081554413</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 16 16 2 -1.</_>
<_>
4 16 8 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.4864700865000486e-003</threshold>
<left_val>-0.3149890899658203</left_val>
<right_val>0.1321973055601120</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 3 6 16 -1.</_>
<_>
7 7 6 8 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1915034055709839</threshold>
<left_val>0.4364647865295410</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 1 12 3 -1.</_>
<_>
10 1 6 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.0496361479163170e-003</threshold>
<left_val>0.1716579943895340</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
13 1 4 4 -1.</_>
<_>
13 3 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0122363399714231</threshold>
<left_val>-0.3638201951980591</left_val>
<right_val>0.2396752983331680</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 18 3 2 -1.</_>
<_>
7 18 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.0347100216895342e-003</threshold>
<left_val>-0.5976858139038086</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 2 3 5 -1.</_>
<_>
3 2 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.5528031662106514e-003</threshold>
<left_val>-0.5416460037231445</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
10 0 3 3 -1.</_>
<_>
11 0 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.2379259355366230e-003</threshold>
<left_val>-0.5387029051780701</left_val>
<right_val>0.1844422966241837</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 0 10 4 -1.</_>
<_>
10 0 5 2 2.</_>
<_>
15 2 5 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.0606305748224258e-003</threshold>
<left_node>1</left_node>
<right_val>0.3103973865509033</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 16 6 3 -1.</_>
<_>
3 16 3 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.1239038109779358e-003</threshold>
<left_val>0.1805239021778107</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 17 6 3 -1.</_>
<_>
3 17 3 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.5246899351477623e-003</threshold>
<left_val>-0.4734764099121094</left_val>
<right_val>0.0153494598343968</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 1 3 2 -1.</_>
<_>
17 2 1 2 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>5.2378959953784943e-003</threshold>
<left_node>1</left_node>
<right_val>-0.4585973918437958</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 1 3 3 -1.</_>
<_>
3 2 3 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-9.4280708581209183e-003</threshold>
<left_val>-0.6332333087921143</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 0 4 5 -1.</_>
<_>
7 0 2 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.9351589083671570e-003</threshold>
<left_val>-0.6153936982154846</left_val>
<right_val>0.1692043989896774</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 17 3 3 -1.</_>
<_>
5 18 1 1 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.7211041934788227e-003</threshold>
<left_val>-0.6586161255836487</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 15 3 3 -1.</_>
<_>
5 16 1 1 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.0800300240516663e-003</threshold>
<left_node>2</left_node>
<right_val>-0.7144613862037659</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
1 10 6 1 -1.</_>
<_>
3 10 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.3125250376760960e-003</threshold>
<left_val>0.3433657884597778</left_val>
<right_val>-0.0462658591568470</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 3 20 2 -1.</_>
<_>
5 3 10 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0231790505349636</threshold>
<left_node>1</left_node>
<right_val>0.3633871078491211</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 1 15 4 -1.</_>
<_>
7 1 5 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0213900804519653</threshold>
<left_val>0.1827684044837952</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
1 10 18 8 -1.</_>
<_>
10 10 9 8 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.2376140952110291</threshold>
<left_val>0.6167513728141785</left_val>
<right_val>-0.3426147103309631</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 7 1 4 -1.</_>
<_>
16 9 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.1705040708184242e-003</threshold>
<left_node>1</left_node>
<right_val>0.3005678951740265</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
17 9 2 1 -1.</_>
<_>
18 9 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.8210679930634797e-005</threshold>
<left_val>-0.3411675989627838</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
17 5 3 7 -1.</_>
<_>
18 5 1 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.5145919322967529e-003</threshold>
<left_val>0.2338685989379883</left_val>
<right_val>-0.4215052127838135</right_val></_></_></trees>
<stage_threshold>-1.3905019760131836</stage_threshold>
<parent>11</parent>
<next>-1</next></_>
<_>
<!-- stage 13 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 10 12 1 -1.</_>
<_>
8 10 6 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0227433796972036</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
15 9 2 6 -1.</_>
<_>
15 9 1 3 2.</_>
<_>
16 12 1 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.8450849456712604e-003</threshold>
<left_val>-0.0895522683858871</left_val>
<right_val>0.7477834224700928</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
1 6 16 10 -1.</_>
<_>
1 11 16 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.1333817988634110</threshold>
<left_val>-0.4450423121452332</left_val>
<right_val>-0.0175809208303690</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 12 19 8 -1.</_>
<_>
1 16 19 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0636084899306297</threshold>
<left_val>-0.3773922026157379</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 4 12 9 -1.</_>
<_>
8 7 4 3 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.2519995868206024</threshold>
<left_val>0.4908803105354309</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 2 9 9 -1.</_>
<_>
5 5 9 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1214423030614853</threshold>
<left_val>0.6382591724395752</left_val>
<right_val>-0.1182217001914978</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 0 3 6 -1.</_>
<_>
14 0 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.6287150103598833e-003</threshold>
<left_node>1</left_node>
<right_val>-0.4692674875259399</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
19 16 1 3 -1.</_>
<_>
18 17 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>3.0568530783057213e-003</threshold>
<left_node>2</left_node>
<right_val>-0.6510121822357178</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
17 17 1 2 -1.</_>
<_>
17 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.1901780504267663e-005</threshold>
<left_val>-0.1163925975561142</left_val>
<right_val>0.3018881976604462</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 9 4 2 -1.</_>
<_>
2 9 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.6189720481634140e-003</threshold>
<left_node>1</left_node>
<right_val>-0.2089190930128098</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
3 0 3 19 -1.</_>
<_>
4 0 1 19 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.8283469835296273e-003</threshold>
<left_node>2</left_node>
<right_val>-0.1985930055379868</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
4 13 4 1 -1.</_>
<_>
5 14 2 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-3.9073298685252666e-003</threshold>
<left_val>-0.3445425927639008</left_val>
<right_val>0.3714081943035126</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 0 4 1 -1.</_>
<_>
18 0 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.3928240928798914e-004</threshold>
<left_val>-0.1535657048225403</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
10 0 4 4 -1.</_>
<_>
11 0 2 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.7175789475440979e-003</threshold>
<left_node>2</left_node>
<right_val>-0.5090423822402954</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
9 0 3 5 -1.</_>
<_>
10 0 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.1694628782570362e-003</threshold>
<left_val>0.3561800122261047</left_val>
<right_val>-0.5577322840690613</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 4 1 3 -1.</_>
<_>
2 5 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>2.5797619018703699e-003</threshold>
<left_node>1</left_node>
<right_val>-0.4209643900394440</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
3 4 2 3 -1.</_>
<_>
2 5 2 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-6.0318140313029289e-003</threshold>
<left_val>-0.4399986863136292</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 14 3 3 -1.</_>
<_>
6 15 1 3 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>6.4257727935910225e-003</threshold>
<left_val>0.1887357980012894</left_val>
<right_val>-0.4519174993038178</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 0 2 2 -1.</_>
<_>
2 0 1 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>3.4354510717093945e-003</threshold>
<left_node>1</left_node>
<right_val>0.2739546895027161</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 2 6 1 -1.</_>
<_>
3 2 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.3672808893024921e-003</threshold>
<left_node>2</left_node>
<right_val>0.2380850017070770</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 2 4 5 -1.</_>
<_>
2 2 2 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.0294289570301771e-003</threshold>
<left_val>-0.0475861504673958</left_val>
<right_val>-0.4815962910652161</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 0 4 4 -1.</_>
<_>
3 0 2 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.8436429351568222e-003</threshold>
<left_val>-0.4932515025138855</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 16 3 1 -1.</_>
<_>
7 17 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>3.0318649951368570e-003</threshold>
<left_node>2</left_node>
<right_val>-0.4710946083068848</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
16 3 4 2 -1.</_>
<_>
17 4 2 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0116912499070168</threshold>
<left_val>-0.5876376032829285</left_val>
<right_val>0.1484048962593079</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 19 2 1 -1.</_>
<_>
17 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.5642758272588253e-005</threshold>
<left_node>1</left_node>
<right_val>0.2078777998685837</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
17 18 2 1 -1.</_>
<_>
18 18 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.9199966674204916e-005</threshold>
<left_node>2</left_node>
<right_val>-0.4219917058944702</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
17 16 1 3 -1.</_>
<_>
17 17 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.8953890432603657e-004</threshold>
<left_val>-0.3465768992900848</left_val>
<right_val>0.2480928003787994</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 8 3 3 -1.</_>
<_>
9 9 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.0080421604216099e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 17 5 2 -1.</_>
<_>
2 18 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.0496991025283933e-004</threshold>
<left_val>-0.2973163127899170</left_val>
<right_val>0.0631331875920296</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 10 8 3 -1.</_>
<_>
8 10 4 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.1637818366289139e-003</threshold>
<left_val>0.6349964141845703</left_val>
<right_val>-0.1496534943580627</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 15 2 3 -1.</_>
<_>
16 16 2 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>4.9255997873842716e-003</threshold>
<left_node>1</left_node>
<right_val>-0.5870906710624695</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 8 5 2 -1.</_>
<_>
6 8 5 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0199859905987978</threshold>
<left_val>0.4194697141647339</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
11 0 3 4 -1.</_>
<_>
11 2 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.5322928130626678e-003</threshold>
<left_val>-0.1339398026466370</left_val>
<right_val>0.2613128125667572</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 2 3 3 -1.</_>
<_>
18 3 1 3 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>5.1231118850409985e-003</threshold>
<left_node>1</left_node>
<right_val>-0.3639743030071259</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 4 3 2 -1.</_>
<_>
16 5 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.0335211087949574e-004</threshold>
<left_node>2</left_node>
<right_val>-0.1177612021565437</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
14 0 6 6 -1.</_>
<_>
14 0 3 3 2.</_>
<_>
17 3 3 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.9234900139272213e-003</threshold>
<left_val>-0.0125295100733638</left_val>
<right_val>0.4613231122493744</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 2 10 4 -1.</_>
<_>
6 4 10 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0359676703810692</threshold>
<left_node>1</left_node>
<right_val>0.4599137902259827</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 6 9 2 -1.</_>
<_>
5 7 9 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.5072569996118546e-003</threshold>
<left_node>2</left_node>
<right_val>0.3218939006328583</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
7 6 6 3 -1.</_>
<_>
7 7 6 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0108210500329733</threshold>
<left_val>0.3042351901531220</left_val>
<right_val>-0.2076997011899948</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 0 3 1 -1.</_>
<_>
18 1 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-3.7279170937836170e-003</threshold>
<left_val>-0.4705623984336853</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 0 12 2 -1.</_>
<_>
14 0 6 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.9352466166019440e-003</threshold>
<left_val>0.3136189877986908</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
16 2 4 2 -1.</_>
<_>
18 2 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.9792140014469624e-003</threshold>
<left_val>-0.1855935007333756</left_val>
<right_val>0.3081119060516357</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 4 4 1 -1.</_>
<_>
10 4 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.9110339926555753e-003</threshold>
<left_node>1</left_node>
<right_val>-0.4499742984771729</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 4 2 3 -1.</_>
<_>
4 5 2 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-6.8130958825349808e-003</threshold>
<left_val>-0.4466395080089569</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
16 8 4 8 -1.</_>
<_>
17 8 2 8 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.4241990912705660e-004</threshold>
<left_val>0.2537398934364319</left_val>
<right_val>-0.0677948668599129</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 19 16 1 -1.</_>
<_>
9 19 8 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.8487721942365170e-003</threshold>
<left_node>1</left_node>
<right_val>0.2177778035402298</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 19 12 1 -1.</_>
<_>
10 19 6 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.2816660348325968e-003</threshold>
<left_val>0.0741510093212128</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
2 19 4 1 -1.</_>
<_>
4 19 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.1166459880769253e-003</threshold>
<left_val>0.1376267969608307</left_val>
<right_val>-0.4571655094623566</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 5 2 8 -1.</_>
<_>
12 7 2 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.7191308587789536e-003</threshold>
<left_node>1</left_node>
<right_val>-0.2020619958639145</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 10 1 2 -1.</_>
<_>
8 10 1 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>1.9458220340311527e-003</threshold>
<left_node>2</left_node>
<right_val>0.5161374211311340</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
15 3 3 12 -1.</_>
<_>
16 3 1 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.7544110305607319e-003</threshold>
<left_val>0.1820991933345795</left_val>
<right_val>-0.2492770999670029</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 14 4 3 -1.</_>
<_>
16 15 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.5033212304115295e-003</threshold>
<left_node>1</left_node>
<right_val>-0.6083135008811951</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
3 0 3 2 -1.</_>
<_>
4 0 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.3260021116584539e-003</threshold>
<left_node>2</left_node>
<right_val>-0.4578379094600678</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
13 13 3 6 -1.</_>
<_>
14 13 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.0675291568040848e-003</threshold>
<left_val>-0.4626454114913940</left_val>
<right_val>0.1311458945274353</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 12 2 2 -1.</_>
<_>
2 12 2 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-1.4921430265530944e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
1 8 1 9 -1.</_>
<_>
1 11 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0137552004307508</threshold>
<left_val>-0.4348564147949219</left_val>
<right_val>0.2038159966468811</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
1 9 2 2 -1.</_>
<_>
2 9 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.3531019259244204e-004</threshold>
<left_val>-0.3248085975646973</left_val>
<right_val>0.1967971026897430</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 9 2 3 -1.</_>
<_>
12 10 2 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-1.0971709853038192e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
10 14 4 6 -1.</_>
<_>
11 14 2 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.1464130841195583e-003</threshold>
<left_val>0.2235444039106369</left_val>
<right_val>-0.2503635883331299</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
11 6 4 8 -1.</_>
<_>
12 6 2 8 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0103435898199677</threshold>
<left_val>-0.2750056982040405</left_val>
<right_val>0.3284736871719360</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 6 14 14 -1.</_>
<_>
5 13 14 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1307681053876877</threshold>
<left_val>-0.7797464132308960</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 4 8 3 -1.</_>
<_>
6 5 8 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.7650436908006668e-003</threshold>
<left_val>0.3835664987564087</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
1 16 1 3 -1.</_>
<_>
1 17 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.0066180624999106e-004</threshold>
<left_val>-0.3084929883480072</left_val>
<right_val>0.0557130500674248</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 1 4 3 -1.</_>
<_>
4 2 4 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0107763102278113</threshold>
<left_val>-0.5307996869087219</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
17 3 3 3 -1.</_>
<_>
16 4 3 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>7.3227831162512302e-003</threshold>
<left_node>2</left_node>
<right_val>0.3077637851238251</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
15 3 5 15 -1.</_>
<_>
15 8 5 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.2126387953758240</threshold>
<left_val>-0.6519067287445068</left_val>
<right_val>2.3253040853887796e-003</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 9 4 6 -1.</_>
<_>
15 9 2 3 2.</_>
<_>
17 12 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.5717170946300030e-003</threshold>
<left_node>1</left_node>
<right_val>0.2429659962654114</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 7 3 3 -1.</_>
<_>
15 8 3 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0163672100752592</threshold>
<left_val>0.4086779057979584</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
11 5 6 9 -1.</_>
<_>
13 5 2 9 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0150867896154523</threshold>
<left_val>0.1529923975467682</left_val>
<right_val>-0.2556149959564209</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 15 2 3 -1.</_>
<_>
15 16 2 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>4.5563760213553905e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 17 7 3 -1.</_>
<_>
0 18 7 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.2980518452823162e-003</threshold>
<left_val>0.0862513035535812</left_val>
<right_val>-0.5142557024955750</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
16 8 4 7 -1.</_>
<_>
17 9 2 7 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0239712093025446</threshold>
<left_val>-0.6849169731140137</left_val>
<right_val>0.3926008045673370</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 16 1 3 -1.</_>
<_>
14 17 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>3.5279770381748676e-003</threshold>
<left_node>1</left_node>
<right_val>-0.5898901820182800</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
12 17 8 1 -1.</_>
<_>
16 17 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.4452237673103809e-003</threshold>
<left_val>0.4199798107147217</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
14 16 2 4 -1.</_>
<_>
14 18 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.1267702626064420e-004</threshold>
<left_val>-0.2560532987117767</left_val>
<right_val>0.0793930068612099</right_val></_></_></trees>
<stage_threshold>-1.3378640413284302</stage_threshold>
<parent>12</parent>
<next>-1</next></_>
<_>
<!-- stage 14 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 10 12 1 -1.</_>
<_>
8 10 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0276914592832327</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 9 2 2 -1.</_>
<_>
5 9 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.3043059734627604e-003</threshold>
<left_val>-0.1303724944591522</left_val>
<right_val>0.7810835838317871</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
7 10 9 2 -1.</_>
<_>
10 10 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0194304604083300</threshold>
<left_val>0.0144807295873761</left_val>
<right_val>-0.3718458116054535</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 3 13 9 -1.</_>
<_>
5 6 13 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1223504021763802</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 7 5 2 -1.</_>
<_>
6 8 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.8456647247076035e-003</threshold>
<left_val>0.2843722999095917</left_val>
<right_val>-0.2367583066225052</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 5 12 14 -1.</_>
<_>
9 5 4 14 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0743500962853432</threshold>
<left_val>0.5817487835884094</left_val>
<right_val>-0.0280415508896112</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 8 2 10 -1.</_>
<_>
18 13 2 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.4055661894381046e-003</threshold>
<left_val>-0.3374863862991333</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 1 4 4 -1.</_>
<_>
9 1 2 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.7805580068379641e-003</threshold>
<left_val>-0.4623272120952606</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 0 20 7 -1.</_>
<_>
5 0 10 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0629970878362656</threshold>
<left_val>0.4207010865211487</left_val>
<right_val>-1.6759809805080295e-003</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 0 4 4 -1.</_>
<_>
11 0 2 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.5793630890548229e-003</threshold>
<left_val>-0.6461235284805298</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
13 1 3 2 -1.</_>
<_>
14 1 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.2814329713582993e-003</threshold>
<left_val>-0.4679610133171082</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
12 0 8 1 -1.</_>
<_>
16 0 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.9111520163714886e-003</threshold>
<left_val>-0.0255948100239038</left_val>
<right_val>0.3346031010150909</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 3 4 6 -1.</_>
<_>
0 3 2 3 2.</_>
<_>
2 6 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.5144959110766649e-003</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
1 0 4 5 -1.</_>
<_>
3 0 2 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.8226250112056732e-003</threshold>
<left_val>0.1114350035786629</left_val>
<right_val>-0.3054972887039185</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
4 5 1 3 -1.</_>
<_>
3 6 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-3.5309740342199802e-003</threshold>
<left_val>-0.3778940141201019</left_val>
<right_val>0.2932415902614594</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 14 4 2 -1.</_>
<_>
4 14 2 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-1.6653330530971289e-003</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
3 13 16 7 -1.</_>
<_>
11 13 8 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0533260181546211</threshold>
<left_val>0.1723686009645462</left_val>
<right_val>-0.3902606070041657</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 1 9 4 -1.</_>
<_>
5 2 9 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.0891316756606102e-003</threshold>
<left_val>-0.0162908006459475</left_val>
<right_val>0.3943473100662231</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 1 3 3 -1.</_>
<_>
5 1 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.7783260922878981e-003</threshold>
<left_val>-0.5994725823402405</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 0 10 1 -1.</_>
<_>
5 0 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.9123809225857258e-003</threshold>
<left_node>2</left_node>
<right_val>0.3475525975227356</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 6 5 4 -1.</_>
<_>
7 7 5 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0216761007905006</threshold>
<left_val>0.3396619856357575</left_val>
<right_val>-0.1272906959056854</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 4 2 2 -1.</_>
<_>
18 4 1 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>4.8390422016382217e-003</threshold>
<left_node>1</left_node>
<right_val>-0.3686085939407349</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
11 7 3 3 -1.</_>
<_>
12 8 1 1 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.3583313971757889e-003</threshold>
<left_val>0.3608345091342926</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
16 16 2 2 -1.</_>
<_>
16 16 1 1 2.</_>
<_>
17 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.7209360743872821e-004</threshold>
<left_val>0.0551498308777809</left_val>
<right_val>-0.3888871073722839</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 5 1 3 -1.</_>
<_>
2 6 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>2.4114940315485001e-003</threshold>
<left_node>1</left_node>
<right_val>-0.3484646081924439</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 10 2 3 -1.</_>
<_>
6 11 2 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-2.2250239271670580e-003</threshold>
<left_val>0.2563999891281128</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 5 2 14 -1.</_>
<_>
0 12 2 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.9994249604642391e-003</threshold>
<left_val>-0.3308643996715546</left_val>
<right_val>0.0639430880546570</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 12 5 2 -1.</_>
<_>
14 13 5 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0126534597948194</threshold>
<left_node>1</left_node>
<right_val>-0.6538289189338684</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 4 3 5 -1.</_>
<_>
6 5 1 5 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>9.6980258822441101e-003</threshold>
<left_node>2</left_node>
<right_val>0.3273011147975922</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 8 20 6 -1.</_>
<_>
0 10 20 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0466881617903709</threshold>
<left_val>6.1174212023615837e-003</left_val>
<right_val>-0.5096886754035950</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 10 2 2 -1.</_>
<_>
15 10 1 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>1.7876239726319909e-003</threshold>
<left_node>1</left_node>
<right_val>0.2580803036689758</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
1 15 14 2 -1.</_>
<_>
8 15 7 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0123152304440737</threshold>
<left_node>2</left_node>
<right_val>0.1836757063865662</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
2 14 4 5 -1.</_>
<_>
4 14 2 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.9714429080486298e-003</threshold>
<left_val>0.0930178835988045</left_val>
<right_val>-0.3348929882049561</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 15 2 3 -1.</_>
<_>
16 16 2 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-4.6226778067648411e-003</threshold>
<left_val>-0.6085343956947327</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 0 6 4 -1.</_>
<_>
7 0 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0189499892294407</threshold>
<left_val>-0.6218826770782471</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 0 14 20 -1.</_>
<_>
6 10 14 10 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.2678753137588501</threshold>
<left_val>-0.4450582861900330</left_val>
<right_val>0.1146159991621971</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 1 1 9 -1.</_>
<_>
13 4 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.3505371324717999e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
15 0 1 4 -1.</_>
<_>
15 1 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.8202211251482368e-004</threshold>
<left_val>-0.3321433067321777</left_val>
<right_val>0.1135293990373612</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
13 3 2 2 -1.</_>
<_>
14 3 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.1514539548661560e-004</threshold>
<left_val>0.3994983136653900</left_val>
<right_val>-0.0724125802516937</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 18 3 2 -1.</_>
<_>
16 19 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.1091961581259966e-004</threshold>
<left_val>-0.3457595109939575</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
17 17 2 3 -1.</_>
<_>
17 18 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.9453650970244780e-005</threshold>
<left_val>-0.1411426067352295</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
4 6 8 6 -1.</_>
<_>
4 6 4 3 2.</_>
<_>
8 9 4 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0156620703637600</threshold>
<left_val>0.4707077145576477</left_val>
<right_val>0.0871639028191566</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 3 18 3 -1.</_>
<_>
6 3 6 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0298166107386351</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 1 3 2 -1.</_>
<_>
17 1 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.2333059981465340e-004</threshold>
<left_val>-0.0149779003113508</left_val>
<right_val>-0.4176484048366547</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
4 7 4 3 -1.</_>
<_>
4 7 2 3 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-4.9664578400552273e-003</threshold>
<left_val>0.4401878118515015</left_val>
<right_val>-2.0097310189157724e-003</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 17 20 3 -1.</_>
<_>
5 17 10 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.6796536818146706e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
15 16 4 2 -1.</_>
<_>
17 16 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.4388150302693248e-003</threshold>
<left_val>-0.2845151126384735</left_val>
<right_val>0.1168095991015434</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 13 2 5 -1.</_>
<_>
5 13 1 5 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-6.5185758285224438e-004</threshold>
<left_val>0.3425802886486054</left_val>
<right_val>-0.2702035903930664</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 8 10 1 -1.</_>
<_>
1 8 5 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0468712188303471</threshold>
<left_val>-0.3965913057327271</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
9 15 9 5 -1.</_>
<_>
12 15 3 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0228672102093697</threshold>
<left_val>-0.3472704887390137</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
15 8 4 7 -1.</_>
<_>
16 8 2 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.1887500295415521e-003</threshold>
<left_val>0.2603670954704285</left_val>
<right_val>-0.0428488589823246</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 4 3 1 -1.</_>
<_>
13 4 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.3433779501356184e-004</threshold>
<left_node>1</left_node>
<right_val>-0.2283560931682587</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
15 3 4 11 -1.</_>
<_>
16 3 2 11 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0206000600010157</threshold>
<left_val>-0.5013595223426819</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
3 15 3 1 -1.</_>
<_>
4 16 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>3.2824440859258175e-003</threshold>
<left_val>0.1668307036161423</left_val>
<right_val>-0.5025215744972229</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 8 3 4 -1.</_>
<_>
14 9 1 4 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0190873108804226</threshold>
<left_val>0.4138129949569702</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 2 12 2 -1.</_>
<_>
10 2 6 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0112160202115774</threshold>
<left_val>0.1549807041883469</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
2 1 16 7 -1.</_>
<_>
10 1 8 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0777101665735245</threshold>
<left_val>-0.2989561855792999</left_val>
<right_val>0.1754198074340820</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 1 3 4 -1.</_>
<_>
12 2 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.1873160041868687e-003</threshold>
<left_val>-0.0854795798659325</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
10 8 10 12 -1.</_>
<_>
10 12 10 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.1065699011087418</threshold>
<left_val>-0.5129529237747192</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
17 0 3 8 -1.</_>
<_>
17 4 3 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0517798885703087</threshold>
<left_val>-0.5017983913421631</left_val>
<right_val>0.3846678137779236</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 2 3 2 -1.</_>
<_>
7 2 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.5107400249689817e-003</threshold>
<left_node>1</left_node>
<right_val>-0.3387457132339478</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 1 3 8 -1.</_>
<_>
5 1 1 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.1244980636984110e-003</threshold>
<left_node>2</left_node>
<right_val>-0.2165389955043793</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
4 18 6 2 -1.</_>
<_>
7 18 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.3240240514278412e-003</threshold>
<left_val>0.3359499871730804</left_val>
<right_val>-0.0120858000591397</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 0 2 6 -1.</_>
<_>
8 0 1 6 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0169750303030014</threshold>
<left_val>0.5149319767951965</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 1 3 14 -1.</_>
<_>
3 1 1 14 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.9635268775746226e-004</threshold>
<left_node>2</left_node>
<right_val>-0.2236790955066681</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
17 0 3 9 -1.</_>
<_>
18 0 1 9 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.4425378590822220e-003</threshold>
<left_val>-0.5463718175888062</left_val>
<right_val>0.1247764974832535</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 5 3 5 -1.</_>
<_>
7 6 1 5 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0147975198924541</threshold>
<left_node>1</left_node>
<right_val>0.4093017876148224</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 8 2 5 -1.</_>
<_>
7 8 1 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.8537830114364624e-003</threshold>
<left_node>2</left_node>
<right_val>0.2596664130687714</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 8 9 11 -1.</_>
<_>
8 8 3 11 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0256849396973848</threshold>
<left_val>0.0465078204870224</left_val>
<right_val>-0.3138757944107056</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 16 3 4 -1.</_>
<_>
8 16 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.9678380340337753e-003</threshold>
<left_val>-0.3434877097606659</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
10 12 3 6 -1.</_>
<_>
11 12 1 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.9392849644646049e-003</threshold>
<left_node>2</left_node>
<right_val>-0.2307102978229523</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 17 6 2 -1.</_>
<_>
10 17 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.7980217970907688e-003</threshold>
<left_val>-0.4230223000049591</left_val>
<right_val>0.1847063004970551</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 0 8 4 -1.</_>
<_>
12 0 4 2 2.</_>
<_>
16 2 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.0432781465351582e-003</threshold>
<left_node>1</left_node>
<right_val>0.2098508030176163</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
19 0 1 2 -1.</_>
<_>
19 1 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.2162510140333325e-004</threshold>
<left_node>2</left_node>
<right_val>-0.3434562981128693</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
18 1 2 1 -1.</_>
<_>
19 1 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.5901809567585588e-004</threshold>
<left_val>-0.4024589955806732</left_val>
<right_val>0.0962833613157272</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 6 1 3 -1.</_>
<_>
4 7 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-4.6646450646221638e-003</threshold>
<left_val>-0.4014798104763031</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 6 2 1 -1.</_>
<_>
6 6 1 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>1.8331389874219894e-003</threshold>
<left_val>-0.0741280466318130</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 7 2 3 -1.</_>
<_>
0 8 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.4393261671066284e-003</threshold>
<left_val>-0.7130433917045593</left_val>
<right_val>0.2514117062091827</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 7 2 5 -1.</_>
<_>
15 7 1 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.2101307772099972e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 5 2 7 -1.</_>
<_>
16 5 1 7 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-8.6573585867881775e-003</threshold>
<left_val>0.5525010824203491</left_val>
<right_val>-0.0883102416992188</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
14 8 4 6 -1.</_>
<_>
15 9 2 6 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0256198290735483</threshold>
<left_val>0.4051348865032196</left_val>
<right_val>-0.1208684965968132</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 8 4 4 -1.</_>
<_>
4 8 2 4 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-9.3565601855516434e-003</threshold>
<left_val>0.1485918015241623</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 1 4 2 -1.</_>
<_>
18 1 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.7968382760882378e-004</threshold>
<left_val>0.1527637988328934</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 0 12 2 -1.</_>
<_>
14 0 6 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0450819917023182</threshold>
<left_val>-0.3300775885581970</left_val>
<right_val>0.4955345094203949</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 2 4 1 -1.</_>
<_>
8 2 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.0435510668903589e-003</threshold>
<left_node>1</left_node>
<right_val>-0.5489503145217896</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
18 7 2 3 -1.</_>
<_>
18 8 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.1532210782170296e-003</threshold>
<left_val>-0.5994563102722168</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
13 3 4 4 -1.</_>
<_>
13 4 4 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.5609789881855249e-003</threshold>
<left_val>-0.0361974090337753</left_val>
<right_val>0.2546384930610657</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 8 17 4 -1.</_>
<_>
0 9 17 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.8830259107053280e-003</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
11 8 1 4 -1.</_>
<_>
11 9 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.4457499966956675e-004</threshold>
<left_val>0.3666768074035645</left_val>
<right_val>-0.0893483608961105</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
12 8 8 2 -1.</_>
<_>
12 8 4 1 2.</_>
<_>
16 9 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.4641250967979431e-003</threshold>
<left_val>-0.2252389043569565</left_val>
<right_val>0.1634045988321304</right_val></_></_></trees>
<stage_threshold>-1.2140669822692871</stage_threshold>
<parent>13</parent>
<next>-1</next></_>
<_>
<!-- stage 15 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 10 6 1 -1.</_>
<_>
14 10 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.3124410808086395e-003</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 8 2 5 -1.</_>
<_>
5 8 1 5 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-2.9899911023676395e-003</threshold>
<left_val>0.8207129836082459</left_val>
<right_val>0.0564621984958649</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
12 9 2 1 -1.</_>
<_>
12 9 1 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-5.2643599919974804e-003</threshold>
<left_val>0.1824080049991608</left_val>
<right_val>-0.4248731136322022</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 10 3 1 -1.</_>
<_>
6 10 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.4592089466750622e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 6 20 14 -1.</_>
<_>
0 13 20 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.4271934926509857</threshold>
<left_val>-0.3385855853557587</left_val>
<right_val>0.1510023027658463</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
9 5 4 8 -1.</_>
<_>
9 5 4 4 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0302951093763113</threshold>
<left_val>0.7872424125671387</left_val>
<right_val>-0.5837361812591553</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 1 9 2 -1.</_>
<_>
6 2 9 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.7569369673728943e-003</threshold>
<left_node>1</left_node>
<right_val>0.4281027019023895</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 1 8 4 -1.</_>
<_>
7 2 8 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.9140219390392303e-003</threshold>
<left_val>0.3532198965549469</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
3 0 12 4 -1.</_>
<_>
3 1 12 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.0783478915691376e-003</threshold>
<left_val>-0.4010753929615021</left_val>
<right_val>0.1252329051494598</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 1 9 7 -1.</_>
<_>
3 1 3 7 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0358294509351254</threshold>
<left_val>-0.3896307051181793</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 9 6 3 -1.</_>
<_>
7 9 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0306645501405001</threshold>
<left_node>2</left_node>
<right_val>0.6770191788673401</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 4 10 3 -1.</_>
<_>
5 5 10 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0135759301483631</threshold>
<left_val>0.3078981041908264</left_val>
<right_val>-0.1121499016880989</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 0 8 7 -1.</_>
<_>
14 0 4 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0311886090785265</threshold>
<left_val>-0.5055090785026550</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 0 6 6 -1.</_>
<_>
10 0 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0178854204714298</threshold>
<left_val>-0.5299097895622253</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
1 14 4 1 -1.</_>
<_>
1 14 2 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>2.3879480431787670e-004</threshold>
<left_val>0.2611249089241028</left_val>
<right_val>-0.1288256049156189</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 9 3 4 -1.</_>
<_>
6 10 1 4 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>8.5746757686138153e-003</threshold>
<left_node>1</left_node>
<right_val>0.4892117977142334</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 17 10 3 -1.</_>
<_>
5 18 10 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.3016470950096846e-003</threshold>
<left_node>2</left_node>
<right_val>0.1597906053066254</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
7 14 6 4 -1.</_>
<_>
7 15 6 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.6683140099048615e-003</threshold>
<left_val>-0.3868542015552521</left_val>
<right_val>0.2400287985801697</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 13 7 3 -1.</_>
<_>
8 14 7 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.3485399112105370e-003</threshold>
<left_node>1</left_node>
<right_val>0.3482562899589539</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 7 8 3 -1.</_>
<_>
7 8 8 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0237267091870308</threshold>
<left_node>2</left_node>
<right_val>0.5232967138290405</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
18 16 2 2 -1.</_>
<_>
18 16 1 1 2.</_>
<_>
19 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.0209170654416084e-004</threshold>
<left_val>-0.4404784142971039</left_val>
<right_val>-0.0333583392202854</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 3 9 6 -1.</_>
<_>
7 5 9 2 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.1688126027584076</threshold>
<left_val>-0.6563115715980530</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
18 18 1 2 -1.</_>
<_>
18 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.8069280486088246e-004</threshold>
<left_val>-0.2755700945854187</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
16 11 4 1 -1.</_>
<_>
17 12 2 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-2.7342080138623714e-003</threshold>
<left_val>0.4099690020084381</left_val>
<right_val>0.0312450490891933</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 0 4 3 -1.</_>
<_>
5 1 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.1896680593490601e-003</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
13 10 4 1 -1.</_>
<_>
14 10 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.6777559649199247e-003</threshold>
<left_val>0.3167428076267242</left_val>
<right_val>-0.1304755955934525</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
15 7 2 10 -1.</_>
<_>
15 7 1 5 2.</_>
<_>
16 12 1 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.5925810961052775e-004</threshold>
<left_val>0.0823821797966957</left_val>
<right_val>0.7472177743911743</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 0 3 20 -1.</_>
<_>
6 10 3 10 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0176041796803474</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 4 9 16 -1.</_>
<_>
4 8 9 8 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.2593610882759094</threshold>
<left_val>0.2695355117321014</left_val>
<right_val>-0.3399210870265961</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
2 9 3 3 -1.</_>
<_>
3 9 1 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.4794649798423052e-003</threshold>
<left_val>0.5064327120780945</left_val>
<right_val>0.0279949903488159</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 1 9 6 -1.</_>
<_>
6 1 3 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0572446398437023</threshold>
<left_val>-0.6963682174682617</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 18 1 2 -1.</_>
<_>
5 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.9133851057849824e-004</threshold>
<left_val>-0.3191956877708435</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
4 0 6 5 -1.</_>
<_>
6 0 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0308086797595024</threshold>
<left_val>0.1323781013488770</left_val>
<right_val>-0.7674993872642517</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 8 3 7 -1.</_>
<_>
17 9 1 7 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0280466601252556</threshold>
<left_node>1</left_node>
<right_val>0.6983258724212647</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
15 3 3 7 -1.</_>
<_>
16 4 1 7 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-3.7829200737178326e-003</threshold>
<left_node>2</left_node>
<right_val>-0.2143892049789429</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
18 3 1 15 -1.</_>
<_>
18 8 1 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0139114698395133</threshold>
<left_val>0.3377845883369446</left_val>
<right_val>-0.0969437137246132</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 10 4 1 -1.</_>
<_>
6 10 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.6410012338310480e-004</threshold>
<left_val>0.2730368077754974</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 8 3 12 -1.</_>
<_>
8 8 1 12 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-4.1028819978237152e-003</threshold>
<left_val>0.1893198043107987</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
14 6 4 2 -1.</_>
<_>
14 6 2 1 2.</_>
<_>
16 7 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>7.6512782834470272e-004</threshold>
<left_val>-0.3208284974098206</left_val>
<right_val>0.0818710774183273</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 18 2 2 -1.</_>
<_>
5 18 1 1 2.</_>
<_>
6 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.2203559638001025e-004</threshold>
<left_val>-0.2967920005321503</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 18 2 2 -1.</_>
<_>
8 18 1 1 2.</_>
<_>
9 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.5135980104096234e-004</threshold>
<left_val>-0.2725948095321655</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
3 18 2 2 -1.</_>
<_>
3 18 1 1 2.</_>
<_>
4 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.7842829402070493e-004</threshold>
<left_val>-0.2255162000656128</left_val>
<right_val>0.2910535037517548</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 4 3 6 -1.</_>
<_>
7 5 1 6 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0226796790957451</threshold>
<left_node>1</left_node>
<right_val>0.6059411168098450</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 7 2 2 -1.</_>
<_>
16 7 1 1 2.</_>
<_>
17 8 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.4839429641142488e-003</threshold>
<left_val>0.5834652781486511</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 8 12 3 -1.</_>
<_>
6 8 6 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0977759063243866</threshold>
<left_val>-0.5198913812637329</left_val>
<right_val>-0.0213510394096375</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 10 6 2 -1.</_>
<_>
11 10 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.1942430175840855e-003</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 5 9 8 -1.</_>
<_>
11 5 3 8 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0962721705436707</threshold>
<left_val>-0.2386004030704498</left_val>
<right_val>0.4520868062973023</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
16 8 4 12 -1.</_>
<_>
16 14 4 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.5899629108607769e-003</threshold>
<left_val>-0.3229970932006836</left_val>
<right_val>0.2317180931568146</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 16 10 4 -1.</_>
<_>
9 17 10 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.4749320261180401e-003</threshold>
<left_node>1</left_node>
<right_val>0.2666141986846924</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
12 0 1 20 -1.</_>
<_>
12 10 1 10 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0149764101952314</threshold>
<left_val>-0.4752564132213593</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 9 3 3 -1.</_>
<_>
9 10 1 1 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.3499558493494987e-003</threshold>
<left_val>0.3693670034408569</left_val>
<right_val>-0.1043708026409149</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 4 3 2 -1.</_>
<_>
6 4 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.0258701927959919e-004</threshold>
<left_node>1</left_node>
<right_val>-0.2654511928558350</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 0 4 5 -1.</_>
<_>
5 0 2 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.1779240816831589e-003</threshold>
<left_val>-0.2674618065357208</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
16 18 2 2 -1.</_>
<_>
16 18 1 1 2.</_>
<_>
17 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.6361019515898079e-004</threshold>
<left_val>-0.1390241980552673</left_val>
<right_val>0.2970061004161835</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
4 10 5 3 -1.</_>
<_>
3 11 5 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-3.0408808961510658e-003</threshold>
<left_node>1</left_node>
<right_val>-0.1060713976621628</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 0 4 12 -1.</_>
<_>
1 0 2 12 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0129456296563149</threshold>
<left_val>-0.4286445081233978</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
7 1 8 14 -1.</_>
<_>
9 1 4 14 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0179836507886648</threshold>
<left_val>0.5325013995170593</left_val>
<right_val>6.2068658880889416e-003</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 14 7 3 -1.</_>
<_>
5 15 7 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.5721210297197104e-003</threshold>
<left_node>1</left_node>
<right_val>0.2864323854446411</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
15 7 4 2 -1.</_>
<_>
15 7 2 1 2.</_>
<_>
17 8 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.3481561113148928e-003</threshold>
<left_node>2</left_node>
<right_val>0.5270841717720032</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 18 3 1 -1.</_>
<_>
9 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.7103780303150415e-004</threshold>
<left_val>-0.4008390009403229</left_val>
<right_val>-0.0115977097302675</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 9 6 6 -1.</_>
<_>
1 12 6 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0353154800832272</threshold>
<left_val>-0.6424800157546997</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
9 4 5 3 -1.</_>
<_>
8 5 5 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-3.3448180183768272e-003</threshold>
<left_val>0.1679971069097519</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
14 6 6 2 -1.</_>
<_>
14 6 3 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0362117998301983</threshold>
<left_val>-0.4404557943344116</left_val>
<right_val>7.2158249095082283e-003</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 18 3 2 -1.</_>
<_>
9 18 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>9.7624881891533732e-004</threshold>
<left_node>1</left_node>
<right_val>-0.3322376906871796</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
9 16 2 2 -1.</_>
<_>
9 16 1 1 2.</_>
<_>
10 17 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.9304429083131254e-004</threshold>
<left_node>2</left_node>
<right_val>-0.2951816916465759</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 8 13 8 -1.</_>
<_>
0 10 13 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0909601002931595</threshold>
<left_val>-0.2659667134284973</left_val>
<right_val>0.1909102052450180</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 6 4 7 -1.</_>
<_>
13 6 2 7 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.7260335460305214e-003</threshold>
<left_val>0.4341684877872467</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 6 5 3 -1.</_>
<_>
5 7 5 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>6.3109961338341236e-003</threshold>
<left_node>2</left_node>
<right_val>0.3677924871444702</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
11 18 2 2 -1.</_>
<_>
11 18 1 1 2.</_>
<_>
12 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.8113269470632076e-004</threshold>
<left_val>-0.3860920071601868</left_val>
<right_val>-0.0214635804295540</right_val></_></_></trees>
<stage_threshold>-1.3826370239257813</stage_threshold>
<parent>14</parent>
<next>-1</next></_>
<_>
<!-- stage 16 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 9 6 2 -1.</_>
<_>
14 9 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0210841801017523</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 9 6 2 -1.</_>
<_>
2 9 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.1115990821272135e-003</threshold>
<left_val>0.7790507078170776</left_val>
<right_val>-0.0917176082730293</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
2 7 4 6 -1.</_>
<_>
3 7 2 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.7253301125019789e-003</threshold>
<left_val>0.0356180481612682</left_val>
<right_val>-0.3550969958305359</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 4 10 4 -1.</_>
<_>
6 6 10 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0492248684167862</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
9 5 2 4 -1.</_>
<_>
9 7 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0122567899525166</threshold>
<left_val>0.2337438017129898</left_val>
<right_val>-0.2072678953409195</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
15 9 2 2 -1.</_>
<_>
16 9 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.7591969808563590e-003</threshold>
<left_val>0.7123113274574280</left_val>
<right_val>0.1546854972839356</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 15 20 4 -1.</_>
<_>
5 15 10 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0130725698545575</threshold>
<left_node>1</left_node>
<right_val>-0.1741334944963455</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
10 9 1 8 -1.</_>
<_>
10 13 1 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0107139898464084</threshold>
<left_val>-0.1303748935461044</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 17 4 3 -1.</_>
<_>
9 17 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.7589630335569382e-003</threshold>
<left_val>0.4328486919403076</left_val>
<right_val>-0.6620224118232727</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 17 1 3 -1.</_>
<_>
0 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-7.0322921965271235e-004</threshold>
<left_val>-0.4283882081508637</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
18 6 2 1 -1.</_>
<_>
18 6 1 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>3.2859561033546925e-003</threshold>
<left_node>2</left_node>
<right_val>-0.4592688083648682</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 15 1 4 -1.</_>
<_>
0 16 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.5731799649074674e-003</threshold>
<left_val>-0.4618245959281921</left_val>
<right_val>0.1785615980625153</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 16 6 2 -1.</_>
<_>
9 16 2 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.4174369908869267e-003</threshold>
<left_val>-0.5426235198974609</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 10 3 1 -1.</_>
<_>
6 10 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.6610589809715748e-003</threshold>
<left_val>-0.0642739832401276</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
4 16 8 4 -1.</_>
<_>
6 16 4 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0150998104363680</threshold>
<left_val>0.4024465978145599</left_val>
<right_val>-0.6233041882514954</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 6 1 3 -1.</_>
<_>
0 7 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.6554270405322313e-003</threshold>
<left_node>1</left_node>
<right_val>-0.4595316052436829</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
1 7 4 1 -1.</_>
<_>
2 8 2 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-3.3705390524119139e-003</threshold>
<left_val>0.3076973855495453</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 4 1 8 -1.</_>
<_>
5 8 1 4 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0105688702315092</threshold>
<left_val>0.2830668985843658</left_val>
<right_val>-0.1551387012004852</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 1 5 4 -1.</_>
<_>
7 3 5 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0154609903693199</threshold>
<left_node>2</left_node>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 1 5 4 -1.</_>
<_>
7 3 5 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0105630801990628</threshold>
<left_val>-0.2353373020887375</left_val>
<right_val>0.1786361038684845</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
18 0 2 4 -1.</_>
<_>
18 1 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.5313820224255323e-003</threshold>
<left_val>-0.3978996872901917</left_val>
<right_val>0.3467324972152710</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 0 8 3 -1.</_>
<_>
4 0 4 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0113705396652222</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
0 0 2 2 -1.</_>
<_>
0 1 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.1206751959398389e-004</threshold>
<left_val>0.3586297035217285</left_val>
<right_val>-0.2671576142311096</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
14 0 6 1 -1.</_>
<_>
17 0 3 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.0633509848266840e-003</threshold>
<left_val>-0.2380741983652115</left_val>
<right_val>0.0895444527268410</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 2 3 3 -1.</_>
<_>
5 3 3 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>6.1831250786781311e-003</threshold>
<left_node>1</left_node>
<right_val>-0.3458926081657410</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
13 4 2 2 -1.</_>
<_>
13 5 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.5297930222004652e-003</threshold>
<left_node>2</left_node>
<right_val>-0.0577442608773708</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
18 4 2 3 -1.</_>
<_>
18 5 2 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.4521819539368153e-003</threshold>
<left_val>-0.2264368981122971</left_val>
<right_val>0.3349255919456482</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 0 3 4 -1.</_>
<_>
18 1 1 4 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>9.1494834050536156e-003</threshold>
<left_node>1</left_node>
<right_val>-0.4510245919227600</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 1 4 4 -1.</_>
<_>
17 2 2 4 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-7.8258356079459190e-003</threshold>
<left_val>-0.2057424038648605</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 9 6 9 -1.</_>
<_>
8 9 2 9 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.1795083135366440e-003</threshold>
<left_val>0.2806491851806641</left_val>
<right_val>-0.0194000694900751</right_val></_></_>
<_>
<!-- tree 10 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 8 2 5 -1.</_>
<_>
7 8 1 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.2864141762256622e-003</threshold>
<left_node>1</left_node>
<right_val>0.3874262869358063</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
4 3 3 4 -1.</_>
<_>
5 4 1 4 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0118954097852111</threshold>
<left_val>0.3312286138534546</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 18 1 2 -1.</_>
<_>
0 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.9768719105049968e-004</threshold>
<left_val>-0.4147309958934784</left_val>
<right_val>-0.0460053011775017</right_val></_></_>
<_>
<!-- tree 11 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 13 5 4 -1.</_>
<_>
15 14 5 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.9406214430928230e-003</threshold>
<left_val>-0.6051043868064880</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
19 11 1 2 -1.</_>
<_>
19 12 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.8322050891583785e-005</threshold>
<left_val>-0.1504936069250107</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
12 8 3 2 -1.</_>
<_>
13 9 1 2 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-8.9074727147817612e-003</threshold>
<left_val>0.4375177025794983</left_val>
<right_val>0.0445320010185242</right_val></_></_>
<_>
<!-- tree 12 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 15 1 2 -1.</_>
<_>
15 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.7458940166980028e-004</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
14 15 2 3 -1.</_>
<_>
15 15 1 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.0605080024106428e-004</threshold>
<left_val>0.0342435203492641</left_val>
<right_val>-0.3191792070865631</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
14 4 4 3 -1.</_>
<_>
13 5 4 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0134314503520727</threshold>
<left_val>0.0542852804064751</left_val>
<right_val>0.5108212828636169</right_val></_></_>
<_>
<!-- tree 13 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 17 1 3 -1.</_>
<_>
3 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.7373449736624025e-005</threshold>
<left_val>-0.1385859996080399</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
2 18 6 2 -1.</_>
<_>
2 19 6 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.6647070626495406e-005</threshold>
<left_node>2</left_node>
<right_val>0.2907449901103973</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
2 16 3 3 -1.</_>
<_>
2 17 3 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.8135200409451500e-005</threshold>
<left_val>-0.5269315838813782</left_val>
<right_val>0.0616778694093227</right_val></_></_>
<_>
<!-- tree 14 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
16 0 4 19 -1.</_>
<_>
17 0 2 19 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.4079789980314672e-004</threshold>
<left_node>1</left_node>
<right_val>-0.1432975977659226</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 16 6 4 -1.</_>
<_>
7 16 2 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0103112598881125</threshold>
<left_val>-0.4795865118503571</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 6 6 6 -1.</_>
<_>
7 8 2 2 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0278668403625488</threshold>
<left_val>0.3822689950466156</left_val>
<right_val>0.0106300497427583</right_val></_></_>
<_>
<!-- tree 15 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 0 2 2 -1.</_>
<_>
17 0 2 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>5.8228662237524986e-003</threshold>
<left_node>1</left_node>
<right_val>0.2977659106254578</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
8 1 12 2 -1.</_>
<_>
14 1 6 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.7669547647237778e-003</threshold>
<left_node>2</left_node>
<right_val>-0.1812476068735123</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 0 20 2 -1.</_>
<_>
0 1 20 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.8466230724006891e-003</threshold>
<left_val>-0.2423758953809738</left_val>
<right_val>0.3013916015625000</right_val></_></_>
<_>
<!-- tree 16 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
18 0 2 2 -1.</_>
<_>
18 0 1 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>6.4540808089077473e-003</threshold>
<left_node>1</left_node>
<right_val>-0.4791144132614136</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
17 2 3 3 -1.</_>
<_>
18 3 1 3 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>6.9421119987964630e-003</threshold>
<left_node>2</left_node>
<right_val>-0.3898383080959320</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
3 0 4 3 -1.</_>
<_>
2 1 4 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-7.1991360746324062e-003</threshold>
<left_val>-0.3809966146945953</left_val>
<right_val>0.1302327960729599</right_val></_></_>
<_>
<!-- tree 17 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
12 7 3 4 -1.</_>
<_>
13 7 1 4 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0130202602595091</threshold>
<left_node>1</left_node>
<right_val>0.4958218038082123</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
12 0 1 6 -1.</_>
<_>
12 2 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0101138101890683</threshold>
<left_val>0.4556333124637604</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
6 4 3 4 -1.</_>
<_>
7 5 1 4 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0191832892596722</threshold>
<left_val>0.3351813852787018</left_val>
<right_val>-0.1193813011050224</right_val></_></_>
<_>
<!-- tree 18 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
9 13 2 2 -1.</_>
<_>
9 14 2 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.0314499959349632e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
15 15 2 2 -1.</_>
<_>
16 15 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.7669691159389913e-005</threshold>
<left_val>-0.3597772121429443</left_val>
<right_val>0.0260546803474426</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
15 12 5 6 -1.</_>
<_>
15 15 5 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0504474304616451</threshold>
<left_val>0.1676117032766342</left_val>
<right_val>-0.2897059917449951</right_val></_></_>
<_>
<!-- tree 19 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 1 1 3 -1.</_>
<_>
2 2 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>3.7453400436788797e-003</threshold>
<left_node>1</left_node>
<right_val>-0.4643307924270630</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
15 14 2 2 -1.</_>
<_>
15 14 1 1 2.</_>
<_>
16 15 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.7667181206634268e-005</threshold>
<left_node>2</left_node>
<right_val>0.1861021071672440</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
15 14 2 2 -1.</_>
<_>
15 14 1 1 2.</_>
<_>
16 15 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.3708041377831250e-005</threshold>
<left_val>0.0562889389693737</left_val>
<right_val>-0.4242719113826752</right_val></_></_>
<_>
<!-- tree 20 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 16 2 2 -1.</_>
<_>
7 16 1 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-6.5939482301473618e-003</threshold>
<left_val>-0.4742371141910553</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
13 0 6 6 -1.</_>
<_>
15 0 2 6 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0215480793267488</threshold>
<left_val>-0.4293774068355560</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
15 3 5 3 -1.</_>
<_>
14 4 5 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0131881395354867</threshold>
<left_val>0.0116776097565889</left_val>
<right_val>0.4244090020656586</right_val></_></_>
<_>
<!-- tree 21 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 15 10 2 -1.</_>
<_>
10 15 5 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0120911896228790</threshold>
<left_node>1</left_node>
<right_val>0.2361122965812683</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
9 16 2 1 -1.</_>
<_>
10 16 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-6.2589373555965722e-005</threshold>
<left_node>2</left_node>
<right_val>-0.2182220071554184</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
2 14 4 2 -1.</_>
<_>
2 14 4 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>1.9446300575509667e-003</threshold>
<left_val>-0.0254042092710733</left_val>
<right_val>0.4290224015712738</right_val></_></_>
<_>
<!-- tree 22 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
17 14 3 3 -1.</_>
<_>
16 15 3 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>7.7299331314861774e-003</threshold>
<left_node>1</left_node>
<right_val>-0.5352454781532288</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
18 14 1 4 -1.</_>
<_>
17 15 1 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-3.7915860302746296e-003</threshold>
<left_val>-0.4354627132415772</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
1 13 5 3 -1.</_>
<_>
1 14 5 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.3860040605068207e-003</threshold>
<left_val>0.1257684975862503</left_val>
<right_val>-0.2814899981021881</right_val></_></_>
<_>
<!-- tree 23 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 12 1 2 -1.</_>
<_>
3 12 1 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-9.4350852305069566e-004</threshold>
<left_node>1</left_node>
<right_val>-0.1702273041009903</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
18 4 2 4 -1.</_>
<_>
18 6 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.1670179665088654e-003</threshold>
<left_val>0.2614187002182007</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
18 0 1 2 -1.</_>
<_>
18 0 1 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>2.9260620940476656e-003</threshold>
<left_val>-0.1743763983249664</left_val>
<right_val>0.3853029906749725</right_val></_></_>
<_>
<!-- tree 24 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
1 14 8 2 -1.</_>
<_>
1 15 8 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0145933004096150</threshold>
<left_node>1</left_node>
<right_val>-0.5510435104370117</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 2 4 3 -1.</_>
<_>
15 3 4 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>7.9177077859640121e-003</threshold>
<left_node>2</left_node>
<right_val>0.2770389020442963</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
16 2 2 4 -1.</_>
<_>
16 4 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.1372120138257742e-003</threshold>
<left_val>0.1309324055910111</left_val>
<right_val>-0.1695434004068375</right_val></_></_>
<_>
<!-- tree 25 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
19 5 1 3 -1.</_>
<_>
19 6 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.2021061573177576e-004</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
11 6 4 6 -1.</_>
<_>
12 6 2 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0104462597519159</threshold>
<left_val>0.4446859955787659</left_val>
<right_val>-0.3947739899158478</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
3 9 6 3 -1.</_>
<_>
5 9 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-8.3597414195537567e-003</threshold>
<left_val>0.3490968048572540</left_val>
<right_val>-0.0108871804550290</right_val></_></_>
<_>
<!-- tree 26 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
2 8 4 12 -1.</_>
<_>
2 8 2 6 2.</_>
<_>
4 14 2 6 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-9.7741633653640747e-003</threshold>
<left_val>0.2115772068500519</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
12 5 6 1 -1.</_>
<_>
12 5 3 1 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0125870797783136</threshold>
<left_val>-0.1454294025897980</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
7 9 12 5 -1.</_>
<_>
13 9 6 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.4933859929442406e-003</threshold>
<left_val>-0.1509823054075241</left_val>
<right_val>0.5079010128974915</right_val></_></_>
<_>
<!-- tree 27 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
13 9 6 3 -1.</_>
<_>
13 10 6 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.0530377775430679e-003</threshold>
<left_val>-0.2384579032659531</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
19 18 1 2 -1.</_>
<_>
19 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.5890849065035582e-004</threshold>
<left_val>-0.2515332102775574</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
19 17 1 3 -1.</_>
<_>
19 18 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.8418638471048325e-005</threshold>
<left_val>-0.0245332103222609</left_val>
<right_val>0.3037635087966919</right_val></_></_>
<_>
<!-- tree 28 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 9 2 4 -1.</_>
<_>
15 9 1 2 2.</_>
<_>
16 11 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>2.3038890212774277e-003</threshold>
<left_node>1</left_node>
<right_val>0.2812586128711700</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
16 5 4 3 -1.</_>
<_>
16 6 4 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>3.6540660075843334e-003</threshold>
<left_node>2</left_node>
<right_val>-0.3696573972702026</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 0 3 3 -1.</_>
<_>
4 1 3 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-3.3346249256283045e-003</threshold>
<left_val>-0.3026607930660248</left_val>
<right_val>0.0882874205708504</right_val></_></_>
<_>
<!-- tree 29 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
10 1 6 3 -1.</_>
<_>
12 1 2 3 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0119753498584032</threshold>
<left_val>-0.4636023938655853</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
13 9 3 1 -1.</_>
<_>
14 9 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.8564870115369558e-003</threshold>
<left_val>0.3994201123714447</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 2 6 4 -1.</_>
<_>
0 2 3 2 2.</_>
<_>
3 4 3 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.5760740498080850e-003</threshold>
<left_val>-0.1105775013566017</left_val>
<right_val>0.1678290963172913</right_val></_></_>
<_>
<!-- tree 30 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 8 19 4 -1.</_>
<_>
0 9 19 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0412103496491909</threshold>
<left_node>1</left_node>
<right_val>-0.6894599199295044</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 5 3 6 -1.</_>
<_>
8 7 1 2 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0106351096183062</threshold>
<left_node>2</left_node>
<right_val>-0.0958253890275955</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
4 4 1 3 -1.</_>
<_>
3 5 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-3.3335660118609667e-003</threshold>
<left_val>-0.4643732011318207</left_val>
<right_val>0.2210482060909271</right_val></_></_>
<_>
<!-- tree 31 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 2 4 4 -1.</_>
<_>
0 2 2 2 2.</_>
<_>
2 4 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.4082309100776911e-003</threshold>
<left_val>0.2012844979763031</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 0 3 3 -1.</_>
<_>
6 1 1 1 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>5.5890781804919243e-003</threshold>
<left_node>2</left_node>
<right_val>-0.5231484174728394</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
19 2 1 3 -1.</_>
<_>
19 3 1 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.2177750468254089e-003</threshold>
<left_val>0.0313679501414299</left_val>
<right_val>-0.4103857874870300</right_val></_></_>
<_>
<!-- tree 32 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
7 6 5 3 -1.</_>
<_>
7 7 5 1 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.6324941366910934e-003</threshold>
<left_node>1</left_node>
<right_val>0.3174157142639160</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
7 5 1 4 -1.</_>
<_>
6 6 1 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>3.8473210297524929e-003</threshold>
<left_node>2</left_node>
<right_val>-0.4385162889957428</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
14 10 2 1 -1.</_>
<_>
15 10 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.8842349527403712e-003</threshold>
<left_val>0.3814085125923157</left_val>
<right_val>-0.0601031705737114</right_val></_></_></trees>
<stage_threshold>-1.2412749528884888</stage_threshold>
<parent>15</parent>
<next>-1</next></_>
<_>
<!-- stage 17 -->
<trees>
<_>
<!-- tree 0 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 10 9 2 -1.</_>
<_>
9 10 3 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0236759595572948</threshold>
<left_node>1</left_node>
<right_val>-0.3530888855457306</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
15 5 2 6 -1.</_>
<_>
15 5 1 3 2.</_>
<_>
16 8 1 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.0480139646679163e-003</threshold>
<left_val>0.6987838745117188</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
5 10 2 2 -1.</_>
<_>
6 10 1 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>8.1840698840096593e-004</threshold>
<left_val>-0.2836767137050629</left_val>
<right_val>0.4166736900806427</right_val></_></_>
<_>
<!-- tree 1 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
6 10 2 2 -1.</_>
<_>
6 10 1 1 2.</_>
<_>
7 11 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>1.2784999562427402e-003</threshold>
<left_node>1</left_node>
<right_node>2</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
5 9 4 2 -1.</_>
<_>
6 9 2 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-3.4423400647938251e-003</threshold>
<left_val>0.3380788862705231</left_val>
<right_val>-0.1665703952312470</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
12 10 4 4 -1.</_>
<_>
12 10 4 2 2.</_></rects>
<tilted>1</tilted></feature>
<threshold>-7.4483961798250675e-003</threshold>
<left_val>0.6459196805953980</left_val>
<right_val>-0.2201852947473526</right_val></_></_>
<_>
<!-- tree 2 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 9 3 10 -1.</_>
<_>
0 14 3 5 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0111794704571366</threshold>
<left_val>-0.3255267143249512</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
3 3 15 9 -1.</_>
<_>
8 6 5 3 9.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.2319609969854355</threshold>
<left_node>2</left_node>
<right_val>-0.0831679776310921</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
8 1 8 18 -1.</_>
<_>
8 1 4 9 2.</_>
<_>
12 10 4 9 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0431337095797062</threshold>
<left_val>-0.1617254018783569</left_val>
<right_val>0.4620975852012634</right_val></_></_>
<_>
<!-- tree 3 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 6 3 11 -1.</_>
<_>
4 6 1 11 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.9728920597117394e-004</threshold>
<left_node>1</left_node>
<right_val>-0.1566779017448425</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
11 8 4 3 -1.</_>
<_>
12 8 2 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.3259329609572887e-003</threshold>
<left_val>0.3691489994525909</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
17 8 2 3 -1.</_>
<_>
16 9 2 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>-0.0103200804442167</threshold>
<left_val>0.4801501929759979</left_val>
<right_val>-0.0890616029500961</right_val></_></_>
<_>
<!-- tree 4 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
3 1 6 5 -1.</_>
<_>
5 1 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0200409702956676</threshold>
<left_val>-0.5696743726730347</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 18 2 2 -1.</_>
<_>
6 18 1 1 2.</_>
<_>
7 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.4495070101693273e-004</threshold>
<left_val>-0.2371329963207245</left_val>
<right_node>2</right_node></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
9 18 3 2 -1.</_>
<_>
10 18 1 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.1836830526590347e-003</threshold>
<left_val>-0.3467139005661011</left_val>
<right_val>0.1447501927614212</right_val></_></_>
<_>
<!-- tree 5 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
15 6 4 9 -1.</_>
<_>
16 6 2 9 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-2.6744368951767683e-003</threshold>
<left_node>1</left_node>
<right_val>-0.1266171038150787</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 9 6 5 -1.</_>
<_>
8 9 2 5 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.1904888823628426e-003</threshold>
<left_node>2</left_node>
<right_val>-0.0646489933133125</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
15 4 3 15 -1.</_>
<_>
16 4 1 15 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0198881290853024</threshold>
<left_val>-0.4544137120246887</left_val>
<right_val>0.3984945118427277</right_val></_></_>
<_>
<!-- tree 6 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
14 4 2 16 -1.</_>
<_>
14 12 2 8 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-5.7462421245872974e-003</threshold>
<left_val>-0.3676187098026276</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
12 2 4 2 -1.</_>
<_>
12 3 4 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>4.4583589769899845e-003</threshold>
<left_node>2</left_node>
<right_val>0.3843587040901184</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
19 5 1 6 -1.</_>
<_>
19 8 1 3 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0125189498066902</threshold>
<left_val>-0.6190282702445984</left_val>
<right_val>0.0190506093204021</right_val></_></_>
<_>
<!-- tree 7 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
5 0 9 6 -1.</_>
<_>
5 2 9 2 3.</_></rects>
<tilted>0</tilted></feature>
<threshold>-0.0777342766523361</threshold>
<left_val>0.5540528297424316</left_val>
<right_node>1</right_node></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
6 3 3 3 -1.</_>
<_>
5 4 3 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>6.7193829454481602e-003</threshold>
<left_node>2</left_node>
<right_val>-0.4130884110927582</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
17 4 3 1 -1.</_>
<_>
18 5 1 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>1.6520710196346045e-003</threshold>
<left_val>0.0732806622982025</left_val>
<right_val>-0.2858909070491791</right_val></_></_>
<_>
<!-- tree 8 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
8 5 9 4 -1.</_>
<_>
8 6 9 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0212263502180576</threshold>
<left_node>1</left_node>
<right_val>0.3687183856964111</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
9 7 4 3 -1.</_>
<_>
8 8 4 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>0.0112314503639936</threshold>
<left_node>2</left_node>
<right_val>0.3559111058712006</right_val></_>
<_>
<!-- node 2 -->
<feature>
<rects>
<_>
0 18 2 2 -1.</_>
<_>
0 18 1 1 2.</_>
<_>
1 19 1 1 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>-1.8163130152970552e-004</threshold>
<left_val>-0.3378145992755890</left_val>
<right_val>-8.1584807485342026e-003</right_val></_></_>
<_>
<!-- tree 9 -->
<_>
<!-- root node -->
<feature>
<rects>
<_>
0 9 10 4 -1.</_>
<_>
0 10 10 2 2.</_></rects>
<tilted>0</tilted></feature>
<threshold>0.0287261605262756</threshold>
<left_node>1</left_node>
<right_val>-0.7275102138519287</right_val></_>
<_>
<!-- node 1 -->
<feature>
<rects>
<_>
17 8 3 3 -1.</_>
<_>
16 9 3 1 3.</_></rects>
<tilted>1</tilted></feature>
<threshold>5.0
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment