Cleanup. master
authorMarcin Miklas <marcin.miklas@teleca.com>
Tue, 16 Feb 2010 17:37:43 +0000 (18:37 +0100)
committerMarcin Miklas <marcin.miklas@teleca.com>
Tue, 16 Feb 2010 17:37:43 +0000 (18:37 +0100)
27 files changed:
branches/nota-show-app/Makefile.am [deleted file]
branches/nota-show-app/antigen.sh [deleted file]
branches/nota-show-app/autogen.sh [deleted file]
branches/nota-show-app/configure.ac [deleted file]
branches/nota-show-app/haarcascades/haarcascade_frontalface_alt.xml [deleted file]
branches/nota-show-app/haarcascades/haarcascade_mcs_nose.xml [deleted file]
branches/nota-show-app/img/00.jpg [deleted file]
branches/nota-show-app/img/01.jpg [deleted file]
branches/nota-show-app/img/02.jpg [deleted file]
branches/nota-show-app/src/Makefile.am [deleted file]
branches/nota-show-app/src/application.c [deleted file]
branches/nota-show-app/src/facedetect.cpp [deleted file]
branches/nota-show-app/src/gstapplication.c [deleted file]
branches/nota-show-app/src/gtkapp.c [deleted file]
branches/nota-show-app/src/gtkservice.c [deleted file]
branches/nota-show-app/src/notaio.c [deleted file]
branches/nota-show-app/src/notaio.h [deleted file]
branches/nota-show-app/src/pdu.c [deleted file]
branches/nota-show-app/src/pdu.h [deleted file]
branches/nota-show-app/src/service.h [deleted file]
branches/nota-show-app/src/service_nb.c [deleted file]
branches/nota-show-app/src/ts7200/Makefile.am [deleted file]
branches/nota-show-app/src/ts7200/test_client.c [deleted file]
branches/nota-show-app/src/ts7200/test_server.c [deleted file]
branches/nota-show-app/src/ts7200/ts7200_client.c [deleted file]
branches/nota-show-app/src/ts7200/ts7200_client.h [deleted file]
branches/nota-show-app/src/ts7200/ts7200_server.c [deleted file]

diff --git a/branches/nota-show-app/Makefile.am b/branches/nota-show-app/Makefile.am
deleted file mode 100644 (file)
index 15fdd19..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-AUTOMAKE_OPTIONS = foreign
-
-SUBDIRS = src/ts7200 src
diff --git a/branches/nota-show-app/antigen.sh b/branches/nota-show-app/antigen.sh
deleted file mode 100755 (executable)
index 0d64ae6..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-#
-# A utility script to remove all generated files.
-#
-# Running autogen.sh will be required after running this script since
-# the 'configure' script will also be removed.
-#
-# This script is mainly useful when testing autoconf/automake changes
-# and as a part of their development process.
-# If there's a Makefile, then run the 'distclean' target first (which
-# will also remove the Makefile).
-if test -f Makefile; then
-  make distclean
-fi
-# Remove all tar-files (assuming there are some packages).
-rm -f *.tar.* *.tgz
-# Also remove the autotools cache directory.
-rm -Rf autom4te.cache
-# Remove rest of the generated files.
-rm -f Makefile.in aclocal.m4 configure depcomp install-sh missing \
-       config.h.in config.sub config.guess \
-       intltool-*.in ltmain.sh mkinstalldirs \
-       src/Makefile.in
-rm -Rf po
diff --git a/branches/nota-show-app/autogen.sh b/branches/nota-show-app/autogen.sh
deleted file mode 100755 (executable)
index 43b238a..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-
-aclocal
-autoconf
-autoheader
-automake --add-missing --copy --foreign
-./configure --enable-maintainer-mode
diff --git a/branches/nota-show-app/configure.ac b/branches/nota-show-app/configure.ac
deleted file mode 100644 (file)
index e25c6ef..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-AC_INIT(nota-show-app, 0.1)
-AC_PREREQ(2.59)
-
-AM_INIT_AUTOMAKE([1.7.9])
-AC_CONFIG_HEADERS([config.h])
-
-AC_GNU_SOURCE
-AC_CANONICAL_HOST
-AM_MAINTAINER_MODE
-
-AC_PROG_INSTALL
-AC_PROG_MAKE_SET
-AC_PROG_CC
-AC_PROG_CXX
-AC_PROG_RANLIB
-
-PKG_CHECK_MODULES(NOTA_H_IN,nota-h_in-3.0)
-AC_SUBST(NOTA_H_IN_LIBS)
-AC_SUBST(NOTA_H_IN_CFLAGS)
-
-PKG_CHECK_MODULES(NOTA_H_IN_SP,nota-h_in-sp-3.0)
-AC_SUBST(NOTA_H_IN_SP_LIBS)
-AC_SUBST(NOTA_H_IN_SP_CFLAGS)
-
-PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.2 glib-2.0 >= 2.2 gthread-2.0 >= 2.2, [ have_gtk=yes ], [ have_gtk=no ] )
-AC_SUBST(GTK_CFLAGS)
-AC_SUBST(GTK_LIBS)
-AM_CONDITIONAL([HAVE_GTK], [test x"$have_gtk" = "xyes"])
-
-PKG_CHECK_MODULES(GST, gstreamer-0.10 >= 0.1 gstreamer-plugins-base-0.10 >= 0.1, [ have_gst=yes ], [ have_gst=no ] )
-AC_SUBST(GST_CFLAGS)
-AC_SUBST(GST_LIBS)
-AM_CONDITIONAL([HAVE_GST], [test x"$have_gst" = "xyes"])
-
-PKG_CHECK_MODULES(OPENCV, opencv >= 2.0.0, [ have_opencv=yes ], [ have_opencv=no ])
-AC_SUBST(OPENCV_CFLAGS)
-AC_SUBST(OPENCV_LIBS)
-AM_CONDITIONAL([HAVE_OPENCV], [test x"$have_opencv" = "xyes"])
-
-
-AC_CONFIG_FILES([
-       Makefile
-       src/Makefile
-       src/ts7200/Makefile
-       ])
-
-AC_OUTPUT
-
diff --git a/branches/nota-show-app/haarcascades/haarcascade_frontalface_alt.xml b/branches/nota-show-app/haarcascades/haarcascade_frontalface_alt.xml
deleted file mode 100644 (file)
index 5a6f275..0000000
+++ /dev/null
@@ -1,26161 +0,0 @@
-<?xml version="1.0"?>
-<!--
-    Stump-based 20x20 gentle adaboost frontal face detector.
-    Created by Rainer Lienhart.
-
-////////////////////////////////////////////////////////////////////////////////////////
-
-  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_frontalface_alt type_id="opencv-haar-classifier">
-  <size>20 20</size>
-  <stages>
-    <_>
-      <!-- stage 0 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 7 14 4 -1.</_>
-                <_>3 9 14 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.0141958743333817e-003</threshold>
-            <left_val>0.0337941907346249</left_val>
-            <right_val>0.8378106951713562</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 2 18 4 -1.</_>
-                <_>7 2 6 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0151513395830989</threshold>
-            <left_val>0.1514132022857666</left_val>
-            <right_val>0.7488812208175659</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 7 15 9 -1.</_>
-                <_>1 10 15 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.2109931819140911e-003</threshold>
-            <left_val>0.0900492817163467</left_val>
-            <right_val>0.6374819874763489</right_val></_></_></trees>
-      <stage_threshold>0.8226894140243530</stage_threshold>
-      <parent>-1</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 1 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 2 6 -1.</_>
-                <_>5 9 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6227109590545297e-003</threshold>
-            <left_val>0.0693085864186287</left_val>
-            <right_val>0.7110946178436279</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 5 6 3 -1.</_>
-                <_>9 5 2 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2906649392098188e-003</threshold>
-            <left_val>0.1795803010463715</left_val>
-            <right_val>0.6668692231178284</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 0 12 9 -1.</_>
-                <_>4 3 12 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0025708042085171e-003</threshold>
-            <left_val>0.1693672984838486</left_val>
-            <right_val>0.6554006934165955</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 9 10 8 -1.</_>
-                <_>6 13 10 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.9659894108772278e-003</threshold>
-            <left_val>0.5866332054138184</left_val>
-            <right_val>0.0914145186543465</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 6 14 8 -1.</_>
-                <_>3 10 14 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.5227010957896709e-003</threshold>
-            <left_val>0.1413166970014572</left_val>
-            <right_val>0.6031895875930786</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 1 6 10 -1.</_>
-                <_>14 1 3 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0366676896810532</threshold>
-            <left_val>0.3675672113895416</left_val>
-            <right_val>0.7920318245887756</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 8 5 12 -1.</_>
-                <_>7 12 5 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.3361474573612213e-003</threshold>
-            <left_val>0.6161385774612427</left_val>
-            <right_val>0.2088509947061539</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 1 18 3 -1.</_>
-                <_>7 1 6 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.6961314082145691e-003</threshold>
-            <left_val>0.2836230993270874</left_val>
-            <right_val>0.6360273957252502</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 8 17 2 -1.</_>
-                <_>1 9 17 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1488880263641477e-003</threshold>
-            <left_val>0.2223580926656723</left_val>
-            <right_val>0.5800700783729553</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 6 4 2 -1.</_>
-                <_>16 7 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1484689787030220e-003</threshold>
-            <left_val>0.2406464070081711</left_val>
-            <right_val>0.5787054896354675</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 17 2 2 -1.</_>
-                <_>5 18 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1219060290604830e-003</threshold>
-            <left_val>0.5559654831886292</left_val>
-            <right_val>0.1362237036228180</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 2 6 12 -1.</_>
-                <_>14 2 3 12 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0939491465687752</threshold>
-            <left_val>0.8502737283706665</left_val>
-            <right_val>0.4717740118503571</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 0 4 12 -1.</_>
-                <_>4 0 2 6 2.</_>
-                <_>6 6 2 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3777789426967502e-003</threshold>
-            <left_val>0.5993673801422119</left_val>
-            <right_val>0.2834529876708984</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 11 18 8 -1.</_>
-                <_>8 11 6 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0730631574988365</threshold>
-            <left_val>0.4341886043548584</left_val>
-            <right_val>0.7060034275054932</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 10 2 -1.</_>
-                <_>5 8 10 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.6767389974556863e-004</threshold>
-            <left_val>0.3027887940406799</left_val>
-            <right_val>0.6051574945449829</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 11 5 3 -1.</_>
-                <_>15 12 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.0479710809886456e-003</threshold>
-            <left_val>0.1798433959484100</left_val>
-            <right_val>0.5675256848335266</right_val></_></_></trees>
-      <stage_threshold>6.9566087722778320</stage_threshold>
-      <parent>0</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 2 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 3 10 9 -1.</_>
-                <_>5 6 10 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0165106896311045</threshold>
-            <left_val>0.6644225120544434</left_val>
-            <right_val>0.1424857974052429</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 4 2 14 -1.</_>
-                <_>9 11 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7052499353885651e-003</threshold>
-            <left_val>0.6325352191925049</left_val>
-            <right_val>0.1288477033376694</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 5 4 12 -1.</_>
-                <_>3 9 4 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.8069869149476290e-003</threshold>
-            <left_val>0.1240288019180298</left_val>
-            <right_val>0.6193193197250366</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 5 12 5 -1.</_>
-                <_>8 5 4 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5402400167658925e-003</threshold>
-            <left_val>0.1432143002748489</left_val>
-            <right_val>0.5670015811920166</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 10 8 -1.</_>
-                <_>5 10 10 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.6386279175058007e-004</threshold>
-            <left_val>0.1657433062791824</left_val>
-            <right_val>0.5905207991600037</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 0 6 9 -1.</_>
-                <_>8 3 6 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9253729842603207e-003</threshold>
-            <left_val>0.2695507109165192</left_val>
-            <right_val>0.5738824009895325</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 1 8 -1.</_>
-                <_>9 16 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.0214841030538082e-003</threshold>
-            <left_val>0.1893538981676102</left_val>
-            <right_val>0.5782774090766907</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 7 20 6 -1.</_>
-                <_>0 9 20 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6365420781075954e-003</threshold>
-            <left_val>0.2309329062700272</left_val>
-            <right_val>0.5695425868034363</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 0 6 17 -1.</_>
-                <_>9 0 2 17 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5127769438549876e-003</threshold>
-            <left_val>0.2759602069854736</left_val>
-            <right_val>0.5956642031669617</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 0 6 4 -1.</_>
-                <_>11 0 2 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0101574398577213</threshold>
-            <left_val>0.1732538044452667</left_val>
-            <right_val>0.5522047281265259</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 1 6 4 -1.</_>
-                <_>7 1 2 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0119536602869630</threshold>
-            <left_val>0.1339409947395325</left_val>
-            <right_val>0.5559014081954956</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 1 6 16 -1.</_>
-                <_>14 1 2 16 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8859491944313049e-003</threshold>
-            <left_val>0.3628703951835632</left_val>
-            <right_val>0.6188849210739136</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 5 18 8 -1.</_>
-                <_>0 5 9 4 2.</_>
-                <_>9 9 9 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0801329165697098</threshold>
-            <left_val>0.0912110507488251</left_val>
-            <right_val>0.5475944876670837</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 15 10 4 -1.</_>
-                <_>13 15 5 2 2.</_>
-                <_>8 17 5 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0643280111253262e-003</threshold>
-            <left_val>0.3715142905712128</left_val>
-            <right_val>0.5711399912834168</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 1 4 8 -1.</_>
-                <_>3 1 2 4 2.</_>
-                <_>5 5 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.3419450260698795e-003</threshold>
-            <left_val>0.5953313708305359</left_val>
-            <right_val>0.3318097889423370</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 6 14 10 -1.</_>
-                <_>10 6 7 5 2.</_>
-                <_>3 11 7 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0546011403203011</threshold>
-            <left_val>0.1844065934419632</left_val>
-            <right_val>0.5602846145629883</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 1 6 16 -1.</_>
-                <_>4 1 2 16 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9071690514683723e-003</threshold>
-            <left_val>0.3594244122505188</left_val>
-            <right_val>0.6131715178489685</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 18 20 2 -1.</_>
-                <_>0 19 20 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.4718717951327562e-004</threshold>
-            <left_val>0.5994353294372559</left_val>
-            <right_val>0.3459562957286835</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 13 4 3 -1.</_>
-                <_>8 14 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.3013808317482471e-003</threshold>
-            <left_val>0.4172652065753937</left_val>
-            <right_val>0.6990845203399658</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 14 2 3 -1.</_>
-                <_>9 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5017572119832039e-003</threshold>
-            <left_val>0.4509715139865875</left_val>
-            <right_val>0.7801457047462463</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 12 9 6 -1.</_>
-                <_>0 14 9 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0241385009139776</threshold>
-            <left_val>0.5438212752342224</left_val>
-            <right_val>0.1319826990365982</right_val></_></_></trees>
-      <stage_threshold>9.4985427856445313</stage_threshold>
-      <parent>1</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 3 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 3 4 -1.</_>
-                <_>5 9 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9212230108678341e-003</threshold>
-            <left_val>0.1415266990661621</left_val>
-            <right_val>0.6199870705604553</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 3 2 16 -1.</_>
-                <_>9 11 2 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2748669541906565e-004</threshold>
-            <left_val>0.6191074252128601</left_val>
-            <right_val>0.1884928941726685</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 6 13 8 -1.</_>
-                <_>3 10 13 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1409931620582938e-004</threshold>
-            <left_val>0.1487396955490112</left_val>
-            <right_val>0.5857927799224854</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 3 8 2 -1.</_>
-                <_>12 3 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.1878609918057919e-003</threshold>
-            <left_val>0.2746909856796265</left_val>
-            <right_val>0.6359239816665649</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 8 4 12 -1.</_>
-                <_>8 12 4 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1015717908740044e-003</threshold>
-            <left_val>0.5870851278305054</left_val>
-            <right_val>0.2175628989934921</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 3 8 6 -1.</_>
-                <_>15 3 4 3 2.</_>
-                <_>11 6 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1448440384119749e-003</threshold>
-            <left_val>0.5880944728851318</left_val>
-            <right_val>0.2979590892791748</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 1 6 19 -1.</_>
-                <_>9 1 2 19 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.8977119363844395e-003</threshold>
-            <left_val>0.2373327016830444</left_val>
-            <right_val>0.5876647233963013</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 0 6 4 -1.</_>
-                <_>11 0 2 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0216106791049242</threshold>
-            <left_val>0.1220654994249344</left_val>
-            <right_val>0.5194202065467835</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 1 9 3 -1.</_>
-                <_>6 1 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.6299318782985210e-003</threshold>
-            <left_val>0.2631230950355530</left_val>
-            <right_val>0.5817409157752991</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 15 10 4 -1.</_>
-                <_>13 15 5 2 2.</_>
-                <_>8 17 5 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9393711853772402e-004</threshold>
-            <left_val>0.3638620078563690</left_val>
-            <right_val>0.5698544979095459</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 3 6 10 -1.</_>
-                <_>3 3 3 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0538786612451077</threshold>
-            <left_val>0.4303531050682068</left_val>
-            <right_val>0.7559366226196289</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 4 15 15 -1.</_>
-                <_>3 9 15 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.8887349870055914e-003</threshold>
-            <left_val>0.2122603058815002</left_val>
-            <right_val>0.5613427162170410</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 5 8 6 -1.</_>
-                <_>6 7 8 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3635339457541704e-003</threshold>
-            <left_val>0.5631849169731140</left_val>
-            <right_val>0.2642767131328583</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 4 12 10 -1.</_>
-                <_>10 4 6 5 2.</_>
-                <_>4 9 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0240177996456623</threshold>
-            <left_val>0.5797107815742493</left_val>
-            <right_val>0.2751705944538117</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 4 4 4 -1.</_>
-                <_>8 4 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0543030404951423e-004</threshold>
-            <left_val>0.2705242037773132</left_val>
-            <right_val>0.5752568840980530</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 11 1 2 -1.</_>
-                <_>15 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.4790197433903813e-004</threshold>
-            <left_val>0.5435624718666077</left_val>
-            <right_val>0.2334876954555512</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 11 2 2 -1.</_>
-                <_>3 12 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4091329649090767e-003</threshold>
-            <left_val>0.5319424867630005</left_val>
-            <right_val>0.2063155025243759</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 11 1 3 -1.</_>
-                <_>16 12 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4642629539594054e-003</threshold>
-            <left_val>0.5418980717658997</left_val>
-            <right_val>0.3068861067295075</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 15 6 4 -1.</_>
-                <_>3 15 3 2 2.</_>
-                <_>6 17 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6352549428120255e-003</threshold>
-            <left_val>0.3695372939109802</left_val>
-            <right_val>0.6112868189811707</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 7 8 2 -1.</_>
-                <_>6 8 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.3172752056270838e-004</threshold>
-            <left_val>0.3565036952495575</left_val>
-            <right_val>0.6025236248970032</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 11 1 3 -1.</_>
-                <_>3 12 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.0998890977352858e-003</threshold>
-            <left_val>0.1913982033729553</left_val>
-            <right_val>0.5362827181816101</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 0 12 2 -1.</_>
-                <_>6 1 12 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.4213981861248612e-004</threshold>
-            <left_val>0.3835555016994476</left_val>
-            <right_val>0.5529310107231140</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 14 2 3 -1.</_>
-                <_>9 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2655049581080675e-003</threshold>
-            <left_val>0.4312896132469177</left_val>
-            <right_val>0.7101895809173584</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 15 6 2 -1.</_>
-                <_>7 16 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.9134991867467761e-004</threshold>
-            <left_val>0.3984830975532532</left_val>
-            <right_val>0.6391963958740234</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 5 4 6 -1.</_>
-                <_>0 7 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0152841797098517</threshold>
-            <left_val>0.2366732954978943</left_val>
-            <right_val>0.5433713793754578</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 12 12 2 -1.</_>
-                <_>8 12 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8381411470472813e-003</threshold>
-            <left_val>0.5817500948905945</left_val>
-            <right_val>0.3239189088344574</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 3 1 9 -1.</_>
-                <_>6 6 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.1093179071322083e-004</threshold>
-            <left_val>0.5540593862533569</left_val>
-            <right_val>0.2911868989467621</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 17 3 2 -1.</_>
-                <_>11 17 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.1275060288608074e-003</threshold>
-            <left_val>0.1775255054235458</left_val>
-            <right_val>0.5196629166603088</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 9 2 2 -1.</_>
-                <_>9 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.4576259097084403e-004</threshold>
-            <left_val>0.3024170100688934</left_val>
-            <right_val>0.5533593893051148</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 6 6 4 -1.</_>
-                <_>9 6 2 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0226465407758951</threshold>
-            <left_val>0.4414930939674377</left_val>
-            <right_val>0.6975377202033997</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 17 3 2 -1.</_>
-                <_>8 17 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8804960418492556e-003</threshold>
-            <left_val>0.2791394889354706</left_val>
-            <right_val>0.5497952103614807</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 17 3 3 -1.</_>
-                <_>11 17 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.0889107882976532e-003</threshold>
-            <left_val>0.5263199210166931</left_val>
-            <right_val>0.2385547012090683</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 3 2 -1.</_>
-                <_>8 13 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7318050377070904e-003</threshold>
-            <left_val>0.4319379031658173</left_val>
-            <right_val>0.6983600854873657</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 3 6 2 -1.</_>
-                <_>11 3 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.8482700735330582e-003</threshold>
-            <left_val>0.3082042932510376</left_val>
-            <right_val>0.5390920042991638</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 11 14 4 -1.</_>
-                <_>3 13 14 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5062530110299122e-005</threshold>
-            <left_val>0.5521922111511231</left_val>
-            <right_val>0.3120366036891937</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 10 18 4 -1.</_>
-                <_>10 10 9 2 2.</_>
-                <_>1 12 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0294755697250366</threshold>
-            <left_val>0.5401322841644287</left_val>
-            <right_val>0.1770603060722351</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 10 3 3 -1.</_>
-                <_>0 11 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.1387329846620560e-003</threshold>
-            <left_val>0.5178617835044861</left_val>
-            <right_val>0.1211019009351730</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 1 6 6 -1.</_>
-                <_>11 1 2 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0209429506212473</threshold>
-            <left_val>0.5290294289588928</left_val>
-            <right_val>0.3311221897602081</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 6 -1.</_>
-                <_>9 7 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.5665529370307922e-003</threshold>
-            <left_val>0.7471994161605835</left_val>
-            <right_val>0.4451968967914581</right_val></_></_></trees>
-      <stage_threshold>18.4129695892333980</stage_threshold>
-      <parent>2</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 4 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 0 18 9 -1.</_>
-                <_>1 3 18 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.8206960996612906e-004</threshold>
-            <left_val>0.2064086049795151</left_val>
-            <right_val>0.6076732277870178</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 10 2 6 -1.</_>
-                <_>12 13 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6790600493550301e-003</threshold>
-            <left_val>0.5851997137069702</left_val>
-            <right_val>0.1255383938550949</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 5 19 8 -1.</_>
-                <_>0 9 19 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.9827912375330925e-004</threshold>
-            <left_val>0.0940184295177460</left_val>
-            <right_val>0.5728961229324341</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 0 6 9 -1.</_>
-                <_>9 0 2 9 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.8959012171253562e-004</threshold>
-            <left_val>0.1781987994909287</left_val>
-            <right_val>0.5694308876991272</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 3 6 1 -1.</_>
-                <_>7 3 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.8560499195009470e-003</threshold>
-            <left_val>0.1638399064540863</left_val>
-            <right_val>0.5788664817810059</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 3 6 1 -1.</_>
-                <_>13 3 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.8122469559311867e-003</threshold>
-            <left_val>0.2085440009832382</left_val>
-            <right_val>0.5508564710617065</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 10 4 6 -1.</_>
-                <_>5 13 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5896620461717248e-003</threshold>
-            <left_val>0.5702760815620422</left_val>
-            <right_val>0.1857215017080307</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 3 6 1 -1.</_>
-                <_>13 3 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0100783398374915</threshold>
-            <left_val>0.5116943120956421</left_val>
-            <right_val>0.2189770042896271</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 4 12 6 -1.</_>
-                <_>4 6 12 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0635263025760651</threshold>
-            <left_val>0.7131379842758179</left_val>
-            <right_val>0.4043813049793243</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 12 2 6 -1.</_>
-                <_>15 14 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.1031491756439209e-003</threshold>
-            <left_val>0.2567181885242462</left_val>
-            <right_val>0.5463973283767700</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 3 2 2 -1.</_>
-                <_>10 3 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4035000242292881e-003</threshold>
-            <left_val>0.1700665950775147</left_val>
-            <right_val>0.5590974092483521</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 3 3 1 -1.</_>
-                <_>10 3 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5226360410451889e-003</threshold>
-            <left_val>0.5410556793212891</left_val>
-            <right_val>0.2619054019451141</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 1 4 14 -1.</_>
-                <_>3 1 2 14 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0179974399507046</threshold>
-            <left_val>0.3732436895370483</left_val>
-            <right_val>0.6535220742225647</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 0 4 4 -1.</_>
-                <_>11 0 2 2 2.</_>
-                <_>9 2 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.4538191072642803e-003</threshold>
-            <left_val>0.2626481950283051</left_val>
-            <right_val>0.5537446141242981</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 5 1 14 -1.</_>
-                <_>7 12 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0118807600811124</threshold>
-            <left_val>0.2003753930330277</left_val>
-            <right_val>0.5544745922088623</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>19 0 1 4 -1.</_>
-                <_>19 2 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2713660253211856e-003</threshold>
-            <left_val>0.5591902732849121</left_val>
-            <right_val>0.3031975924968720</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 6 4 -1.</_>
-                <_>8 5 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1376109905540943e-003</threshold>
-            <left_val>0.2730407118797302</left_val>
-            <right_val>0.5646508932113648</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 18 3 2 -1.</_>
-                <_>10 18 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.2651998810470104e-003</threshold>
-            <left_val>0.1405909061431885</left_val>
-            <right_val>0.5461820960044861</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 18 3 2 -1.</_>
-                <_>9 18 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9602861031889915e-003</threshold>
-            <left_val>0.1795035004615784</left_val>
-            <right_val>0.5459290146827698</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 5 12 6 -1.</_>
-                <_>4 7 12 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.8448226451873779e-003</threshold>
-            <left_val>0.5736783146858215</left_val>
-            <right_val>0.2809219956398010</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 12 2 6 -1.</_>
-                <_>3 14 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.6430689767003059e-003</threshold>
-            <left_val>0.2370675951242447</left_val>
-            <right_val>0.5503826141357422</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 8 2 12 -1.</_>
-                <_>10 12 2 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.9997808635234833e-003</threshold>
-            <left_val>0.5608199834823608</left_val>
-            <right_val>0.3304282128810883</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 18 3 2 -1.</_>
-                <_>8 18 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.1221720166504383e-003</threshold>
-            <left_val>0.1640105992555618</left_val>
-            <right_val>0.5378993153572083</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 0 6 2 -1.</_>
-                <_>11 0 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0156249096617103</threshold>
-            <left_val>0.5227649211883545</left_val>
-            <right_val>0.2288603931665421</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 11 9 3 -1.</_>
-                <_>5 12 9 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0103564197197557</threshold>
-            <left_val>0.7016193866729736</left_val>
-            <right_val>0.4252927899360657</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 0 6 2 -1.</_>
-                <_>11 0 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.7960809469223022e-003</threshold>
-            <left_val>0.2767347097396851</left_val>
-            <right_val>0.5355830192565918</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 1 18 5 -1.</_>
-                <_>7 1 6 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1622693985700607</threshold>
-            <left_val>0.4342240095138550</left_val>
-            <right_val>0.7442579269409180</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 0 4 4 -1.</_>
-                <_>10 0 2 2 2.</_>
-                <_>8 2 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5542530715465546e-003</threshold>
-            <left_val>0.5726485848426819</left_val>
-            <right_val>0.2582125067710877</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 12 1 3 -1.</_>
-                <_>3 13 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1309209987521172e-003</threshold>
-            <left_val>0.2106848061084747</left_val>
-            <right_val>0.5361018776893616</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 5 3 -1.</_>
-                <_>8 15 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0132084200158715</threshold>
-            <left_val>0.7593790888786316</left_val>
-            <right_val>0.4552468061447144</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 10 12 -1.</_>
-                <_>5 4 5 6 2.</_>
-                <_>10 10 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0659966766834259</threshold>
-            <left_val>0.1252475976943970</left_val>
-            <right_val>0.5344039797782898</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 6 9 12 -1.</_>
-                <_>9 10 9 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.9142656177282333e-003</threshold>
-            <left_val>0.3315384089946747</left_val>
-            <right_val>0.5601043105125427</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 2 12 14 -1.</_>
-                <_>2 2 6 7 2.</_>
-                <_>8 9 6 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0208942797034979</threshold>
-            <left_val>0.5506049990653992</left_val>
-            <right_val>0.2768838107585907</right_val></_></_></trees>
-      <stage_threshold>15.3241395950317380</stage_threshold>
-      <parent>3</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 5 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 7 12 2 -1.</_>
-                <_>8 7 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1961159761995077e-003</threshold>
-            <left_val>0.1762690991163254</left_val>
-            <right_val>0.6156241297721863</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 4 6 4 -1.</_>
-                <_>7 6 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8679830245673656e-003</threshold>
-            <left_val>0.6118106842041016</left_val>
-            <right_val>0.1832399964332581</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 5 11 8 -1.</_>
-                <_>4 9 11 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.9579799845814705e-004</threshold>
-            <left_val>0.0990442633628845</left_val>
-            <right_val>0.5723816156387329</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 10 16 4 -1.</_>
-                <_>3 12 16 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.0255657667294145e-004</threshold>
-            <left_val>0.5579879879951477</left_val>
-            <right_val>0.2377282977104187</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 16 2 -1.</_>
-                <_>0 1 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4510810617357492e-003</threshold>
-            <left_val>0.2231457978487015</left_val>
-            <right_val>0.5858935117721558</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 5 6 2 -1.</_>
-                <_>9 5 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0361850298941135e-004</threshold>
-            <left_val>0.2653993964195252</left_val>
-            <right_val>0.5794103741645813</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 2 6 10 -1.</_>
-                <_>3 2 3 5 2.</_>
-                <_>6 7 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.0293349884450436e-003</threshold>
-            <left_val>0.5803827047348023</left_val>
-            <right_val>0.2484865039587021</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 5 8 15 -1.</_>
-                <_>10 10 8 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0144517095759511</threshold>
-            <left_val>0.1830351948738098</left_val>
-            <right_val>0.5484204888343811</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 14 8 6 -1.</_>
-                <_>3 14 4 3 2.</_>
-                <_>7 17 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0380979403853416e-003</threshold>
-            <left_val>0.3363558948040009</left_val>
-            <right_val>0.6051092743873596</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 2 2 2 -1.</_>
-                <_>14 3 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.6155190533027053e-003</threshold>
-            <left_val>0.2286642044782639</left_val>
-            <right_val>0.5441246032714844</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 10 7 6 -1.</_>
-                <_>1 13 7 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3458340913057327e-003</threshold>
-            <left_val>0.5625913143157959</left_val>
-            <right_val>0.2392338067293167</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 4 4 3 -1.</_>
-                <_>15 4 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6379579901695251e-003</threshold>
-            <left_val>0.3906993865966797</left_val>
-            <right_val>0.5964621901512146</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 9 14 6 -1.</_>
-                <_>2 9 7 3 2.</_>
-                <_>9 12 7 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0302512105554342</threshold>
-            <left_val>0.5248482227325440</left_val>
-            <right_val>0.1575746983289719</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 10 4 -1.</_>
-                <_>5 9 10 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0372519902884960</threshold>
-            <left_val>0.4194310903549194</left_val>
-            <right_val>0.6748418807983398</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 9 8 8 -1.</_>
-                <_>6 9 4 4 2.</_>
-                <_>10 13 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0251097902655602</threshold>
-            <left_val>0.1882549971342087</left_val>
-            <right_val>0.5473451018333435</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 1 3 2 -1.</_>
-                <_>14 2 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3099058568477631e-003</threshold>
-            <left_val>0.1339973062276840</left_val>
-            <right_val>0.5227110981941223</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 4 4 2 -1.</_>
-                <_>3 4 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2086479691788554e-003</threshold>
-            <left_val>0.3762088119983673</left_val>
-            <right_val>0.6109635829925537</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 10 2 8 -1.</_>
-                <_>11 14 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0219076797366142</threshold>
-            <left_val>0.2663142979145050</left_val>
-            <right_val>0.5404006838798523</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 5 3 -1.</_>
-                <_>0 1 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4116579703986645e-003</threshold>
-            <left_val>0.5363578796386719</left_val>
-            <right_val>0.2232273072004318</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 5 18 8 -1.</_>
-                <_>11 5 9 4 2.</_>
-                <_>2 9 9 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0699463263154030</threshold>
-            <left_val>0.5358232855796814</left_val>
-            <right_val>0.2453698068857193</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 1 6 -1.</_>
-                <_>6 9 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4520021290518343e-004</threshold>
-            <left_val>0.2409671992063522</left_val>
-            <right_val>0.5376930236816406</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>19 1 1 3 -1.</_>
-                <_>19 2 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2627709656953812e-003</threshold>
-            <left_val>0.5425856709480286</left_val>
-            <right_val>0.3155693113803864</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 6 6 6 -1.</_>
-                <_>9 6 2 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0227195098996162</threshold>
-            <left_val>0.4158405959606171</left_val>
-            <right_val>0.6597865223884583</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>19 1 1 3 -1.</_>
-                <_>19 2 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8111000536009669e-003</threshold>
-            <left_val>0.2811253070831299</left_val>
-            <right_val>0.5505244731903076</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 13 2 3 -1.</_>
-                <_>3 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3469670452177525e-003</threshold>
-            <left_val>0.5260028243064880</left_val>
-            <right_val>0.1891465038061142</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 4 8 12 -1.</_>
-                <_>12 4 4 6 2.</_>
-                <_>8 10 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.0791751234792173e-004</threshold>
-            <left_val>0.5673509240150452</left_val>
-            <right_val>0.3344210088253021</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 2 6 3 -1.</_>
-                <_>7 2 2 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0127347996458411</threshold>
-            <left_val>0.5343592166900635</left_val>
-            <right_val>0.2395612001419067</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 1 9 10 -1.</_>
-                <_>6 6 9 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.3119727894663811e-003</threshold>
-            <left_val>0.6010890007019043</left_val>
-            <right_val>0.4022207856178284</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 4 6 12 -1.</_>
-                <_>2 4 2 12 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0569487512111664</threshold>
-            <left_val>0.8199151158332825</left_val>
-            <right_val>0.4543190896511078</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 13 2 3 -1.</_>
-                <_>15 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.0116591155529022e-003</threshold>
-            <left_val>0.2200281023979187</left_val>
-            <right_val>0.5357710719108582</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 14 5 3 -1.</_>
-                <_>7 15 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.0334368608891964e-003</threshold>
-            <left_val>0.4413081109523773</left_val>
-            <right_val>0.7181751132011414</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 13 3 3 -1.</_>
-                <_>15 14 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.9437441155314445e-003</threshold>
-            <left_val>0.5478860735893250</left_val>
-            <right_val>0.2791733145713806</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 14 8 3 -1.</_>
-                <_>6 15 8 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.6591119132936001e-003</threshold>
-            <left_val>0.6357867717742920</left_val>
-            <right_val>0.3989723920822144</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 13 3 3 -1.</_>
-                <_>15 14 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.8456181064248085e-003</threshold>
-            <left_val>0.3493686020374298</left_val>
-            <right_val>0.5300664901733398</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 13 3 3 -1.</_>
-                <_>2 14 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.1926261298358440e-003</threshold>
-            <left_val>0.1119614988565445</left_val>
-            <right_val>0.5229672789573669</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 7 12 12 -1.</_>
-                <_>10 7 6 6 2.</_>
-                <_>4 13 6 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0527989417314529</threshold>
-            <left_val>0.2387102991342545</left_val>
-            <right_val>0.5453451275825501</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 2 6 -1.</_>
-                <_>10 7 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.9537667334079742e-003</threshold>
-            <left_val>0.7586917877197266</left_val>
-            <right_val>0.4439376890659332</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 9 5 2 -1.</_>
-                <_>8 10 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.7344180271029472e-003</threshold>
-            <left_val>0.2565476894378662</left_val>
-            <right_val>0.5489321947097778</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 6 3 4 -1.</_>
-                <_>9 6 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8507939530536532e-003</threshold>
-            <left_val>0.6734347939491272</left_val>
-            <right_val>0.4252474904060364</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 6 2 8 -1.</_>
-                <_>9 10 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0159189198166132</threshold>
-            <left_val>0.5488352775573731</left_val>
-            <right_val>0.2292661964893341</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 7 3 6 -1.</_>
-                <_>8 7 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2687679845839739e-003</threshold>
-            <left_val>0.6104331016540527</left_val>
-            <right_val>0.4022389948368073</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 3 3 3 -1.</_>
-                <_>12 3 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.2883910723030567e-003</threshold>
-            <left_val>0.5310853123664856</left_val>
-            <right_val>0.1536193042993546</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 6 1 -1.</_>
-                <_>7 4 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.2259892001748085e-003</threshold>
-            <left_val>0.1729111969470978</left_val>
-            <right_val>0.5241606235504150</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 10 3 -1.</_>
-                <_>5 7 10 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0121325999498367</threshold>
-            <left_val>0.6597759723663330</left_val>
-            <right_val>0.4325182139873505</right_val></_></_></trees>
-      <stage_threshold>21.0106391906738280</stage_threshold>
-      <parent>4</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 6 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 3 6 9 -1.</_>
-                <_>7 6 6 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.9184908382594585e-003</threshold>
-            <left_val>0.6103435158729553</left_val>
-            <right_val>0.1469330936670303</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 7 9 1 -1.</_>
-                <_>9 7 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5971299726516008e-003</threshold>
-            <left_val>0.2632363140583038</left_val>
-            <right_val>0.5896466970443726</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 8 16 8 -1.</_>
-                <_>2 12 16 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0177801102399826</threshold>
-            <left_val>0.5872874259948731</left_val>
-            <right_val>0.1760361939668655</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 6 2 6 -1.</_>
-                <_>14 9 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5334769897162914e-004</threshold>
-            <left_val>0.1567801982164383</left_val>
-            <right_val>0.5596066117286682</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 5 6 15 -1.</_>
-                <_>1 10 6 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.8353091329336166e-004</threshold>
-            <left_val>0.1913153976202011</left_val>
-            <right_val>0.5732036232948303</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 0 6 9 -1.</_>
-                <_>10 3 6 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6104689566418529e-003</threshold>
-            <left_val>0.2914913892745972</left_val>
-            <right_val>0.5623080730438232</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 7 14 -1.</_>
-                <_>6 13 7 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0977506190538406</threshold>
-            <left_val>0.1943476945161820</left_val>
-            <right_val>0.5648233294487000</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 7 3 6 -1.</_>
-                <_>13 9 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.5182358482852578e-004</threshold>
-            <left_val>0.3134616911411285</left_val>
-            <right_val>0.5504639744758606</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 8 15 4 -1.</_>
-                <_>6 8 5 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0128582203760743</threshold>
-            <left_val>0.2536481916904450</left_val>
-            <right_val>0.5760142803192139</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 2 3 10 -1.</_>
-                <_>11 7 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.1530239395797253e-003</threshold>
-            <left_val>0.5767722129821777</left_val>
-            <right_val>0.3659774065017700</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 7 4 6 -1.</_>
-                <_>3 9 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7092459602281451e-003</threshold>
-            <left_val>0.2843191027641296</left_val>
-            <right_val>0.5918939113616943</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 3 6 10 -1.</_>
-                <_>15 3 2 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.5217359699308872e-003</threshold>
-            <left_val>0.4052427113056183</left_val>
-            <right_val>0.6183109283447266</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 8 10 -1.</_>
-                <_>5 7 4 5 2.</_>
-                <_>9 12 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2479810286313295e-003</threshold>
-            <left_val>0.5783755183219910</left_val>
-            <right_val>0.3135401010513306</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 4 12 12 -1.</_>
-                <_>10 4 6 6 2.</_>
-                <_>4 10 6 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0520062111318111</threshold>
-            <left_val>0.5541312098503113</left_val>
-            <right_val>0.1916636973619461</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 4 6 9 -1.</_>
-                <_>3 4 2 9 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0120855299755931</threshold>
-            <left_val>0.4032655954360962</left_val>
-            <right_val>0.6644591093063355</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 3 2 5 -1.</_>
-                <_>11 3 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4687820112158079e-005</threshold>
-            <left_val>0.3535977900028229</left_val>
-            <right_val>0.5709382891654968</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 3 2 5 -1.</_>
-                <_>8 3 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.1395188570022583e-006</threshold>
-            <left_val>0.3037444949150085</left_val>
-            <right_val>0.5610269904136658</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 14 2 3 -1.</_>
-                <_>10 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.6001640148460865e-003</threshold>
-            <left_val>0.7181087136268616</left_val>
-            <right_val>0.4580326080322266</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 12 6 2 -1.</_>
-                <_>8 12 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0058949012309313e-003</threshold>
-            <left_val>0.5621951818466187</left_val>
-            <right_val>0.2953684031963348</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 14 2 3 -1.</_>
-                <_>9 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5050270855426788e-003</threshold>
-            <left_val>0.4615387916564941</left_val>
-            <right_val>0.7619017958641052</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 11 12 6 -1.</_>
-                <_>4 14 12 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0117468303069472</threshold>
-            <left_val>0.5343837141990662</left_val>
-            <right_val>0.1772529035806656</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 11 5 9 -1.</_>
-                <_>11 14 5 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0583163388073444</threshold>
-            <left_val>0.1686245948076248</left_val>
-            <right_val>0.5340772271156311</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 15 3 2 -1.</_>
-                <_>6 16 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3629379575140774e-004</threshold>
-            <left_val>0.3792056143283844</left_val>
-            <right_val>0.6026803851127625</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 0 3 5 -1.</_>
-                <_>12 0 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.8156180679798126e-003</threshold>
-            <left_val>0.1512867063283920</left_val>
-            <right_val>0.5324323773384094</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 6 7 -1.</_>
-                <_>8 5 3 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0108761601150036</threshold>
-            <left_val>0.2081822007894516</left_val>
-            <right_val>0.5319945216178894</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 0 1 9 -1.</_>
-                <_>13 3 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.7745519764721394e-003</threshold>
-            <left_val>0.4098246991634369</left_val>
-            <right_val>0.5210328102111816</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 2 4 8 -1.</_>
-                <_>3 2 2 4 2.</_>
-                <_>5 6 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.8276381827890873e-004</threshold>
-            <left_val>0.5693274140357971</left_val>
-            <right_val>0.3478842079639435</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 12 4 6 -1.</_>
-                <_>13 14 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0138704096898437</threshold>
-            <left_val>0.5326750874519348</left_val>
-            <right_val>0.2257698029279709</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 12 4 6 -1.</_>
-                <_>3 14 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0236749108880758</threshold>
-            <left_val>0.1551305055618286</left_val>
-            <right_val>0.5200707912445068</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 11 3 4 -1.</_>
-                <_>13 13 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4879409718560055e-005</threshold>
-            <left_val>0.5500566959381104</left_val>
-            <right_val>0.3820176124572754</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 4 4 3 -1.</_>
-                <_>4 5 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.6190641112625599e-003</threshold>
-            <left_val>0.4238683879375458</left_val>
-            <right_val>0.6639748215675354</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 5 11 8 -1.</_>
-                <_>7 9 11 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0198171101510525</threshold>
-            <left_val>0.2150038033723831</left_val>
-            <right_val>0.5382357835769653</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 8 3 4 -1.</_>
-                <_>8 8 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.8154039066284895e-003</threshold>
-            <left_val>0.6675711274147034</left_val>
-            <right_val>0.4215297102928162</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 1 6 1 -1.</_>
-                <_>11 1 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.9775829538702965e-003</threshold>
-            <left_val>0.2267289012670517</left_val>
-            <right_val>0.5386328101158142</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 3 3 -1.</_>
-                <_>5 6 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2441020701080561e-003</threshold>
-            <left_val>0.4308691024780273</left_val>
-            <right_val>0.6855735778808594</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 9 20 6 -1.</_>
-                <_>10 9 10 3 2.</_>
-                <_>0 12 10 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0122824599966407</threshold>
-            <left_val>0.5836614966392517</left_val>
-            <right_val>0.3467479050159454</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 6 3 5 -1.</_>
-                <_>9 6 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.8548699337989092e-003</threshold>
-            <left_val>0.7016944885253906</left_val>
-            <right_val>0.4311453998088837</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 0 1 3 -1.</_>
-                <_>11 1 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.7875669077038765e-003</threshold>
-            <left_val>0.2895345091819763</left_val>
-            <right_val>0.5224946141242981</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 2 4 2 -1.</_>
-                <_>4 3 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2201230274513364e-003</threshold>
-            <left_val>0.2975570857524872</left_val>
-            <right_val>0.5481644868850708</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 6 4 3 -1.</_>
-                <_>12 7 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0101605998352170</threshold>
-            <left_val>0.4888817965984345</left_val>
-            <right_val>0.8182697892189026</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 0 6 4 -1.</_>
-                <_>7 0 2 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0161745697259903</threshold>
-            <left_val>0.1481492966413498</left_val>
-            <right_val>0.5239992737770081</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 3 8 -1.</_>
-                <_>10 7 1 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0192924607545137</threshold>
-            <left_val>0.4786309897899628</left_val>
-            <right_val>0.7378190755844116</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 2 2 -1.</_>
-                <_>10 7 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.2479539513587952e-003</threshold>
-            <left_val>0.7374222874641419</left_val>
-            <right_val>0.4470643997192383</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 7 14 4 -1.</_>
-                <_>13 7 7 2 2.</_>
-                <_>6 9 7 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.3803480267524719e-003</threshold>
-            <left_val>0.3489154875278473</left_val>
-            <right_val>0.5537996292114258</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 5 3 6 -1.</_>
-                <_>0 7 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0126061299815774</threshold>
-            <left_val>0.2379686981439591</left_val>
-            <right_val>0.5315443277359009</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 11 3 4 -1.</_>
-                <_>13 13 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0256219301372766</threshold>
-            <left_val>0.1964688003063202</left_val>
-            <right_val>0.5138769745826721</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 11 3 4 -1.</_>
-                <_>4 13 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.5741496402770281e-005</threshold>
-            <left_val>0.5590522885322571</left_val>
-            <right_val>0.3365853130817413</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 9 12 8 -1.</_>
-                <_>11 9 6 4 2.</_>
-                <_>5 13 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0892108827829361</threshold>
-            <left_val>0.0634046569466591</left_val>
-            <right_val>0.5162634849548340</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 1 3 -1.</_>
-                <_>9 13 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.7670480776578188e-003</threshold>
-            <left_val>0.7323467731475830</left_val>
-            <right_val>0.4490706026554108</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 15 2 4 -1.</_>
-                <_>10 17 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7152578695677221e-004</threshold>
-            <left_val>0.4114834964275360</left_val>
-            <right_val>0.5985518097877502</right_val></_></_></trees>
-      <stage_threshold>23.9187908172607420</stage_threshold>
-      <parent>5</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 7 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 7 6 1 -1.</_>
-                <_>9 7 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4786219689995050e-003</threshold>
-            <left_val>0.2663545012474060</left_val>
-            <right_val>0.6643316745758057</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 3 6 6 -1.</_>
-                <_>15 3 3 3 2.</_>
-                <_>12 6 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8741659587249160e-003</threshold>
-            <left_val>0.6143848896026611</left_val>
-            <right_val>0.2518512904644013</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 4 10 6 -1.</_>
-                <_>0 6 10 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7151009524241090e-003</threshold>
-            <left_val>0.5766341090202332</left_val>
-            <right_val>0.2397463023662567</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 3 8 14 -1.</_>
-                <_>12 3 4 7 2.</_>
-                <_>8 10 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8939269939437509e-003</threshold>
-            <left_val>0.5682045817375183</left_val>
-            <right_val>0.2529144883155823</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 4 7 15 -1.</_>
-                <_>4 9 7 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3006052039563656e-003</threshold>
-            <left_val>0.1640675961971283</left_val>
-            <right_val>0.5556079745292664</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 2 6 8 -1.</_>
-                <_>15 2 3 4 2.</_>
-                <_>12 6 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0466625317931175</threshold>
-            <left_val>0.6123154163360596</left_val>
-            <right_val>0.4762830138206482</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 2 6 8 -1.</_>
-                <_>2 2 3 4 2.</_>
-                <_>5 6 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.9431332414969802e-004</threshold>
-            <left_val>0.5707858800888062</left_val>
-            <right_val>0.2839404046535492</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 13 18 7 -1.</_>
-                <_>8 13 6 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0148916700854898</threshold>
-            <left_val>0.4089672863483429</left_val>
-            <right_val>0.6006367206573486</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 3 8 14 -1.</_>
-                <_>4 3 4 7 2.</_>
-                <_>8 10 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2046529445797205e-003</threshold>
-            <left_val>0.5712450742721558</left_val>
-            <right_val>0.2705289125442505</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 1 2 6 -1.</_>
-                <_>18 3 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.0619381256401539e-003</threshold>
-            <left_val>0.5262504220008850</left_val>
-            <right_val>0.3262225985527039</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 11 2 3 -1.</_>
-                <_>9 12 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5286648888140917e-003</threshold>
-            <left_val>0.6853830814361572</left_val>
-            <right_val>0.4199256896972656</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 1 2 6 -1.</_>
-                <_>18 3 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.9010218828916550e-003</threshold>
-            <left_val>0.3266282081604004</left_val>
-            <right_val>0.5434812903404236</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 1 2 6 -1.</_>
-                <_>0 3 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.6702760048210621e-003</threshold>
-            <left_val>0.5468410849571228</left_val>
-            <right_val>0.2319003939628601</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 5 18 6 -1.</_>
-                <_>1 7 18 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.0304100364446640e-003</threshold>
-            <left_val>0.5570667982101440</left_val>
-            <right_val>0.2708238065242767</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 6 7 -1.</_>
-                <_>3 2 3 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9803649522364140e-003</threshold>
-            <left_val>0.3700568974018097</left_val>
-            <right_val>0.5890625715255737</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 3 6 14 -1.</_>
-                <_>7 10 6 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0758405104279518</threshold>
-            <left_val>0.2140070050954819</left_val>
-            <right_val>0.5419948101043701</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 7 13 10 -1.</_>
-                <_>3 12 13 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0192625392228365</threshold>
-            <left_val>0.5526772141456604</left_val>
-            <right_val>0.2726590037345886</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 15 2 2 -1.</_>
-                <_>11 16 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.8888259364757687e-004</threshold>
-            <left_val>0.3958011865615845</left_val>
-            <right_val>0.6017209887504578</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 11 16 4 -1.</_>
-                <_>2 11 8 2 2.</_>
-                <_>10 13 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0293695498257875</threshold>
-            <left_val>0.5241373777389526</left_val>
-            <right_val>0.1435758024454117</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 7 6 4 -1.</_>
-                <_>16 7 3 2 2.</_>
-                <_>13 9 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0417619487270713e-003</threshold>
-            <left_val>0.3385409116744995</left_val>
-            <right_val>0.5929983258247376</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 10 3 9 -1.</_>
-                <_>6 13 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6125640142709017e-003</threshold>
-            <left_val>0.5485377907752991</left_val>
-            <right_val>0.3021597862243652</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 6 1 6 -1.</_>
-                <_>14 9 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.6977467183023691e-004</threshold>
-            <left_val>0.3375276029109955</left_val>
-            <right_val>0.5532032847404480</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 10 4 1 -1.</_>
-                <_>7 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9512659208849072e-004</threshold>
-            <left_val>0.5631743073463440</left_val>
-            <right_val>0.3359399139881134</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 8 15 5 -1.</_>
-                <_>8 8 5 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1015655994415283</threshold>
-            <left_val>0.0637350380420685</left_val>
-            <right_val>0.5230425000190735</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 6 5 4 -1.</_>
-                <_>1 8 5 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0361566990613937</threshold>
-            <left_val>0.5136963129043579</left_val>
-            <right_val>0.1029528975486755</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 1 17 6 -1.</_>
-                <_>3 3 17 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4624140243977308e-003</threshold>
-            <left_val>0.3879320025444031</left_val>
-            <right_val>0.5558289289474487</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 7 8 2 -1.</_>
-                <_>10 7 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0195549800992012</threshold>
-            <left_val>0.5250086784362793</left_val>
-            <right_val>0.1875859946012497</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 3 2 -1.</_>
-                <_>10 7 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3121440317481756e-003</threshold>
-            <left_val>0.6672028899192810</left_val>
-            <right_val>0.4679641127586365</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 2 -1.</_>
-                <_>9 7 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8605289515107870e-003</threshold>
-            <left_val>0.7163379192352295</left_val>
-            <right_val>0.4334670901298523</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 9 4 2 -1.</_>
-                <_>8 10 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.4026362057775259e-004</threshold>
-            <left_val>0.3021360933780670</left_val>
-            <right_val>0.5650203227996826</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 8 4 3 -1.</_>
-                <_>8 9 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2418331615626812e-003</threshold>
-            <left_val>0.1820009052753449</left_val>
-            <right_val>0.5250256061553955</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 6 4 -1.</_>
-                <_>9 5 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1729019752237946e-004</threshold>
-            <left_val>0.3389188051223755</left_val>
-            <right_val>0.5445973277091980</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 13 4 3 -1.</_>
-                <_>8 14 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1878840159624815e-003</threshold>
-            <left_val>0.4085349142551422</left_val>
-            <right_val>0.6253563165664673</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 7 12 6 -1.</_>
-                <_>10 7 6 3 2.</_>
-                <_>4 10 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0108813596889377</threshold>
-            <left_val>0.3378399014472961</left_val>
-            <right_val>0.5700082778930664</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 4 3 -1.</_>
-                <_>8 15 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7354859737679362e-003</threshold>
-            <left_val>0.4204635918140411</left_val>
-            <right_val>0.6523038744926453</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 3 3 -1.</_>
-                <_>9 8 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.5119052305817604e-003</threshold>
-            <left_val>0.2595216035842896</left_val>
-            <right_val>0.5428143739700317</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 4 3 8 -1.</_>
-                <_>8 4 1 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2136430013924837e-003</threshold>
-            <left_val>0.6165143847465515</left_val>
-            <right_val>0.3977893888950348</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 0 3 6 -1.</_>
-                <_>11 0 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0103542404249310</threshold>
-            <left_val>0.1628028005361557</left_val>
-            <right_val>0.5219504833221436</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 3 4 8 -1.</_>
-                <_>8 3 2 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.5858830455690622e-004</threshold>
-            <left_val>0.3199650943279266</left_val>
-            <right_val>0.5503574013710022</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 3 6 13 -1.</_>
-                <_>14 3 3 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0152996499091387</threshold>
-            <left_val>0.4103994071483612</left_val>
-            <right_val>0.6122388243675232</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 13 3 6 -1.</_>
-                <_>8 16 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0215882100164890</threshold>
-            <left_val>0.1034912988543510</left_val>
-            <right_val>0.5197384953498840</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 3 6 13 -1.</_>
-                <_>14 3 3 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1283462941646576</threshold>
-            <left_val>0.8493865132331848</left_val>
-            <right_val>0.4893102943897247</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 7 10 4 -1.</_>
-                <_>0 7 5 2 2.</_>
-                <_>5 9 5 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2927189711481333e-003</threshold>
-            <left_val>0.3130157887935638</left_val>
-            <right_val>0.5471575260162354</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 3 6 13 -1.</_>
-                <_>14 3 3 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0799151062965393</threshold>
-            <left_val>0.4856320917606354</left_val>
-            <right_val>0.6073989272117615</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 3 6 13 -1.</_>
-                <_>3 3 3 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0794410929083824</threshold>
-            <left_val>0.8394674062728882</left_val>
-            <right_val>0.4624533057212830</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 1 4 1 -1.</_>
-                <_>9 1 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2800010889768600e-003</threshold>
-            <left_val>0.1881695985794067</left_val>
-            <right_val>0.5306698083877564</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 0 2 1 -1.</_>
-                <_>9 0 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0463109938427806e-003</threshold>
-            <left_val>0.5271229147911072</left_val>
-            <right_val>0.2583065927028656</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 16 4 4 -1.</_>
-                <_>12 16 2 2 2.</_>
-                <_>10 18 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6317298761568964e-004</threshold>
-            <left_val>0.4235304892063141</left_val>
-            <right_val>0.5735440850257874</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 6 2 3 -1.</_>
-                <_>10 6 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.6173160187900066e-003</threshold>
-            <left_val>0.6934396028518677</left_val>
-            <right_val>0.4495444893836975</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 5 12 2 -1.</_>
-                <_>8 5 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0114218797534704</threshold>
-            <left_val>0.5900921225547791</left_val>
-            <right_val>0.4138193130493164</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 5 -1.</_>
-                <_>9 7 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.9963278900831938e-003</threshold>
-            <left_val>0.6466382741928101</left_val>
-            <right_val>0.4327239990234375</right_val></_></_></trees>
-      <stage_threshold>24.5278797149658200</stage_threshold>
-      <parent>6</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 8 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 4 8 6 -1.</_>
-                <_>6 6 8 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.9691245704889297e-003</threshold>
-            <left_val>0.6142324209213257</left_val>
-            <right_val>0.2482212036848068</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 2 12 -1.</_>
-                <_>9 11 2 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.3073059320449829e-004</threshold>
-            <left_val>0.5704951882362366</left_val>
-            <right_val>0.2321965992450714</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 6 6 8 -1.</_>
-                <_>4 10 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.4045301405712962e-004</threshold>
-            <left_val>0.2112251967191696</left_val>
-            <right_val>0.5814933180809021</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 2 8 5 -1.</_>
-                <_>12 2 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5424019917845726e-003</threshold>
-            <left_val>0.2950482070446014</left_val>
-            <right_val>0.5866311788558960</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 8 18 3 -1.</_>
-                <_>0 9 18 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.2477443104144186e-005</threshold>
-            <left_val>0.2990990877151489</left_val>
-            <right_val>0.5791326761245728</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 4 8 -1.</_>
-                <_>8 16 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.6603146046400070e-003</threshold>
-            <left_val>0.2813029885292053</left_val>
-            <right_val>0.5635542273521423</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 8 5 -1.</_>
-                <_>4 2 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.0515816807746887e-003</threshold>
-            <left_val>0.3535369038581848</left_val>
-            <right_val>0.6054757237434387</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 11 3 4 -1.</_>
-                <_>13 13 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.3835240649059415e-004</threshold>
-            <left_val>0.5596532225608826</left_val>
-            <right_val>0.2731510996818543</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 11 6 1 -1.</_>
-                <_>7 11 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.8168973636347800e-005</threshold>
-            <left_val>0.5978031754493713</left_val>
-            <right_val>0.3638561069965363</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 3 3 1 -1.</_>
-                <_>12 3 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1298790341243148e-003</threshold>
-            <left_val>0.2755252122879028</left_val>
-            <right_val>0.5432729125022888</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 13 5 3 -1.</_>
-                <_>7 14 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.4356150105595589e-003</threshold>
-            <left_val>0.4305641949176788</left_val>
-            <right_val>0.7069833278656006</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 11 7 6 -1.</_>
-                <_>11 14 7 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0568293295800686</threshold>
-            <left_val>0.2495242953300476</left_val>
-            <right_val>0.5294997096061707</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 11 7 6 -1.</_>
-                <_>2 14 7 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.0668169967830181e-003</threshold>
-            <left_val>0.5478553175926209</left_val>
-            <right_val>0.2497723996639252</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 14 2 6 -1.</_>
-                <_>12 16 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8164798499783501e-005</threshold>
-            <left_val>0.3938601016998291</left_val>
-            <right_val>0.5706356167793274</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 3 3 -1.</_>
-                <_>8 15 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.1795017682015896e-003</threshold>
-            <left_val>0.4407606124877930</left_val>
-            <right_val>0.7394766807556152</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 0 3 5 -1.</_>
-                <_>12 0 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.4985752105712891e-003</threshold>
-            <left_val>0.5445243120193481</left_val>
-            <right_val>0.2479152977466583</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 1 4 9 -1.</_>
-                <_>8 1 2 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0211090557277203e-003</threshold>
-            <left_val>0.2544766962528229</left_val>
-            <right_val>0.5338971018791199</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 3 6 1 -1.</_>
-                <_>12 3 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.4247528314590454e-003</threshold>
-            <left_val>0.2718858122825623</left_val>
-            <right_val>0.5324069261550903</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 8 3 4 -1.</_>
-                <_>8 10 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0559899965301156e-003</threshold>
-            <left_val>0.3178288042545319</left_val>
-            <right_val>0.5534508824348450</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 4 2 -1.</_>
-                <_>8 13 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.6465808777138591e-004</threshold>
-            <left_val>0.4284219145774841</left_val>
-            <right_val>0.6558194160461426</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 18 4 2 -1.</_>
-                <_>5 19 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.7524109464138746e-004</threshold>
-            <left_val>0.5902860760688782</left_val>
-            <right_val>0.3810262978076935</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 1 18 6 -1.</_>
-                <_>2 3 18 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.2293202131986618e-003</threshold>
-            <left_val>0.3816489875316620</left_val>
-            <right_val>0.5709385871887207</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 0 3 2 -1.</_>
-                <_>7 0 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.2868210691958666e-003</threshold>
-            <left_val>0.1747743934392929</left_val>
-            <right_val>0.5259544253349304</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 8 6 2 -1.</_>
-                <_>16 8 3 1 2.</_>
-                <_>13 9 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5611879643984139e-004</threshold>
-            <left_val>0.3601722121238709</left_val>
-            <right_val>0.5725612044334412</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 10 3 6 -1.</_>
-                <_>6 13 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.3621381488919724e-006</threshold>
-            <left_val>0.5401858091354370</left_val>
-            <right_val>0.3044497072696686</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 13 20 4 -1.</_>
-                <_>10 13 10 2 2.</_>
-                <_>0 15 10 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0147672500461340</threshold>
-            <left_val>0.3220770061016083</left_val>
-            <right_val>0.5573434829711914</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 7 6 5 -1.</_>
-                <_>9 7 2 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0244895908981562</threshold>
-            <left_val>0.4301528036594391</left_val>
-            <right_val>0.6518812775611877</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 0 2 2 -1.</_>
-                <_>11 1 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.7652091123163700e-004</threshold>
-            <left_val>0.3564583063125610</left_val>
-            <right_val>0.5598236918449402</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 8 6 2 -1.</_>
-                <_>1 8 3 1 2.</_>
-                <_>4 9 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.3657688517414499e-006</threshold>
-            <left_val>0.3490782976150513</left_val>
-            <right_val>0.5561897754669190</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 20 2 -1.</_>
-                <_>10 2 10 1 2.</_>
-                <_>0 3 10 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0150999398902059</threshold>
-            <left_val>0.1776272058486939</left_val>
-            <right_val>0.5335299968719482</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 14 5 3 -1.</_>
-                <_>7 15 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.8316650316119194e-003</threshold>
-            <left_val>0.6149687767028809</left_val>
-            <right_val>0.4221394062042236</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 13 6 6 -1.</_>
-                <_>10 13 3 3 2.</_>
-                <_>7 16 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0169254001230001</threshold>
-            <left_val>0.5413014888763428</left_val>
-            <right_val>0.2166585028171539</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 2 3 -1.</_>
-                <_>9 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.0477850232273340e-003</threshold>
-            <left_val>0.6449490785598755</left_val>
-            <right_val>0.4354617893695831</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 11 1 6 -1.</_>
-                <_>16 13 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2140589319169521e-003</threshold>
-            <left_val>0.5400155186653137</left_val>
-            <right_val>0.3523217141628265</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 11 1 6 -1.</_>
-                <_>3 13 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.0023201145231724e-003</threshold>
-            <left_val>0.2774524092674255</left_val>
-            <right_val>0.5338417291641235</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 4 14 12 -1.</_>
-                <_>11 4 7 6 2.</_>
-                <_>4 10 7 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.4182129465043545e-003</threshold>
-            <left_val>0.5676739215850830</left_val>
-            <right_val>0.3702817857265472</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 3 3 -1.</_>
-                <_>5 5 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.8764587417244911e-003</threshold>
-            <left_val>0.7749221920967102</left_val>
-            <right_val>0.4583688974380493</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 3 3 3 -1.</_>
-                <_>13 3 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7311739977449179e-003</threshold>
-            <left_val>0.5338721871376038</left_val>
-            <right_val>0.3996661007404327</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 8 3 -1.</_>
-                <_>6 7 8 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5082379579544067e-003</threshold>
-            <left_val>0.5611963272094727</left_val>
-            <right_val>0.3777498900890350</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 3 3 3 -1.</_>
-                <_>13 3 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.0541074275970459e-003</threshold>
-            <left_val>0.2915228903293610</left_val>
-            <right_val>0.5179182887077332</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 1 4 10 -1.</_>
-                <_>3 1 2 5 2.</_>
-                <_>5 6 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.7938813269138336e-004</threshold>
-            <left_val>0.5536432862281799</left_val>
-            <right_val>0.3700192868709564</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 10 2 -1.</_>
-                <_>5 7 5 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.8745909482240677e-003</threshold>
-            <left_val>0.3754391074180603</left_val>
-            <right_val>0.5679376125335693</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 3 -1.</_>
-                <_>9 7 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.4936719350516796e-003</threshold>
-            <left_val>0.7019699215888977</left_val>
-            <right_val>0.4480949938297272</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 12 2 3 -1.</_>
-                <_>15 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.4389229044318199e-003</threshold>
-            <left_val>0.2310364991426468</left_val>
-            <right_val>0.5313386917114258</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 8 3 4 -1.</_>
-                <_>8 8 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.5094640487805009e-004</threshold>
-            <left_val>0.5864868760108948</left_val>
-            <right_val>0.4129343032836914</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 4 1 12 -1.</_>
-                <_>13 10 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4528800420521293e-005</threshold>
-            <left_val>0.3732407093048096</left_val>
-            <right_val>0.5619621276855469</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 5 12 12 -1.</_>
-                <_>4 5 6 6 2.</_>
-                <_>10 11 6 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0407580696046352</threshold>
-            <left_val>0.5312091112136841</left_val>
-            <right_val>0.2720521986484528</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 14 7 3 -1.</_>
-                <_>7 15 7 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.6505931317806244e-003</threshold>
-            <left_val>0.4710015952587128</left_val>
-            <right_val>0.6693493723869324</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 12 2 3 -1.</_>
-                <_>3 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5759351924061775e-003</threshold>
-            <left_val>0.5167819261550903</left_val>
-            <right_val>0.1637275964021683</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 2 14 2 -1.</_>
-                <_>10 2 7 1 2.</_>
-                <_>3 3 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5269311890006065e-003</threshold>
-            <left_val>0.5397608876228333</left_val>
-            <right_val>0.2938531935214996</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 1 3 10 -1.</_>
-                <_>1 1 1 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0136603796854615</threshold>
-            <left_val>0.7086488008499146</left_val>
-            <right_val>0.4532200098037720</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 0 6 5 -1.</_>
-                <_>11 0 2 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0273588690906763</threshold>
-            <left_val>0.5206481218338013</left_val>
-            <right_val>0.3589231967926025</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 6 2 -1.</_>
-                <_>8 7 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.2197551596909761e-004</threshold>
-            <left_val>0.3507075905799866</left_val>
-            <right_val>0.5441123247146606</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 1 6 10 -1.</_>
-                <_>7 6 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.3077080734074116e-003</threshold>
-            <left_val>0.5859522819519043</left_val>
-            <right_val>0.4024891853332520</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 1 18 3 -1.</_>
-                <_>7 1 6 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0106311095878482</threshold>
-            <left_val>0.6743267178535461</left_val>
-            <right_val>0.4422602951526642</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 3 3 6 -1.</_>
-                <_>16 5 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0194416493177414</threshold>
-            <left_val>0.5282716155052185</left_val>
-            <right_val>0.1797904968261719</right_val></_></_></trees>
-      <stage_threshold>27.1533508300781250</stage_threshold>
-      <parent>7</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 9 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 3 7 6 -1.</_>
-                <_>6 6 7 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.5052167735993862e-003</threshold>
-            <left_val>0.5914731025695801</left_val>
-            <right_val>0.2626559138298035</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 7 12 2 -1.</_>
-                <_>8 7 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9562279339879751e-003</threshold>
-            <left_val>0.2312581986188889</left_val>
-            <right_val>0.5741627216339111</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 4 17 10 -1.</_>
-                <_>0 9 17 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.8924784213304520e-003</threshold>
-            <left_val>0.1656530052423477</left_val>
-            <right_val>0.5626654028892517</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 4 15 16 -1.</_>
-                <_>3 12 15 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0836383774876595</threshold>
-            <left_val>0.5423449873924255</left_val>
-            <right_val>0.1957294940948486</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 15 6 4 -1.</_>
-                <_>7 17 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2282270472496748e-003</threshold>
-            <left_val>0.3417904078960419</left_val>
-            <right_val>0.5992503762245178</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 2 4 9 -1.</_>
-                <_>15 2 2 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.7629169896245003e-003</threshold>
-            <left_val>0.3719581961631775</left_val>
-            <right_val>0.6079903841018677</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 3 3 2 -1.</_>
-                <_>2 4 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.6417410224676132e-003</threshold>
-            <left_val>0.2577486038208008</left_val>
-            <right_val>0.5576915740966797</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 6 7 9 -1.</_>
-                <_>13 9 7 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4113149158656597e-003</threshold>
-            <left_val>0.2950749099254608</left_val>
-            <right_val>0.5514171719551086</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 11 4 3 -1.</_>
-                <_>8 12 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0110693201422691</threshold>
-            <left_val>0.7569358944892883</left_val>
-            <right_val>0.4477078914642334</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 20 6 -1.</_>
-                <_>10 2 10 3 2.</_>
-                <_>0 5 10 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0348659716546535</threshold>
-            <left_val>0.5583708882331848</left_val>
-            <right_val>0.2669621109962463</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 2 6 10 -1.</_>
-                <_>3 2 3 5 2.</_>
-                <_>6 7 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5701099811121821e-004</threshold>
-            <left_val>0.5627313256263733</left_val>
-            <right_val>0.2988890111446381</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 10 3 4 -1.</_>
-                <_>13 12 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0243391301482916</threshold>
-            <left_val>0.2771185040473938</left_val>
-            <right_val>0.5108863115310669</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 10 3 4 -1.</_>
-                <_>4 12 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9435202274471521e-004</threshold>
-            <left_val>0.5580651760101318</left_val>
-            <right_val>0.3120341897010803</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 5 6 3 -1.</_>
-                <_>9 5 2 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2971509024500847e-003</threshold>
-            <left_val>0.3330250084400177</left_val>
-            <right_val>0.5679075717926025</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 6 6 8 -1.</_>
-                <_>7 10 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.7801829166710377e-003</threshold>
-            <left_val>0.2990534901618958</left_val>
-            <right_val>0.5344808101654053</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 11 20 6 -1.</_>
-                <_>0 14 20 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1342066973447800</threshold>
-            <left_val>0.1463858932256699</left_val>
-            <right_val>0.5392568111419678</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 13 4 6 -1.</_>
-                <_>4 13 2 3 2.</_>
-                <_>6 16 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.5224548345431685e-004</threshold>
-            <left_val>0.3746953904628754</left_val>
-            <right_val>0.5692734718322754</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 0 8 12 -1.</_>
-                <_>10 0 4 6 2.</_>
-                <_>6 6 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0405455417931080</threshold>
-            <left_val>0.2754747867584229</left_val>
-            <right_val>0.5484297871589661</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 0 15 2 -1.</_>
-                <_>2 1 15 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2572970008477569e-003</threshold>
-            <left_val>0.3744584023952484</left_val>
-            <right_val>0.5756075978279114</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 2 3 -1.</_>
-                <_>9 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.4249948374927044e-003</threshold>
-            <left_val>0.7513859272003174</left_val>
-            <right_val>0.4728231132030487</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 12 1 2 -1.</_>
-                <_>3 13 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0908129196614027e-004</threshold>
-            <left_val>0.5404896736145020</left_val>
-            <right_val>0.2932321131229401</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 11 2 3 -1.</_>
-                <_>9 12 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2808450264856219e-003</threshold>
-            <left_val>0.6169779896736145</left_val>
-            <right_val>0.4273349046707153</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 3 3 1 -1.</_>
-                <_>8 3 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8348860321566463e-003</threshold>
-            <left_val>0.2048496007919312</left_val>
-            <right_val>0.5206472277641296</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 7 3 6 -1.</_>
-                <_>17 9 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0274848695844412</threshold>
-            <left_val>0.5252984762191773</left_val>
-            <right_val>0.1675522029399872</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 2 3 2 -1.</_>
-                <_>8 2 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2372419480234385e-003</threshold>
-            <left_val>0.5267782807350159</left_val>
-            <right_val>0.2777658104896545</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 4 5 3 -1.</_>
-                <_>11 5 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.8635291904211044e-003</threshold>
-            <left_val>0.6954557895660400</left_val>
-            <right_val>0.4812048971652985</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 4 5 3 -1.</_>
-                <_>4 5 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.1753971017897129e-003</threshold>
-            <left_val>0.4291887879371643</left_val>
-            <right_val>0.6349195837974548</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>19 3 1 2 -1.</_>
-                <_>19 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7098189564421773e-003</threshold>
-            <left_val>0.2930536866188049</left_val>
-            <right_val>0.5361248850822449</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 4 3 -1.</_>
-                <_>5 6 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5328548662364483e-003</threshold>
-            <left_val>0.4495325088500977</left_val>
-            <right_val>0.7409694194793701</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 7 3 6 -1.</_>
-                <_>17 9 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.5372907817363739e-003</threshold>
-            <left_val>0.3149119913578033</left_val>
-            <right_val>0.5416501760482788</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 7 3 6 -1.</_>
-                <_>0 9 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0253109894692898</threshold>
-            <left_val>0.5121892094612122</left_val>
-            <right_val>0.1311707943677902</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 2 6 9 -1.</_>
-                <_>14 5 6 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0364609695971012</threshold>
-            <left_val>0.5175911784172058</left_val>
-            <right_val>0.2591339945793152</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 4 5 6 -1.</_>
-                <_>0 6 5 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0208543296903372</threshold>
-            <left_val>0.5137140154838562</left_val>
-            <right_val>0.1582316011190414</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 5 6 2 -1.</_>
-                <_>12 5 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.7207747856155038e-004</threshold>
-            <left_val>0.5574309825897217</left_val>
-            <right_val>0.4398978948593140</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 5 6 2 -1.</_>
-                <_>6 5 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5227000403683633e-005</threshold>
-            <left_val>0.5548940896987915</left_val>
-            <right_val>0.3708069920539856</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 1 4 6 -1.</_>
-                <_>8 3 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.4316509310156107e-004</threshold>
-            <left_val>0.3387419879436493</left_val>
-            <right_val>0.5554211139678955</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 3 6 -1.</_>
-                <_>0 4 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.6037859972566366e-003</threshold>
-            <left_val>0.5358061790466309</left_val>
-            <right_val>0.3411171138286591</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 8 3 -1.</_>
-                <_>6 7 8 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.8057891912758350e-003</threshold>
-            <left_val>0.6125202775001526</left_val>
-            <right_val>0.4345862865447998</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 1 5 9 -1.</_>
-                <_>0 4 5 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0470216609537601</threshold>
-            <left_val>0.2358165979385376</left_val>
-            <right_val>0.5193738937377930</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 0 4 15 -1.</_>
-                <_>16 0 2 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0369541086256504</threshold>
-            <left_val>0.7323111295700073</left_val>
-            <right_val>0.4760943949222565</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 10 3 2 -1.</_>
-                <_>1 11 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0439479956403375e-003</threshold>
-            <left_val>0.5419455170631409</left_val>
-            <right_val>0.3411330878734589</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 4 1 10 -1.</_>
-                <_>14 9 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1050689974799752e-004</threshold>
-            <left_val>0.2821694016456604</left_val>
-            <right_val>0.5554947257041931</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 1 4 12 -1.</_>
-                <_>2 1 2 12 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0808315873146057</threshold>
-            <left_val>0.9129930138587952</left_val>
-            <right_val>0.4697434902191162</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 11 4 2 -1.</_>
-                <_>11 11 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.6579059087671340e-004</threshold>
-            <left_val>0.6022670269012451</left_val>
-            <right_val>0.3978292942047119</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 11 4 2 -1.</_>
-                <_>7 11 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2545920617412776e-004</threshold>
-            <left_val>0.5613213181495667</left_val>
-            <right_val>0.3845539987087250</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 8 15 5 -1.</_>
-                <_>8 8 5 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0687864869832993</threshold>
-            <left_val>0.2261611968278885</left_val>
-            <right_val>0.5300496816635132</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 6 10 -1.</_>
-                <_>3 0 3 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0124157899990678</threshold>
-            <left_val>0.4075691998004913</left_val>
-            <right_val>0.5828812122344971</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 4 3 2 -1.</_>
-                <_>12 4 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.7174817882478237e-003</threshold>
-            <left_val>0.2827253937721252</left_val>
-            <right_val>0.5267757773399353</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 3 8 -1.</_>
-                <_>8 16 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0381368584930897</threshold>
-            <left_val>0.5074741244316101</left_val>
-            <right_val>0.1023615971207619</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 5 3 -1.</_>
-                <_>8 15 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.8168049175292253e-003</threshold>
-            <left_val>0.6169006824493408</left_val>
-            <right_val>0.4359692931175232</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 14 4 3 -1.</_>
-                <_>7 15 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.1303603947162628e-003</threshold>
-            <left_val>0.4524433016777039</left_val>
-            <right_val>0.7606095075607300</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 4 3 2 -1.</_>
-                <_>12 4 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.0056019574403763e-003</threshold>
-            <left_val>0.5240408778190613</left_val>
-            <right_val>0.1859712004661560</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 15 14 4 -1.</_>
-                <_>3 15 7 2 2.</_>
-                <_>10 17 7 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0191393196582794</threshold>
-            <left_val>0.5209379196166992</left_val>
-            <right_val>0.2332071959972382</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 2 16 4 -1.</_>
-                <_>10 2 8 2 2.</_>
-                <_>2 4 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0164457596838474</threshold>
-            <left_val>0.5450702905654907</left_val>
-            <right_val>0.3264234960079193</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 8 6 12 -1.</_>
-                <_>3 8 3 12 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0373568907380104</threshold>
-            <left_val>0.6999046802520752</left_val>
-            <right_val>0.4533241987228394</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 10 2 -1.</_>
-                <_>5 7 5 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0197279006242752</threshold>
-            <left_val>0.2653664946556091</left_val>
-            <right_val>0.5412809848785400</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 2 5 -1.</_>
-                <_>10 7 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.6972579807043076e-003</threshold>
-            <left_val>0.4480566084384918</left_val>
-            <right_val>0.7138652205467224</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 7 6 4 -1.</_>
-                <_>16 7 3 2 2.</_>
-                <_>13 9 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.4457528535276651e-004</threshold>
-            <left_val>0.4231350123882294</left_val>
-            <right_val>0.5471320152282715</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 13 8 2 -1.</_>
-                <_>0 14 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1790640419349074e-003</threshold>
-            <left_val>0.5341702103614807</left_val>
-            <right_val>0.3130455017089844</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 7 6 4 -1.</_>
-                <_>16 7 3 2 2.</_>
-                <_>13 9 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0349806100130081</threshold>
-            <left_val>0.5118659734725952</left_val>
-            <right_val>0.3430530130863190</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 7 6 4 -1.</_>
-                <_>1 7 3 2 2.</_>
-                <_>4 9 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.6859792675822973e-004</threshold>
-            <left_val>0.3532187044620514</left_val>
-            <right_val>0.5468639731407166</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 6 1 12 -1.</_>
-                <_>12 12 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0113406497985125</threshold>
-            <left_val>0.2842353880405426</left_val>
-            <right_val>0.5348700881004334</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 2 6 -1.</_>
-                <_>10 5 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.6228108480572701e-003</threshold>
-            <left_val>0.6883640289306641</left_val>
-            <right_val>0.4492664933204651</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 12 2 3 -1.</_>
-                <_>14 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.0160330981016159e-003</threshold>
-            <left_val>0.1709893941879273</left_val>
-            <right_val>0.5224308967590332</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 12 2 3 -1.</_>
-                <_>4 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4206819469109178e-003</threshold>
-            <left_val>0.5290846228599548</left_val>
-            <right_val>0.2993383109569550</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 4 3 -1.</_>
-                <_>8 13 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.7801711112260818e-003</threshold>
-            <left_val>0.6498854160308838</left_val>
-            <right_val>0.4460499882698059</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 2 2 4 -1.</_>
-                <_>5 2 1 2 2.</_>
-                <_>6 4 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4747589593753219e-003</threshold>
-            <left_val>0.3260438144207001</left_val>
-            <right_val>0.5388113260269165</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 11 3 -1.</_>
-                <_>5 6 11 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0238303393125534</threshold>
-            <left_val>0.7528941035270691</left_val>
-            <right_val>0.4801219999790192</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 6 4 12 -1.</_>
-                <_>7 12 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.9369790144264698e-003</threshold>
-            <left_val>0.5335165858268738</left_val>
-            <right_val>0.3261427879333496</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 13 8 5 -1.</_>
-                <_>12 13 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.2806255668401718e-003</threshold>
-            <left_val>0.4580394029617310</left_val>
-            <right_val>0.5737829804420471</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 6 1 12 -1.</_>
-                <_>7 12 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0104395002126694</threshold>
-            <left_val>0.2592320144176483</left_val>
-            <right_val>0.5233827829360962</right_val></_></_></trees>
-      <stage_threshold>34.5541114807128910</stage_threshold>
-      <parent>8</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 10 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 2 6 3 -1.</_>
-                <_>4 2 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.2006587870419025e-003</threshold>
-            <left_val>0.3258886039257050</left_val>
-            <right_val>0.6849808096885681</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 6 10 -1.</_>
-                <_>12 5 3 5 2.</_>
-                <_>9 10 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.8593589086085558e-003</threshold>
-            <left_val>0.5838881134986877</left_val>
-            <right_val>0.2537829875946045</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 8 12 -1.</_>
-                <_>5 5 4 6 2.</_>
-                <_>9 11 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.8580528022721410e-004</threshold>
-            <left_val>0.5708081722259522</left_val>
-            <right_val>0.2812424004077911</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 7 20 6 -1.</_>
-                <_>0 9 20 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.9580191522836685e-003</threshold>
-            <left_val>0.2501051127910614</left_val>
-            <right_val>0.5544260740280151</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 2 2 2 -1.</_>
-                <_>4 3 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2124150525778532e-003</threshold>
-            <left_val>0.2385368049144745</left_val>
-            <right_val>0.5433350205421448</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 18 12 2 -1.</_>
-                <_>8 18 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.9426132142543793e-003</threshold>
-            <left_val>0.3955070972442627</left_val>
-            <right_val>0.6220757961273193</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 4 4 16 -1.</_>
-                <_>7 12 4 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4630590341985226e-003</threshold>
-            <left_val>0.5639708042144775</left_val>
-            <right_val>0.2992357909679413</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 6 7 8 -1.</_>
-                <_>7 10 7 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.0396599583327770e-003</threshold>
-            <left_val>0.2186512947082520</left_val>
-            <right_val>0.5411676764488220</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 3 3 1 -1.</_>
-                <_>7 3 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2988339876756072e-003</threshold>
-            <left_val>0.2350706011056900</left_val>
-            <right_val>0.5364584922790527</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 15 2 4 -1.</_>
-                <_>11 17 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2299369447864592e-004</threshold>
-            <left_val>0.3804112970829010</left_val>
-            <right_val>0.5729606151580811</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 5 4 8 -1.</_>
-                <_>3 9 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4654280385002494e-003</threshold>
-            <left_val>0.2510167956352234</left_val>
-            <right_val>0.5258268713951111</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 1 6 12 -1.</_>
-                <_>7 7 6 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.1210042117163539e-004</threshold>
-            <left_val>0.5992823839187622</left_val>
-            <right_val>0.3851158916950226</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 6 6 2 -1.</_>
-                <_>6 6 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.3836020370945334e-003</threshold>
-            <left_val>0.5681396126747131</left_val>
-            <right_val>0.3636586964130402</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 4 4 6 -1.</_>
-                <_>16 6 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0279364492744207</threshold>
-            <left_val>0.1491317003965378</left_val>
-            <right_val>0.5377560257911682</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 3 5 2 -1.</_>
-                <_>3 4 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.6919551095925272e-004</threshold>
-            <left_val>0.3692429959774017</left_val>
-            <right_val>0.5572484731674194</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 11 2 3 -1.</_>
-                <_>9 12 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.9829659983515739e-003</threshold>
-            <left_val>0.6758509278297424</left_val>
-            <right_val>0.4532504081726074</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 16 4 2 -1.</_>
-                <_>2 17 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.8815309740602970e-003</threshold>
-            <left_val>0.5368022918701172</left_val>
-            <right_val>0.2932539880275726</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 13 6 6 -1.</_>
-                <_>10 13 3 3 2.</_>
-                <_>7 16 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0190675500780344</threshold>
-            <left_val>0.1649377048015595</left_val>
-            <right_val>0.5330067276954651</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 0 3 4 -1.</_>
-                <_>8 0 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.6906559728085995e-003</threshold>
-            <left_val>0.1963925957679749</left_val>
-            <right_val>0.5119361877441406</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 15 4 3 -1.</_>
-                <_>8 16 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9777139686048031e-003</threshold>
-            <left_val>0.4671171903610230</left_val>
-            <right_val>0.7008398175239563</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 4 4 6 -1.</_>
-                <_>0 6 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0333031304180622</threshold>
-            <left_val>0.1155416965484619</left_val>
-            <right_val>0.5104162096977234</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 12 3 -1.</_>
-                <_>9 6 4 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0907441079616547</threshold>
-            <left_val>0.5149660110473633</left_val>
-            <right_val>0.1306173056364059</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 6 6 14 -1.</_>
-                <_>9 6 2 14 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.3555898638442159e-004</threshold>
-            <left_val>0.3605481088161469</left_val>
-            <right_val>0.5439859032630920</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 3 3 -1.</_>
-                <_>10 7 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0149016501381993</threshold>
-            <left_val>0.4886212050914764</left_val>
-            <right_val>0.7687569856643677</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 12 2 4 -1.</_>
-                <_>6 14 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.1594118596985936e-004</threshold>
-            <left_val>0.5356813073158264</left_val>
-            <right_val>0.3240939080715179</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 12 7 6 -1.</_>
-                <_>10 14 7 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0506709888577461</threshold>
-            <left_val>0.1848621964454651</left_val>
-            <right_val>0.5230404138565064</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 0 15 2 -1.</_>
-                <_>1 1 15 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.8665749859064817e-004</threshold>
-            <left_val>0.3840579986572266</left_val>
-            <right_val>0.5517945885658264</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 0 6 6 -1.</_>
-                <_>14 0 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.3712432533502579e-003</threshold>
-            <left_val>0.4288564026355743</left_val>
-            <right_val>0.6131753921508789</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 3 3 1 -1.</_>
-                <_>6 3 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2953069526702166e-003</threshold>
-            <left_val>0.2913674116134644</left_val>
-            <right_val>0.5280737876892090</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 0 6 6 -1.</_>
-                <_>14 0 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0419416800141335</threshold>
-            <left_val>0.7554799914360046</left_val>
-            <right_val>0.4856030941009522</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 3 20 10 -1.</_>
-                <_>0 8 20 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0235293805599213</threshold>
-            <left_val>0.2838279902935028</left_val>
-            <right_val>0.5256081223487854</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 0 6 6 -1.</_>
-                <_>14 0 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0408574491739273</threshold>
-            <left_val>0.4870935082435608</left_val>
-            <right_val>0.6277297139167786</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 6 6 -1.</_>
-                <_>3 0 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0254068691283464</threshold>
-            <left_val>0.7099707722663879</left_val>
-            <right_val>0.4575029015541077</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>19 15 1 2 -1.</_>
-                <_>19 16 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.1415440500713885e-004</threshold>
-            <left_val>0.4030886888504028</left_val>
-            <right_val>0.5469412207603455</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 4 8 -1.</_>
-                <_>2 2 2 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0218241196125746</threshold>
-            <left_val>0.4502024054527283</left_val>
-            <right_val>0.6768701076507568</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 1 18 4 -1.</_>
-                <_>11 1 9 2 2.</_>
-                <_>2 3 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0141140399500728</threshold>
-            <left_val>0.5442860722541809</left_val>
-            <right_val>0.3791700005531311</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 1 2 -1.</_>
-                <_>8 13 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.7214590671937913e-005</threshold>
-            <left_val>0.4200463891029358</left_val>
-            <right_val>0.5873476266860962</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 2 10 6 -1.</_>
-                <_>10 2 5 3 2.</_>
-                <_>5 5 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.9417638480663300e-003</threshold>
-            <left_val>0.3792561888694763</left_val>
-            <right_val>0.5585265755653381</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 2 4 -1.</_>
-                <_>10 7 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.2144409641623497e-003</threshold>
-            <left_val>0.7253103852272034</left_val>
-            <right_val>0.4603548943996429</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 3 3 -1.</_>
-                <_>10 7 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5817339774221182e-003</threshold>
-            <left_val>0.4693301916122437</left_val>
-            <right_val>0.5900238752365112</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 5 12 8 -1.</_>
-                <_>8 5 4 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1340931951999664</threshold>
-            <left_val>0.5149213075637817</left_val>
-            <right_val>0.1808844953775406</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 15 4 3 -1.</_>
-                <_>15 16 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2962710354477167e-003</threshold>
-            <left_val>0.5399743914604187</left_val>
-            <right_val>0.3717867136001587</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 18 3 1 -1.</_>
-                <_>9 18 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1575849968940020e-003</threshold>
-            <left_val>0.2408495992422104</left_val>
-            <right_val>0.5148863792419434</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 13 4 3 -1.</_>
-                <_>9 14 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.9196188338100910e-003</threshold>
-            <left_val>0.6573588252067566</left_val>
-            <right_val>0.4738740026950836</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 13 4 3 -1.</_>
-                <_>7 14 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6267469618469477e-003</threshold>
-            <left_val>0.4192821979522705</left_val>
-            <right_val>0.6303114295005798</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>19 15 1 2 -1.</_>
-                <_>19 16 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3413388882763684e-004</threshold>
-            <left_val>0.5540298223495483</left_val>
-            <right_val>0.3702101111412048</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 15 8 4 -1.</_>
-                <_>0 17 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0266980808228254</threshold>
-            <left_val>0.1710917949676514</left_val>
-            <right_val>0.5101410746574402</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 3 6 4 -1.</_>
-                <_>11 3 2 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0305618792772293</threshold>
-            <left_val>0.1904218047857285</left_val>
-            <right_val>0.5168793797492981</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 4 3 -1.</_>
-                <_>8 15 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.8511548880487680e-003</threshold>
-            <left_val>0.4447506964206696</left_val>
-            <right_val>0.6313853859901428</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 14 14 6 -1.</_>
-                <_>3 16 14 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0362114794552326</threshold>
-            <left_val>0.2490727007389069</left_val>
-            <right_val>0.5377349257469177</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 3 6 6 -1.</_>
-                <_>6 6 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4115189444273710e-003</threshold>
-            <left_val>0.5381243228912354</left_val>
-            <right_val>0.3664236962795258</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 11 10 6 -1.</_>
-                <_>5 14 10 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.7253201743587852e-004</threshold>
-            <left_val>0.5530232191085815</left_val>
-            <right_val>0.3541550040245056</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 10 3 4 -1.</_>
-                <_>4 10 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9481729143299162e-004</threshold>
-            <left_val>0.4132699072360992</left_val>
-            <right_val>0.5667243003845215</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 9 2 2 -1.</_>
-                <_>13 9 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.2334560789167881e-003</threshold>
-            <left_val>0.0987872332334518</left_val>
-            <right_val>0.5198668837547302</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 3 6 4 -1.</_>
-                <_>7 3 2 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0262747295200825</threshold>
-            <left_val>0.0911274924874306</left_val>
-            <right_val>0.5028107166290283</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 3 3 -1.</_>
-                <_>10 7 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.3212260827422142e-003</threshold>
-            <left_val>0.4726648926734924</left_val>
-            <right_val>0.6222720742225647</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 12 2 3 -1.</_>
-                <_>2 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.1129058226943016e-003</threshold>
-            <left_val>0.2157457023859024</left_val>
-            <right_val>0.5137804746627808</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 8 3 12 -1.</_>
-                <_>9 12 3 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2457809429615736e-003</threshold>
-            <left_val>0.5410770773887634</left_val>
-            <right_val>0.3721776902675629</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 14 4 6 -1.</_>
-                <_>3 14 2 3 2.</_>
-                <_>5 17 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0163597092032433</threshold>
-            <left_val>0.7787874937057495</left_val>
-            <right_val>0.4685291945934296</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 15 2 2 -1.</_>
-                <_>16 16 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2166109303943813e-004</threshold>
-            <left_val>0.5478987097740173</left_val>
-            <right_val>0.4240373969078064</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 15 2 2 -1.</_>
-                <_>2 16 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.4452440710738301e-004</threshold>
-            <left_val>0.5330560803413391</left_val>
-            <right_val>0.3501324951648712</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 4 3 -1.</_>
-                <_>8 13 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.8909732401371002e-003</threshold>
-            <left_val>0.6923521161079407</left_val>
-            <right_val>0.4726569056510925</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 7 20 1 -1.</_>
-                <_>10 7 10 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0483362115919590</threshold>
-            <left_val>0.5055900216102600</left_val>
-            <right_val>0.0757492035627365</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 6 8 3 -1.</_>
-                <_>7 6 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.5178127735853195e-004</threshold>
-            <left_val>0.3783741891384125</left_val>
-            <right_val>0.5538573861122131</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 8 2 -1.</_>
-                <_>9 7 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4953910615295172e-003</threshold>
-            <left_val>0.3081651031970978</left_val>
-            <right_val>0.5359612107276917</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 3 5 -1.</_>
-                <_>10 7 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2385010961443186e-003</threshold>
-            <left_val>0.6633958816528320</left_val>
-            <right_val>0.4649342894554138</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 5 -1.</_>
-                <_>9 7 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7988430336117744e-003</threshold>
-            <left_val>0.6596844792366028</left_val>
-            <right_val>0.4347187876701355</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 1 3 5 -1.</_>
-                <_>12 1 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.7860915809869766e-003</threshold>
-            <left_val>0.5231832861900330</left_val>
-            <right_val>0.2315579950809479</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 2 3 6 -1.</_>
-                <_>7 2 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.6715380847454071e-003</threshold>
-            <left_val>0.5204250216484070</left_val>
-            <right_val>0.2977376878261566</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 14 6 5 -1.</_>
-                <_>14 14 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0353364497423172</threshold>
-            <left_val>0.7238878011703491</left_val>
-            <right_val>0.4861505031585693</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 8 2 2 -1.</_>
-                <_>9 9 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.9189240457490087e-004</threshold>
-            <left_val>0.3105022013187408</left_val>
-            <right_val>0.5229824781417847</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 7 1 3 -1.</_>
-                <_>10 8 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.3946109469980001e-003</threshold>
-            <left_val>0.3138968050479889</left_val>
-            <right_val>0.5210173726081848</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 2 2 -1.</_>
-                <_>6 6 1 1 2.</_>
-                <_>7 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.8569283727556467e-004</threshold>
-            <left_val>0.4536580145359039</left_val>
-            <right_val>0.6585097908973694</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 11 18 4 -1.</_>
-                <_>11 11 9 2 2.</_>
-                <_>2 13 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0501631014049053</threshold>
-            <left_val>0.1804454028606415</left_val>
-            <right_val>0.5198916792869568</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 2 2 -1.</_>
-                <_>6 6 1 1 2.</_>
-                <_>7 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2367259953171015e-003</threshold>
-            <left_val>0.7255702018737793</left_val>
-            <right_val>0.4651359021663666</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 15 20 2 -1.</_>
-                <_>0 16 20 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.4326287722215056e-004</threshold>
-            <left_val>0.4412921071052551</left_val>
-            <right_val>0.5898545980453491</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 14 2 3 -1.</_>
-                <_>4 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.3485182151198387e-004</threshold>
-            <left_val>0.3500052988529205</left_val>
-            <right_val>0.5366017818450928</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 4 3 -1.</_>
-                <_>8 15 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0174979399889708</threshold>
-            <left_val>0.4912194907665253</left_val>
-            <right_val>0.8315284848213196</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 2 3 -1.</_>
-                <_>8 8 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5200000489130616e-003</threshold>
-            <left_val>0.3570275902748108</left_val>
-            <right_val>0.5370560288429260</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 10 2 3 -1.</_>
-                <_>9 11 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.8003940870985389e-004</threshold>
-            <left_val>0.4353772103786469</left_val>
-            <right_val>0.5967335104942322</right_val></_></_></trees>
-      <stage_threshold>39.1072883605957030</stage_threshold>
-      <parent>9</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 11 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 10 4 -1.</_>
-                <_>5 6 10 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.9945552647113800e-003</threshold>
-            <left_val>0.6162583231925964</left_val>
-            <right_val>0.3054533004760742</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 6 4 -1.</_>
-                <_>12 7 3 2 2.</_>
-                <_>9 9 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1085229925811291e-003</threshold>
-            <left_val>0.5818294882774353</left_val>
-            <right_val>0.3155578076839447</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 7 3 6 -1.</_>
-                <_>4 9 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0364380432292819e-003</threshold>
-            <left_val>0.2552052140235901</left_val>
-            <right_val>0.5692911744117737</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 15 4 4 -1.</_>
-                <_>13 15 2 2 2.</_>
-                <_>11 17 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.8211311008781195e-004</threshold>
-            <left_val>0.3685089945793152</left_val>
-            <right_val>0.5934931039810181</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 8 4 2 -1.</_>
-                <_>7 9 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.8057340104132891e-004</threshold>
-            <left_val>0.2332392036914825</left_val>
-            <right_val>0.5474792122840881</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 1 4 3 -1.</_>
-                <_>13 1 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6068789884448051e-004</threshold>
-            <left_val>0.3257457017898560</left_val>
-            <right_val>0.5667545795440674</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 15 4 4 -1.</_>
-                <_>5 15 2 2 2.</_>
-                <_>7 17 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1607372006401420e-004</threshold>
-            <left_val>0.3744716942310333</left_val>
-            <right_val>0.5845472812652588</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 4 7 -1.</_>
-                <_>9 5 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.5007521556690335e-004</threshold>
-            <left_val>0.3420371115207672</left_val>
-            <right_val>0.5522807240486145</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 8 3 -1.</_>
-                <_>9 6 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8607829697430134e-003</threshold>
-            <left_val>0.2804419994354248</left_val>
-            <right_val>0.5375424027442932</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 9 2 2 -1.</_>
-                <_>9 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5033970121294260e-003</threshold>
-            <left_val>0.2579050958156586</left_val>
-            <right_val>0.5498952269554138</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 15 5 3 -1.</_>
-                <_>7 16 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3478909861296415e-003</threshold>
-            <left_val>0.4175156056880951</left_val>
-            <right_val>0.6313710808753967</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 10 4 3 -1.</_>
-                <_>11 10 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.8880240279249847e-004</threshold>
-            <left_val>0.5865169763565064</left_val>
-            <right_val>0.4052666127681732</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 9 8 10 -1.</_>
-                <_>6 14 8 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.9405477046966553e-003</threshold>
-            <left_val>0.5211141109466553</left_val>
-            <right_val>0.2318654060363770</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 11 6 2 -1.</_>
-                <_>10 11 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0193277392536402</threshold>
-            <left_val>0.2753432989120483</left_val>
-            <right_val>0.5241525769233704</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 11 6 2 -1.</_>
-                <_>7 11 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.0202060113660991e-004</threshold>
-            <left_val>0.5722978711128235</left_val>
-            <right_val>0.3677195906639099</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 3 8 1 -1.</_>
-                <_>11 3 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1179069299250841e-003</threshold>
-            <left_val>0.4466108083724976</left_val>
-            <right_val>0.5542430877685547</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 3 3 2 -1.</_>
-                <_>7 3 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7743760254234076e-003</threshold>
-            <left_val>0.2813253104686737</left_val>
-            <right_val>0.5300959944725037</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 5 6 5 -1.</_>
-                <_>14 5 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.2234458960592747e-003</threshold>
-            <left_val>0.4399709999561310</left_val>
-            <right_val>0.5795428156852722</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 5 2 12 -1.</_>
-                <_>7 11 2 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0143752200528979</threshold>
-            <left_val>0.2981117963790894</left_val>
-            <right_val>0.5292059183120728</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 11 4 3 -1.</_>
-                <_>8 12 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0153491804376245</threshold>
-            <left_val>0.7705215215682983</left_val>
-            <right_val>0.4748171865940094</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 1 2 3 -1.</_>
-                <_>5 1 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5152279956964776e-005</threshold>
-            <left_val>0.3718844056129456</left_val>
-            <right_val>0.5576897263526917</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 3 2 6 -1.</_>
-                <_>18 5 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.1293919831514359e-003</threshold>
-            <left_val>0.3615196049213409</left_val>
-            <right_val>0.5286766886711121</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 3 2 6 -1.</_>
-                <_>0 5 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2512159775942564e-003</threshold>
-            <left_val>0.5364704728126526</left_val>
-            <right_val>0.3486298024654388</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 2 3 -1.</_>
-                <_>9 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.9696918576955795e-003</threshold>
-            <left_val>0.6927651762962341</left_val>
-            <right_val>0.4676836133003235</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 13 4 3 -1.</_>
-                <_>7 14 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0128290103748441</threshold>
-            <left_val>0.7712153792381287</left_val>
-            <right_val>0.4660735130310059</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 0 2 6 -1.</_>
-                <_>18 2 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.3660065904259682e-003</threshold>
-            <left_val>0.3374983966350555</left_val>
-            <right_val>0.5351287722587585</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 2 6 -1.</_>
-                <_>0 2 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2452319283038378e-003</threshold>
-            <left_val>0.5325189828872681</left_val>
-            <right_val>0.3289610147476196</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 6 3 -1.</_>
-                <_>8 15 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0117235602810979</threshold>
-            <left_val>0.6837652921676636</left_val>
-            <right_val>0.4754300117492676</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 4 2 4 -1.</_>
-                <_>8 4 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9257940695970319e-005</threshold>
-            <left_val>0.3572087883949280</left_val>
-            <right_val>0.5360502004623413</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 5 4 6 -1.</_>
-                <_>8 7 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2244219508138485e-005</threshold>
-            <left_val>0.5541427135467529</left_val>
-            <right_val>0.3552064001560211</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 4 2 2 -1.</_>
-                <_>7 4 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0881509669125080e-003</threshold>
-            <left_val>0.5070844292640686</left_val>
-            <right_val>0.1256462037563324</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 14 14 4 -1.</_>
-                <_>10 14 7 2 2.</_>
-                <_>3 16 7 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0274296794086695</threshold>
-            <left_val>0.5269560217857361</left_val>
-            <right_val>0.1625818014144898</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 15 6 2 -1.</_>
-                <_>6 15 3 1 2.</_>
-                <_>9 16 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.4142867922782898e-003</threshold>
-            <left_val>0.7145588994026184</left_val>
-            <right_val>0.4584197103977203</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 15 6 2 -1.</_>
-                <_>14 16 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3479959238320589e-003</threshold>
-            <left_val>0.5398612022399902</left_val>
-            <right_val>0.3494696915149689</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 12 12 8 -1.</_>
-                <_>2 16 12 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0826354920864105</threshold>
-            <left_val>0.2439192980527878</left_val>
-            <right_val>0.5160226225852966</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 7 7 2 -1.</_>
-                <_>7 8 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0261740535497665e-003</threshold>
-            <left_val>0.3886891901493073</left_val>
-            <right_val>0.5767908096313477</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 18 2 -1.</_>
-                <_>0 3 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.6307090409100056e-003</threshold>
-            <left_val>0.3389458060264587</left_val>
-            <right_val>0.5347700715065002</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 6 2 5 -1.</_>
-                <_>9 6 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4546680506318808e-003</threshold>
-            <left_val>0.4601413905620575</left_val>
-            <right_val>0.6387246847152710</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 5 3 8 -1.</_>
-                <_>8 5 1 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.9476519972085953e-004</threshold>
-            <left_val>0.5769879221916199</left_val>
-            <right_val>0.4120396077632904</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 6 3 4 -1.</_>
-                <_>10 6 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0154091902077198</threshold>
-            <left_val>0.4878709018230438</left_val>
-            <right_val>0.7089822292327881</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 13 3 2 -1.</_>
-                <_>4 14 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1784400558099151e-003</threshold>
-            <left_val>0.5263553261756897</left_val>
-            <right_val>0.2895244956016541</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 4 6 3 -1.</_>
-                <_>11 4 2 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0277019198983908</threshold>
-            <left_val>0.1498828977346420</left_val>
-            <right_val>0.5219606757164002</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 6 3 -1.</_>
-                <_>7 4 2 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0295053999871016</threshold>
-            <left_val>0.0248933192342520</left_val>
-            <right_val>0.4999816119670868</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 11 5 2 -1.</_>
-                <_>14 12 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5159430010244250e-004</threshold>
-            <left_val>0.5464622974395752</left_val>
-            <right_val>0.4029662907123566</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 2 6 9 -1.</_>
-                <_>3 2 2 9 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.1772639639675617e-003</threshold>
-            <left_val>0.4271056950092316</left_val>
-            <right_val>0.5866296887397766</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 6 6 13 -1.</_>
-                <_>14 6 3 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0741820484399796</threshold>
-            <left_val>0.6874179244041443</left_val>
-            <right_val>0.4919027984142304</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 6 14 8 -1.</_>
-                <_>3 6 7 4 2.</_>
-                <_>10 10 7 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0172541607171297</threshold>
-            <left_val>0.3370676040649414</left_val>
-            <right_val>0.5348739027976990</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 0 4 11 -1.</_>
-                <_>16 0 2 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0148515598848462</threshold>
-            <left_val>0.4626792967319489</left_val>
-            <right_val>0.6129904985427856</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 4 12 12 -1.</_>
-                <_>3 4 6 6 2.</_>
-                <_>9 10 6 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0100020002573729</threshold>
-            <left_val>0.5346122980117798</left_val>
-            <right_val>0.3423453867435455</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 4 5 3 -1.</_>
-                <_>11 5 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0138120744377375e-003</threshold>
-            <left_val>0.4643830060958862</left_val>
-            <right_val>0.5824304223060608</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 11 4 2 -1.</_>
-                <_>4 12 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5135470312088728e-003</threshold>
-            <left_val>0.5196396112442017</left_val>
-            <right_val>0.2856149971485138</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 7 2 2 -1.</_>
-                <_>10 7 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1381431035697460e-003</threshold>
-            <left_val>0.4838162958621979</left_val>
-            <right_val>0.5958529710769653</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 2 2 -1.</_>
-                <_>9 7 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1450440660119057e-003</threshold>
-            <left_val>0.8920302987098694</left_val>
-            <right_val>0.4741412103176117</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 17 3 2 -1.</_>
-                <_>10 17 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.4736708514392376e-003</threshold>
-            <left_val>0.2033942937850952</left_val>
-            <right_val>0.5337278842926025</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 3 3 -1.</_>
-                <_>5 7 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9628470763564110e-003</threshold>
-            <left_val>0.4571633934974670</left_val>
-            <right_val>0.6725863218307495</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 0 3 3 -1.</_>
-                <_>11 0 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4260450415313244e-003</threshold>
-            <left_val>0.5271108150482178</left_val>
-            <right_val>0.2845670878887177</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 6 2 -1.</_>
-                <_>5 6 3 1 2.</_>
-                <_>8 7 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.9611460417509079e-004</threshold>
-            <left_val>0.4138312935829163</left_val>
-            <right_val>0.5718597769737244</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 16 4 3 -1.</_>
-                <_>12 17 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.3728788197040558e-003</threshold>
-            <left_val>0.5225151181221008</left_val>
-            <right_val>0.2804847061634064</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 12 3 2 -1.</_>
-                <_>3 13 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.0500897234305739e-004</threshold>
-            <left_val>0.5236768722534180</left_val>
-            <right_val>0.3314523994922638</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 3 2 -1.</_>
-                <_>9 13 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.6792551185935736e-004</threshold>
-            <left_val>0.4531059861183167</left_val>
-            <right_val>0.6276971101760864</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 11 16 4 -1.</_>
-                <_>1 11 8 2 2.</_>
-                <_>9 13 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0246443394571543</threshold>
-            <left_val>0.5130851864814758</left_val>
-            <right_val>0.2017143964767456</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 4 3 3 -1.</_>
-                <_>12 5 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0102904504165053</threshold>
-            <left_val>0.7786595225334168</left_val>
-            <right_val>0.4876641035079956</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 4 5 3 -1.</_>
-                <_>4 5 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0629419013857841e-003</threshold>
-            <left_val>0.4288598895072937</left_val>
-            <right_val>0.5881264209747315</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 16 4 3 -1.</_>
-                <_>12 17 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.0519481301307678e-003</threshold>
-            <left_val>0.3523977994918823</left_val>
-            <right_val>0.5286008715629578</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 3 3 -1.</_>
-                <_>5 5 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.7692620903253555e-003</threshold>
-            <left_val>0.6841086149215698</left_val>
-            <right_val>0.4588094055652618</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 0 2 2 -1.</_>
-                <_>9 1 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.5789941214025021e-004</threshold>
-            <left_val>0.3565520048141480</left_val>
-            <right_val>0.5485978126525879</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 9 4 2 -1.</_>
-                <_>8 10 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.5918837683275342e-004</threshold>
-            <left_val>0.3368793129920960</left_val>
-            <right_val>0.5254197120666504</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 8 4 3 -1.</_>
-                <_>8 9 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7737259622663260e-003</threshold>
-            <left_val>0.3422161042690277</left_val>
-            <right_val>0.5454015135765076</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 13 6 3 -1.</_>
-                <_>2 13 2 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.5610467940568924e-003</threshold>
-            <left_val>0.6533612012863159</left_val>
-            <right_val>0.4485856890678406</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 14 3 2 -1.</_>
-                <_>16 15 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7277270089834929e-003</threshold>
-            <left_val>0.5307580232620239</left_val>
-            <right_val>0.3925352990627289</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 18 18 2 -1.</_>
-                <_>7 18 6 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0281996093690395</threshold>
-            <left_val>0.6857458949089050</left_val>
-            <right_val>0.4588584005832672</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 14 3 2 -1.</_>
-                <_>16 15 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7781109781935811e-003</threshold>
-            <left_val>0.4037851095199585</left_val>
-            <right_val>0.5369856953620911</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 14 3 2 -1.</_>
-                <_>1 15 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3177141449414194e-004</threshold>
-            <left_val>0.5399798750877380</left_val>
-            <right_val>0.3705750107765198</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 14 6 3 -1.</_>
-                <_>7 15 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6385399978607893e-003</threshold>
-            <left_val>0.4665437042713165</left_val>
-            <right_val>0.6452730894088745</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 14 8 3 -1.</_>
-                <_>5 15 8 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1183069329708815e-003</threshold>
-            <left_val>0.5914781093597412</left_val>
-            <right_val>0.4064677059650421</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 6 4 14 -1.</_>
-                <_>10 6 2 14 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0147732896730304</threshold>
-            <left_val>0.3642038106918335</left_val>
-            <right_val>0.5294762849807739</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 4 14 -1.</_>
-                <_>8 6 2 14 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0168154407292604</threshold>
-            <left_val>0.2664231956005096</left_val>
-            <right_val>0.5144972801208496</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 5 2 3 -1.</_>
-                <_>13 6 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3370140269398689e-003</threshold>
-            <left_val>0.6779531240463257</left_val>
-            <right_val>0.4852097928524017</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 16 6 1 -1.</_>
-                <_>9 16 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.4560048991115764e-005</threshold>
-            <left_val>0.5613964796066284</left_val>
-            <right_val>0.4153054058551788</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 3 3 -1.</_>
-                <_>9 13 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0240620467811823e-003</threshold>
-            <left_val>0.5964478254318237</left_val>
-            <right_val>0.4566304087638855</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 0 3 3 -1.</_>
-                <_>8 0 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3161689750850201e-003</threshold>
-            <left_val>0.2976115047931671</left_val>
-            <right_val>0.5188159942626953</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 0 16 18 -1.</_>
-                <_>4 9 16 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.5321757197380066</threshold>
-            <left_val>0.5187839269638062</left_val>
-            <right_val>0.2202631980180740</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 1 16 14 -1.</_>
-                <_>1 8 16 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1664305031299591</threshold>
-            <left_val>0.1866022944450378</left_val>
-            <right_val>0.5060343146324158</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 9 15 4 -1.</_>
-                <_>8 9 5 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1125352978706360</threshold>
-            <left_val>0.5212125182151794</left_val>
-            <right_val>0.1185022965073586</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 12 7 3 -1.</_>
-                <_>6 13 7 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.3046864494681358e-003</threshold>
-            <left_val>0.4589937031269074</left_val>
-            <right_val>0.6826149225234985</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 15 2 3 -1.</_>
-                <_>14 16 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.6255099587142467e-003</threshold>
-            <left_val>0.3079940974712372</left_val>
-            <right_val>0.5225008726119995</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 3 16 14 -1.</_>
-                <_>2 3 8 7 2.</_>
-                <_>10 10 8 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1111646965146065</threshold>
-            <left_val>0.2101044058799744</left_val>
-            <right_val>0.5080801844596863</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 2 4 18 -1.</_>
-                <_>18 2 2 9 2.</_>
-                <_>16 11 2 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0108884396031499</threshold>
-            <left_val>0.5765355229377747</left_val>
-            <right_val>0.4790464043617249</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 15 2 3 -1.</_>
-                <_>4 16 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.8564301580190659e-003</threshold>
-            <left_val>0.5065100193023682</left_val>
-            <right_val>0.1563598960638046</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 2 4 18 -1.</_>
-                <_>18 2 2 9 2.</_>
-                <_>16 11 2 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0548543892800808</threshold>
-            <left_val>0.4966914951801300</left_val>
-            <right_val>0.7230510711669922</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 1 8 3 -1.</_>
-                <_>1 2 8 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0111973397433758</threshold>
-            <left_val>0.2194979041814804</left_val>
-            <right_val>0.5098798274993897</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 11 4 3 -1.</_>
-                <_>8 12 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.4069071300327778e-003</threshold>
-            <left_val>0.4778401851654053</left_val>
-            <right_val>0.6770902872085571</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 11 5 9 -1.</_>
-                <_>5 14 5 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0636652931571007</threshold>
-            <left_val>0.1936362981796265</left_val>
-            <right_val>0.5081024169921875</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 0 4 11 -1.</_>
-                <_>16 0 2 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.8081491887569427e-003</threshold>
-            <left_val>0.5999063253402710</left_val>
-            <right_val>0.4810341000556946</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 0 6 1 -1.</_>
-                <_>9 0 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1717099007219076e-003</threshold>
-            <left_val>0.3338333964347839</left_val>
-            <right_val>0.5235472917556763</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 3 3 7 -1.</_>
-                <_>17 3 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0133155202493072</threshold>
-            <left_val>0.6617069840431213</left_val>
-            <right_val>0.4919213056564331</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 3 3 7 -1.</_>
-                <_>2 3 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5442079640924931e-003</threshold>
-            <left_val>0.4488744139671326</left_val>
-            <right_val>0.6082184910774231</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 8 6 12 -1.</_>
-                <_>7 12 6 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0120378397405148</threshold>
-            <left_val>0.5409392118453980</left_val>
-            <right_val>0.3292432129383087</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 4 11 -1.</_>
-                <_>2 0 2 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0207010507583618</threshold>
-            <left_val>0.6819120049476624</left_val>
-            <right_val>0.4594995975494385</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 0 6 20 -1.</_>
-                <_>14 0 3 20 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0276082791388035</threshold>
-            <left_val>0.4630792140960693</left_val>
-            <right_val>0.5767282843589783</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 3 1 2 -1.</_>
-                <_>0 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2370620388537645e-003</threshold>
-            <left_val>0.5165379047393799</left_val>
-            <right_val>0.2635016143321991</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 10 8 -1.</_>
-                <_>10 5 5 4 2.</_>
-                <_>5 9 5 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0376693382859230</threshold>
-            <left_val>0.2536393105983734</left_val>
-            <right_val>0.5278980135917664</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 7 12 4 -1.</_>
-                <_>4 7 6 2 2.</_>
-                <_>10 9 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8057259730994701e-003</threshold>
-            <left_val>0.3985156118869782</left_val>
-            <right_val>0.5517500042915344</right_val></_></_></trees>
-      <stage_threshold>50.6104812622070310</stage_threshold>
-      <parent>10</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 12 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 1 6 4 -1.</_>
-                <_>5 1 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.4299028813838959e-003</threshold>
-            <left_val>0.2891018092632294</left_val>
-            <right_val>0.6335226297378540</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 6 4 -1.</_>
-                <_>12 7 3 2 2.</_>
-                <_>9 9 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3813319858163595e-003</threshold>
-            <left_val>0.6211789250373840</left_val>
-            <right_val>0.3477487862110138</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 2 6 -1.</_>
-                <_>5 9 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2915711160749197e-003</threshold>
-            <left_val>0.2254412025213242</left_val>
-            <right_val>0.5582118034362793</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 16 6 4 -1.</_>
-                <_>12 16 3 2 2.</_>
-                <_>9 18 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.9457940086722374e-004</threshold>
-            <left_val>0.3711710870265961</left_val>
-            <right_val>0.5930070877075195</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 4 2 12 -1.</_>
-                <_>9 10 2 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.7164667891338468e-004</threshold>
-            <left_val>0.5651720166206360</left_val>
-            <right_val>0.3347995877265930</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 1 6 18 -1.</_>
-                <_>9 1 2 18 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1386410333216190e-003</threshold>
-            <left_val>0.3069126009941101</left_val>
-            <right_val>0.5508630871772766</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 12 12 2 -1.</_>
-                <_>8 12 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.6403039626311511e-004</threshold>
-            <left_val>0.5762827992439270</left_val>
-            <right_val>0.3699047863483429</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 8 6 2 -1.</_>
-                <_>8 9 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9793529392918572e-005</threshold>
-            <left_val>0.2644244134426117</left_val>
-            <right_val>0.5437911152839661</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 0 3 6 -1.</_>
-                <_>9 0 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.5774902254343033e-003</threshold>
-            <left_val>0.5051138997077942</left_val>
-            <right_val>0.1795724928379059</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 18 3 2 -1.</_>
-                <_>11 19 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6032689493149519e-004</threshold>
-            <left_val>0.5826969146728516</left_val>
-            <right_val>0.4446826875209808</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 1 17 4 -1.</_>
-                <_>1 3 17 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.1404630541801453e-003</threshold>
-            <left_val>0.3113852143287659</left_val>
-            <right_val>0.5346971750259399</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 8 4 12 -1.</_>
-                <_>11 8 2 12 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0230869501829147</threshold>
-            <left_val>0.3277946114540100</left_val>
-            <right_val>0.5331197977066040</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 4 3 -1.</_>
-                <_>8 15 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0142436502501369</threshold>
-            <left_val>0.7381709814071655</left_val>
-            <right_val>0.4588063061237335</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 3 2 17 -1.</_>
-                <_>12 3 1 17 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0194871295243502</threshold>
-            <left_val>0.5256630778312683</left_val>
-            <right_val>0.2274471968412399</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 7 6 1 -1.</_>
-                <_>6 7 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.6681108698248863e-004</threshold>
-            <left_val>0.5511230826377869</left_val>
-            <right_val>0.3815006911754608</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 3 2 3 -1.</_>
-                <_>18 4 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1474709976464510e-003</threshold>
-            <left_val>0.5425636768341065</left_val>
-            <right_val>0.2543726861476898</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 4 3 4 -1.</_>
-                <_>8 6 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8026070029009134e-004</threshold>
-            <left_val>0.5380191802978516</left_val>
-            <right_val>0.3406304121017456</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 5 12 10 -1.</_>
-                <_>4 10 12 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.0266260989010334e-003</threshold>
-            <left_val>0.3035801947116852</left_val>
-            <right_val>0.5420572161674500</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 18 4 2 -1.</_>
-                <_>7 18 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.4462960795499384e-004</threshold>
-            <left_val>0.3990997076034546</left_val>
-            <right_val>0.5660110116004944</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 2 3 6 -1.</_>
-                <_>17 4 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2609760053455830e-003</threshold>
-            <left_val>0.5562806725502014</left_val>
-            <right_val>0.3940688073635101</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 7 6 6 -1.</_>
-                <_>9 7 2 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0511330589652061</threshold>
-            <left_val>0.4609653949737549</left_val>
-            <right_val>0.7118561863899231</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 2 3 6 -1.</_>
-                <_>17 4 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0177863091230392</threshold>
-            <left_val>0.2316166013479233</left_val>
-            <right_val>0.5322144031524658</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 0 3 4 -1.</_>
-                <_>9 0 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.9679628573358059e-003</threshold>
-            <left_val>0.2330771982669830</left_val>
-            <right_val>0.5122029185295105</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 14 2 3 -1.</_>
-                <_>9 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0667689386755228e-003</threshold>
-            <left_val>0.4657444059848785</left_val>
-            <right_val>0.6455488204956055</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 12 6 3 -1.</_>
-                <_>0 13 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.4413768015801907e-003</threshold>
-            <left_val>0.5154392123222351</left_val>
-            <right_val>0.2361633926630020</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 4 3 -1.</_>
-                <_>8 15 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.6277279723435640e-003</threshold>
-            <left_val>0.6219773292541504</left_val>
-            <right_val>0.4476661086082459</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 12 2 3 -1.</_>
-                <_>3 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3530759178102016e-003</threshold>
-            <left_val>0.1837355047464371</left_val>
-            <right_val>0.5102208256721497</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 12 7 -1.</_>
-                <_>9 6 4 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1453091949224472</threshold>
-            <left_val>0.5145987272262573</left_val>
-            <right_val>0.1535930931568146</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 3 6 -1.</_>
-                <_>0 4 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4394490756094456e-003</threshold>
-            <left_val>0.5343660116195679</left_val>
-            <right_val>0.3624661862850189</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 6 1 3 -1.</_>
-                <_>14 7 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.1283390708267689e-003</threshold>
-            <left_val>0.6215007901191711</left_val>
-            <right_val>0.4845592081546783</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 0 3 14 -1.</_>
-                <_>3 0 1 14 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7940260004252195e-003</threshold>
-            <left_val>0.4299261868000031</left_val>
-            <right_val>0.5824198126792908</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 14 5 6 -1.</_>
-                <_>12 16 5 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0362538211047649</threshold>
-            <left_val>0.5260334014892578</left_val>
-            <right_val>0.1439467966556549</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 14 5 6 -1.</_>
-                <_>4 16 5 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1746722310781479e-003</threshold>
-            <left_val>0.3506538867950440</left_val>
-            <right_val>0.5287045240402222</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 10 2 2 -1.</_>
-                <_>12 10 1 1 2.</_>
-                <_>11 11 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5383297624066472e-004</threshold>
-            <left_val>0.4809640944004059</left_val>
-            <right_val>0.6122040152549744</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 0 3 14 -1.</_>
-                <_>6 0 1 14 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0264802295714617</threshold>
-            <left_val>0.1139362007379532</left_val>
-            <right_val>0.5045586228370667</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 15 2 3 -1.</_>
-                <_>10 16 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.0440660193562508e-003</threshold>
-            <left_val>0.6352095007896423</left_val>
-            <right_val>0.4794734120368958</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 2 3 -1.</_>
-                <_>0 3 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.6993520334362984e-003</threshold>
-            <left_val>0.5131118297576904</left_val>
-            <right_val>0.2498510926961899</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 11 12 6 -1.</_>
-                <_>5 14 12 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.6762931267730892e-004</threshold>
-            <left_val>0.5421394705772400</left_val>
-            <right_val>0.3709532022476196</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 11 3 9 -1.</_>
-                <_>6 14 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0413822606205940</threshold>
-            <left_val>0.1894959956407547</left_val>
-            <right_val>0.5081691741943359</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 10 2 2 -1.</_>
-                <_>12 10 1 1 2.</_>
-                <_>11 11 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0532729793339968e-003</threshold>
-            <left_val>0.6454367041587830</left_val>
-            <right_val>0.4783608913421631</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 1 3 -1.</_>
-                <_>5 7 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1648600231856108e-003</threshold>
-            <left_val>0.6215031147003174</left_val>
-            <right_val>0.4499826133251190</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 9 13 3 -1.</_>
-                <_>4 10 13 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.6747748749330640e-004</threshold>
-            <left_val>0.3712610900402069</left_val>
-            <right_val>0.5419334769248962</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 7 15 6 -1.</_>
-                <_>6 7 5 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1737584024667740</threshold>
-            <left_val>0.5023643970489502</left_val>
-            <right_val>0.1215742006897926</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 5 12 6 -1.</_>
-                <_>8 5 4 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9049699660390615e-003</threshold>
-            <left_val>0.3240267932415009</left_val>
-            <right_val>0.5381883978843689</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 10 4 3 -1.</_>
-                <_>8 11 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2299539521336555e-003</threshold>
-            <left_val>0.4165507853031158</left_val>
-            <right_val>0.5703486204147339</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 14 1 3 -1.</_>
-                <_>15 15 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.4329237900674343e-004</threshold>
-            <left_val>0.3854042887687683</left_val>
-            <right_val>0.5547549128532410</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 11 5 3 -1.</_>
-                <_>1 12 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.3297258242964745e-003</threshold>
-            <left_val>0.2204494029283524</left_val>
-            <right_val>0.5097082853317261</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 1 7 12 -1.</_>
-                <_>7 7 7 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0417630255687982e-004</threshold>
-            <left_val>0.5607066154479981</left_val>
-            <right_val>0.4303036034107208</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 1 6 10 -1.</_>
-                <_>0 1 3 5 2.</_>
-                <_>3 6 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0312047004699707</threshold>
-            <left_val>0.4621657133102417</left_val>
-            <right_val>0.6982004046440125</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 1 4 3 -1.</_>
-                <_>16 2 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.8943502157926559e-003</threshold>
-            <left_val>0.5269594192504883</left_val>
-            <right_val>0.2269068062305450</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 2 3 -1.</_>
-                <_>5 6 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.3645310215651989e-003</threshold>
-            <left_val>0.6359223127365112</left_val>
-            <right_val>0.4537956118583679</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 2 3 5 -1.</_>
-                <_>13 2 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.6793059706687927e-003</threshold>
-            <left_val>0.5274767875671387</left_val>
-            <right_val>0.2740483880043030</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 3 4 6 -1.</_>
-                <_>0 5 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0254311393946409</threshold>
-            <left_val>0.2038519978523254</left_val>
-            <right_val>0.5071732997894287</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 4 2 -1.</_>
-                <_>8 13 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.2000601105391979e-004</threshold>
-            <left_val>0.4587455093860626</left_val>
-            <right_val>0.6119868159294128</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 18 3 1 -1.</_>
-                <_>9 18 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9284600168466568e-003</threshold>
-            <left_val>0.5071274042129517</left_val>
-            <right_val>0.2028204947710037</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 10 2 2 -1.</_>
-                <_>12 10 1 1 2.</_>
-                <_>11 11 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5256470912136137e-005</threshold>
-            <left_val>0.4812104105949402</left_val>
-            <right_val>0.5430821776390076</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 10 2 2 -1.</_>
-                <_>7 10 1 1 2.</_>
-                <_>8 11 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3158309739083052e-003</threshold>
-            <left_val>0.4625813961029053</left_val>
-            <right_val>0.6779323220252991</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 11 4 4 -1.</_>
-                <_>11 13 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5870389761403203e-003</threshold>
-            <left_val>0.5386291742324829</left_val>
-            <right_val>0.3431465029716492</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 3 8 -1.</_>
-                <_>9 12 1 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0215396601706743</threshold>
-            <left_val>0.0259425006806850</left_val>
-            <right_val>0.5003222823143005</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 0 6 3 -1.</_>
-                <_>13 1 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0143344802781940</threshold>
-            <left_val>0.5202844738960266</left_val>
-            <right_val>0.1590632945299149</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 8 3 4 -1.</_>
-                <_>9 8 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.3881383761763573e-003</threshold>
-            <left_val>0.7282481193542481</left_val>
-            <right_val>0.4648044109344482</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 10 10 -1.</_>
-                <_>10 7 5 5 2.</_>
-                <_>5 12 5 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.1906841844320297e-003</threshold>
-            <left_val>0.5562356710433960</left_val>
-            <right_val>0.3923191130161285</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 18 8 2 -1.</_>
-                <_>3 18 4 1 2.</_>
-                <_>7 19 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.8453059755265713e-003</threshold>
-            <left_val>0.6803392767906189</left_val>
-            <right_val>0.4629127979278565</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 2 6 8 -1.</_>
-                <_>12 2 2 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0547077991068363</threshold>
-            <left_val>0.2561671137809753</left_val>
-            <right_val>0.5206125974655151</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 2 6 8 -1.</_>
-                <_>6 2 2 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.1142775490880013e-003</threshold>
-            <left_val>0.5189620256423950</left_val>
-            <right_val>0.3053877055644989</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 0 3 7 -1.</_>
-                <_>12 0 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0155750000849366</threshold>
-            <left_val>0.1295074969530106</left_val>
-            <right_val>0.5169094800949097</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 11 2 1 -1.</_>
-                <_>8 11 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2050600344082341e-004</threshold>
-            <left_val>0.5735098123550415</left_val>
-            <right_val>0.4230825006961823</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 14 1 3 -1.</_>
-                <_>15 15 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2273970060050488e-003</threshold>
-            <left_val>0.5289878249168396</left_val>
-            <right_val>0.4079791903495789</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 15 2 2 -1.</_>
-                <_>7 15 1 1 2.</_>
-                <_>8 16 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2186600361019373e-003</threshold>
-            <left_val>0.6575639843940735</left_val>
-            <right_val>0.4574409127235413</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 14 1 3 -1.</_>
-                <_>15 15 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.3256649039685726e-003</threshold>
-            <left_val>0.3628047108650208</left_val>
-            <right_val>0.5195019841194153</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 0 3 7 -1.</_>
-                <_>7 0 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0132883097976446</threshold>
-            <left_val>0.1284265965223312</left_val>
-            <right_val>0.5043488740921021</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 1 2 7 -1.</_>
-                <_>18 1 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.3839771058410406e-003</threshold>
-            <left_val>0.6292240023612976</left_val>
-            <right_val>0.4757505953311920</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 0 8 20 -1.</_>
-                <_>2 10 8 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2195422053337097</threshold>
-            <left_val>0.1487731933593750</left_val>
-            <right_val>0.5065013766288757</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 0 15 6 -1.</_>
-                <_>3 2 15 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.9111708067357540e-003</threshold>
-            <left_val>0.4256102144718170</left_val>
-            <right_val>0.5665838718414307</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 3 12 2 -1.</_>
-                <_>4 4 12 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8744950648397207e-004</threshold>
-            <left_val>0.4004144072532654</left_val>
-            <right_val>0.5586857199668884</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 0 4 5 -1.</_>
-                <_>16 0 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2178641781210899e-003</threshold>
-            <left_val>0.6009116172790527</left_val>
-            <right_val>0.4812706112861633</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 0 3 4 -1.</_>
-                <_>8 0 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1111519997939467e-003</threshold>
-            <left_val>0.3514933884143829</left_val>
-            <right_val>0.5287089943885803</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 0 4 5 -1.</_>
-                <_>16 0 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.4036400504410267e-003</threshold>
-            <left_val>0.4642275869846344</left_val>
-            <right_val>0.5924085974693298</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 7 6 13 -1.</_>
-                <_>3 7 2 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1229949966073036</threshold>
-            <left_val>0.5025529265403748</left_val>
-            <right_val>0.0691524818539619</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 0 4 5 -1.</_>
-                <_>16 0 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0123135102912784</threshold>
-            <left_val>0.5884591937065125</left_val>
-            <right_val>0.4934012889862061</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 4 5 -1.</_>
-                <_>2 0 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.1471039876341820e-003</threshold>
-            <left_val>0.4372239112854004</left_val>
-            <right_val>0.5893477797508240</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 12 3 6 -1.</_>
-                <_>14 14 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.5502649843692780e-003</threshold>
-            <left_val>0.4327551126480103</left_val>
-            <right_val>0.5396270155906677</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 12 3 6 -1.</_>
-                <_>3 14 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0192242693156004</threshold>
-            <left_val>0.1913134008646011</left_val>
-            <right_val>0.5068330764770508</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 1 4 3 -1.</_>
-                <_>16 2 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4395059552043676e-003</threshold>
-            <left_val>0.5308178067207336</left_val>
-            <right_val>0.4243533015251160</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 2 10 -1.</_>
-                <_>8 7 1 5 2.</_>
-                <_>9 12 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.7751999013125896e-003</threshold>
-            <left_val>0.6365395784378052</left_val>
-            <right_val>0.4540086090564728</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 11 4 4 -1.</_>
-                <_>11 13 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.0119630545377731e-003</threshold>
-            <left_val>0.5189834237098694</left_val>
-            <right_val>0.3026199936866760</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 1 4 3 -1.</_>
-                <_>0 2 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4014651104807854e-003</threshold>
-            <left_val>0.5105062127113342</left_val>
-            <right_val>0.2557682991027832</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 4 1 3 -1.</_>
-                <_>13 5 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.0274988906458020e-004</threshold>
-            <left_val>0.4696914851665497</left_val>
-            <right_val>0.5861827731132507</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 15 3 5 -1.</_>
-                <_>8 15 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0114744501188397</threshold>
-            <left_val>0.5053645968437195</left_val>
-            <right_val>0.1527177989482880</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 3 5 -1.</_>
-                <_>10 7 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.7023430019617081e-003</threshold>
-            <left_val>0.6508980989456177</left_val>
-            <right_val>0.4890604019165039</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 5 -1.</_>
-                <_>9 7 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.0462959073483944e-003</threshold>
-            <left_val>0.6241816878318787</left_val>
-            <right_val>0.4514600038528442</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 6 4 14 -1.</_>
-                <_>10 6 2 14 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.9951568990945816e-003</threshold>
-            <left_val>0.3432781100273132</left_val>
-            <right_val>0.5400953888893127</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 5 5 6 -1.</_>
-                <_>0 7 5 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0357007086277008</threshold>
-            <left_val>0.1878059059381485</left_val>
-            <right_val>0.5074077844619751</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 6 4 -1.</_>
-                <_>9 5 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5584561303257942e-004</threshold>
-            <left_val>0.3805277049541473</left_val>
-            <right_val>0.5402569770812988</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 18 10 -1.</_>
-                <_>6 0 6 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0542606003582478</threshold>
-            <left_val>0.6843714714050293</left_val>
-            <right_val>0.4595097005367279</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 6 4 14 -1.</_>
-                <_>10 6 2 14 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.0600461438298225e-003</threshold>
-            <left_val>0.5502905249595642</left_val>
-            <right_val>0.4500527977943420</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 4 14 -1.</_>
-                <_>8 6 2 14 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.4791832119226456e-003</threshold>
-            <left_val>0.3368858098983765</left_val>
-            <right_val>0.5310757160186768</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 4 1 3 -1.</_>
-                <_>13 5 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4939469983801246e-003</threshold>
-            <left_val>0.6487640142440796</left_val>
-            <right_val>0.4756175875663757</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 1 2 3 -1.</_>
-                <_>6 1 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4610530342906713e-005</threshold>
-            <left_val>0.4034579098224640</left_val>
-            <right_val>0.5451064109802246</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 1 2 18 -1.</_>
-                <_>19 1 1 9 2.</_>
-                <_>18 10 1 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.2321938350796700e-003</threshold>
-            <left_val>0.6386873722076416</left_val>
-            <right_val>0.4824739992618561</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 1 4 3 -1.</_>
-                <_>2 2 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.0645818226039410e-003</threshold>
-            <left_val>0.2986421883106232</left_val>
-            <right_val>0.5157335996627808</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 1 2 18 -1.</_>
-                <_>19 1 1 9 2.</_>
-                <_>18 10 1 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0304630808532238</threshold>
-            <left_val>0.5022199749946594</left_val>
-            <right_val>0.7159956097602844</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 14 4 6 -1.</_>
-                <_>1 14 2 3 2.</_>
-                <_>3 17 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.0544911324977875e-003</threshold>
-            <left_val>0.6492452025413513</left_val>
-            <right_val>0.4619275033473969</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 11 7 6 -1.</_>
-                <_>10 13 7 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0395051389932632</threshold>
-            <left_val>0.5150570869445801</left_val>
-            <right_val>0.2450613975524902</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 10 6 10 -1.</_>
-                <_>0 10 3 5 2.</_>
-                <_>3 15 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.4530208259820938e-003</threshold>
-            <left_val>0.4573669135570526</left_val>
-            <right_val>0.6394037008285523</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 0 3 4 -1.</_>
-                <_>12 0 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1688120430335402e-003</threshold>
-            <left_val>0.3865512013435364</left_val>
-            <right_val>0.5483661293983460</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 10 5 6 -1.</_>
-                <_>5 13 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.8070670086890459e-003</threshold>
-            <left_val>0.5128579139709473</left_val>
-            <right_val>0.2701480090618134</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 6 1 8 -1.</_>
-                <_>14 10 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.7365209320560098e-004</threshold>
-            <left_val>0.4051581919193268</left_val>
-            <right_val>0.5387461185455322</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 7 18 6 -1.</_>
-                <_>1 7 9 3 2.</_>
-                <_>10 10 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0117410803213716</threshold>
-            <left_val>0.5295950174331665</left_val>
-            <right_val>0.3719413876533508</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 2 2 -1.</_>
-                <_>9 7 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1833238899707794e-003</threshold>
-            <left_val>0.4789406955242157</left_val>
-            <right_val>0.6895126104354858</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 9 4 5 -1.</_>
-                <_>7 9 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.0241501089185476e-004</threshold>
-            <left_val>0.5384489297866821</left_val>
-            <right_val>0.3918080925941467</right_val></_></_></trees>
-      <stage_threshold>54.6200714111328130</stage_threshold>
-      <parent>11</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 13 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 6 6 3 -1.</_>
-                <_>9 6 2 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0170599296689034</threshold>
-            <left_val>0.3948527872562408</left_val>
-            <right_val>0.7142534852027893</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 0 18 4 -1.</_>
-                <_>7 0 6 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0218408405780792</threshold>
-            <left_val>0.3370316028594971</left_val>
-            <right_val>0.6090016961097717</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 15 2 4 -1.</_>
-                <_>7 17 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4520049919374287e-004</threshold>
-            <left_val>0.3500576019287109</left_val>
-            <right_val>0.5987902283668518</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 0 19 9 -1.</_>
-                <_>1 3 19 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.3272606134414673e-003</threshold>
-            <left_val>0.3267528116703033</left_val>
-            <right_val>0.5697240829467773</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 7 3 6 -1.</_>
-                <_>3 9 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.7148298947140574e-004</threshold>
-            <left_val>0.3044599890708923</left_val>
-            <right_val>0.5531656742095947</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 7 4 4 -1.</_>
-                <_>15 7 2 2 2.</_>
-                <_>13 9 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.7373987985774875e-004</threshold>
-            <left_val>0.3650012016296387</left_val>
-            <right_val>0.5672631263732910</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 7 4 4 -1.</_>
-                <_>3 7 2 2 2.</_>
-                <_>5 9 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4681590477703139e-005</threshold>
-            <left_val>0.3313541114330292</left_val>
-            <right_val>0.5388727188110352</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 6 10 8 -1.</_>
-                <_>9 10 10 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.8563398197293282e-003</threshold>
-            <left_val>0.2697942852973938</left_val>
-            <right_val>0.5498778820037842</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 8 14 12 -1.</_>
-                <_>3 14 14 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.5102273151278496e-003</threshold>
-            <left_val>0.5269358158111572</left_val>
-            <right_val>0.2762879133224487</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 5 10 12 -1.</_>
-                <_>11 5 5 6 2.</_>
-                <_>6 11 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0698172077536583</threshold>
-            <left_val>0.2909603118896484</left_val>
-            <right_val>0.5259246826171875</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 11 2 3 -1.</_>
-                <_>9 12 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.6113670840859413e-004</threshold>
-            <left_val>0.5892577171325684</left_val>
-            <right_val>0.4073697924613953</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 6 5 -1.</_>
-                <_>9 5 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.7149249631911516e-004</threshold>
-            <left_val>0.3523564040660858</left_val>
-            <right_val>0.5415862202644348</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 4 2 4 -1.</_>
-                <_>9 6 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4727490452060010e-005</threshold>
-            <left_val>0.5423017740249634</left_val>
-            <right_val>0.3503156006336212</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 6 5 -1.</_>
-                <_>9 5 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0484202913939953</threshold>
-            <left_val>0.5193945765495300</left_val>
-            <right_val>0.3411195874214172</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 6 5 -1.</_>
-                <_>8 5 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3257140526548028e-003</threshold>
-            <left_val>0.3157769143581390</left_val>
-            <right_val>0.5335376262664795</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 2 6 1 -1.</_>
-                <_>13 2 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4922149603080470e-005</threshold>
-            <left_val>0.4451299905776978</left_val>
-            <right_val>0.5536553859710693</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 2 6 1 -1.</_>
-                <_>5 2 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.7173398993909359e-003</threshold>
-            <left_val>0.3031741976737976</left_val>
-            <right_val>0.5248088836669922</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 5 2 3 -1.</_>
-                <_>13 6 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9219500720500946e-003</threshold>
-            <left_val>0.4781453013420105</left_val>
-            <right_val>0.6606041789054871</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 10 1 4 -1.</_>
-                <_>0 12 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.9804988987743855e-003</threshold>
-            <left_val>0.3186308145523071</left_val>
-            <right_val>0.5287625193595886</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 5 2 3 -1.</_>
-                <_>13 6 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.0012109093368053e-003</threshold>
-            <left_val>0.6413596868515015</left_val>
-            <right_val>0.4749928116798401</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 18 3 2 -1.</_>
-                <_>9 18 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.3491991236805916e-003</threshold>
-            <left_val>0.1507498025894165</left_val>
-            <right_val>0.5098996758460999</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 15 9 2 -1.</_>
-                <_>6 16 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3490889687091112e-003</threshold>
-            <left_val>0.4316158890724182</left_val>
-            <right_val>0.5881167054176331</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 4 3 -1.</_>
-                <_>8 15 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0185970701277256</threshold>
-            <left_val>0.4735553860664368</left_val>
-            <right_val>0.9089794158935547</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 4 2 4 -1.</_>
-                <_>18 6 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8562379991635680e-003</threshold>
-            <left_val>0.3553189039230347</left_val>
-            <right_val>0.5577837228775024</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 2 3 -1.</_>
-                <_>5 6 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2940430790185928e-003</threshold>
-            <left_val>0.4500094950199127</left_val>
-            <right_val>0.6580877900123596</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 16 3 2 -1.</_>
-                <_>15 17 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9982850537635386e-004</threshold>
-            <left_val>0.5629242062568665</left_val>
-            <right_val>0.3975878953933716</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 3 9 -1.</_>
-                <_>0 3 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.5455459728837013e-003</threshold>
-            <left_val>0.5381547212600708</left_val>
-            <right_val>0.3605485856533051</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 3 3 -1.</_>
-                <_>9 8 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.6104722470045090e-003</threshold>
-            <left_val>0.5255997180938721</left_val>
-            <right_val>0.1796745955944061</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 3 -1.</_>
-                <_>8 8 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.2783220782876015e-003</threshold>
-            <left_val>0.2272856980562210</left_val>
-            <right_val>0.5114030241966248</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 2 6 -1.</_>
-                <_>9 5 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4598479978740215e-003</threshold>
-            <left_val>0.4626308083534241</left_val>
-            <right_val>0.6608219146728516</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 6 3 4 -1.</_>
-                <_>9 6 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.3112019514665008e-003</threshold>
-            <left_val>0.6317539811134338</left_val>
-            <right_val>0.4436857998371124</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 6 8 12 -1.</_>
-                <_>11 6 4 6 2.</_>
-                <_>7 12 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6876179035753012e-003</threshold>
-            <left_val>0.5421109795570374</left_val>
-            <right_val>0.4054022133350372</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 8 12 -1.</_>
-                <_>5 6 4 6 2.</_>
-                <_>9 12 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.9118169806897640e-003</threshold>
-            <left_val>0.5358477830886841</left_val>
-            <right_val>0.3273454904556274</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 4 3 3 -1.</_>
-                <_>12 5 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0142064504325390</threshold>
-            <left_val>0.7793576717376709</left_val>
-            <right_val>0.4975781142711639</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 16 3 2 -1.</_>
-                <_>2 17 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.1705528534948826e-004</threshold>
-            <left_val>0.5297319889068604</left_val>
-            <right_val>0.3560903966426849</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 4 3 3 -1.</_>
-                <_>12 5 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6635019565001130e-003</threshold>
-            <left_val>0.4678094089031220</left_val>
-            <right_val>0.5816481709480286</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 12 6 6 -1.</_>
-                <_>2 14 6 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3686188980937004e-003</threshold>
-            <left_val>0.5276734232902527</left_val>
-            <right_val>0.3446420133113861</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 13 6 3 -1.</_>
-                <_>7 14 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0127995302900672</threshold>
-            <left_val>0.4834679961204529</left_val>
-            <right_val>0.7472159266471863</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 14 6 3 -1.</_>
-                <_>6 15 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3901201095432043e-003</threshold>
-            <left_val>0.4511859118938446</left_val>
-            <right_val>0.6401721239089966</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 15 5 3 -1.</_>
-                <_>14 16 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.7070779837667942e-003</threshold>
-            <left_val>0.5335658788681030</left_val>
-            <right_val>0.3555220961570740</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 3 3 -1.</_>
-                <_>5 5 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4819339849054813e-003</threshold>
-            <left_val>0.4250707030296326</left_val>
-            <right_val>0.5772724151611328</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 15 5 3 -1.</_>
-                <_>14 16 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.9995759986341000e-003</threshold>
-            <left_val>0.3003320097923279</left_val>
-            <right_val>0.5292900204658508</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 3 6 2 -1.</_>
-                <_>7 3 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0159390103071928</threshold>
-            <left_val>0.5067319273948669</left_val>
-            <right_val>0.1675581932067871</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 15 4 3 -1.</_>
-                <_>8 16 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.6377349905669689e-003</threshold>
-            <left_val>0.4795069992542267</left_val>
-            <right_val>0.7085601091384888</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 15 5 3 -1.</_>
-                <_>1 16 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.7334040068089962e-003</threshold>
-            <left_val>0.5133113265037537</left_val>
-            <right_val>0.2162470072507858</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 13 4 6 -1.</_>
-                <_>10 13 2 3 2.</_>
-                <_>8 16 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0128588099032640</threshold>
-            <left_val>0.1938841938972473</left_val>
-            <right_val>0.5251371860504150</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 8 3 3 -1.</_>
-                <_>8 8 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.2270800117403269e-004</threshold>
-            <left_val>0.5686538219451904</left_val>
-            <right_val>0.4197868108749390</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 0 5 4 -1.</_>
-                <_>12 2 5 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2651681471616030e-004</threshold>
-            <left_val>0.4224168956279755</left_val>
-            <right_val>0.5429695844650269</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 20 2 -1.</_>
-                <_>0 2 10 1 2.</_>
-                <_>10 3 10 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0110750999301672</threshold>
-            <left_val>0.5113775134086609</left_val>
-            <right_val>0.2514517903327942</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 0 18 4 -1.</_>
-                <_>7 0 6 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0367282517254353</threshold>
-            <left_val>0.7194662094116211</left_val>
-            <right_val>0.4849618971347809</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 3 6 1 -1.</_>
-                <_>6 3 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.8207109426148236e-004</threshold>
-            <left_val>0.3840261995792389</left_val>
-            <right_val>0.5394446253776550</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 18 13 2 -1.</_>
-                <_>4 19 13 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.7489690110087395e-003</threshold>
-            <left_val>0.5937088727951050</left_val>
-            <right_val>0.4569182097911835</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 10 3 6 -1.</_>
-                <_>2 12 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0100475195795298</threshold>
-            <left_val>0.5138576030731201</left_val>
-            <right_val>0.2802298069000244</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 12 6 8 -1.</_>
-                <_>17 12 3 4 2.</_>
-                <_>14 16 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.1497840583324432e-003</threshold>
-            <left_val>0.6090037226676941</left_val>
-            <right_val>0.4636121094226837</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 13 10 6 -1.</_>
-                <_>4 13 5 3 2.</_>
-                <_>9 16 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.8833888508379459e-003</threshold>
-            <left_val>0.3458611071109772</left_val>
-            <right_val>0.5254660248756409</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 12 1 2 -1.</_>
-                <_>14 13 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4039360394235700e-005</threshold>
-            <left_val>0.5693104267120361</left_val>
-            <right_val>0.4082083106040955</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 13 4 3 -1.</_>
-                <_>8 14 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5498419525101781e-003</threshold>
-            <left_val>0.4350537061691284</left_val>
-            <right_val>0.5806517004966736</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 12 2 2 -1.</_>
-                <_>14 13 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.7841499112546444e-003</threshold>
-            <left_val>0.1468873023986816</left_val>
-            <right_val>0.5182775259017944</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 12 2 2 -1.</_>
-                <_>4 13 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1705629478674382e-004</threshold>
-            <left_val>0.5293524265289307</left_val>
-            <right_val>0.3456174135208130</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 9 2 -1.</_>
-                <_>8 13 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1198898795992136e-004</threshold>
-            <left_val>0.4652450978755951</left_val>
-            <right_val>0.5942413806915283</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 14 2 3 -1.</_>
-                <_>9 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4507530294358730e-003</threshold>
-            <left_val>0.4653508961200714</left_val>
-            <right_val>0.7024846076965332</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 10 3 6 -1.</_>
-                <_>11 13 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5818689027801156e-004</threshold>
-            <left_val>0.5497295260429382</left_val>
-            <right_val>0.3768967092037201</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 9 12 -1.</_>
-                <_>5 12 9 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0174425393342972</threshold>
-            <left_val>0.3919087946414948</left_val>
-            <right_val>0.5457497835159302</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 10 3 6 -1.</_>
-                <_>11 13 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0453435294330120</threshold>
-            <left_val>0.1631357073783875</left_val>
-            <right_val>0.5154908895492554</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 10 3 6 -1.</_>
-                <_>6 13 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9190689781680703e-003</threshold>
-            <left_val>0.5145897865295410</left_val>
-            <right_val>0.2791895866394043</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 11 3 -1.</_>
-                <_>5 5 11 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.0177869163453579e-003</threshold>
-            <left_val>0.6517636179924011</left_val>
-            <right_val>0.4756332933902741</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 1 5 10 -1.</_>
-                <_>7 6 5 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.0720738470554352e-003</threshold>
-            <left_val>0.5514652729034424</left_val>
-            <right_val>0.4092685878276825</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 8 18 2 -1.</_>
-                <_>2 9 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.9855059003457427e-004</threshold>
-            <left_val>0.3165240883827210</left_val>
-            <right_val>0.5285550951957703</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 17 5 3 -1.</_>
-                <_>7 18 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.5418570302426815e-003</threshold>
-            <left_val>0.6853377819061279</left_val>
-            <right_val>0.4652808904647827</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 9 12 1 -1.</_>
-                <_>9 9 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4845089539885521e-003</threshold>
-            <left_val>0.5484588146209717</left_val>
-            <right_val>0.4502759873867035</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 14 6 6 -1.</_>
-                <_>0 14 3 3 2.</_>
-                <_>3 17 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0136967804282904</threshold>
-            <left_val>0.6395779848098755</left_val>
-            <right_val>0.4572555124759674</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 9 12 1 -1.</_>
-                <_>9 9 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0173471402376890</threshold>
-            <left_val>0.2751072943210602</left_val>
-            <right_val>0.5181614756584168</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 9 12 1 -1.</_>
-                <_>7 9 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.0885428898036480e-003</threshold>
-            <left_val>0.3325636088848114</left_val>
-            <right_val>0.5194984078407288</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 10 6 7 -1.</_>
-                <_>14 10 3 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.4687901437282562e-003</threshold>
-            <left_val>0.5942280888557434</left_val>
-            <right_val>0.4851819872856140</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 0 16 2 -1.</_>
-                <_>1 1 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7084840219467878e-003</threshold>
-            <left_val>0.4167110919952393</left_val>
-            <right_val>0.5519806146621704</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 9 10 9 -1.</_>
-                <_>10 12 10 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.4809094443917274e-003</threshold>
-            <left_val>0.5433894991874695</left_val>
-            <right_val>0.4208514988422394</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 1 10 2 -1.</_>
-                <_>5 1 5 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.7389650717377663e-003</threshold>
-            <left_val>0.6407189965248108</left_val>
-            <right_val>0.4560655057430267</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 3 2 3 -1.</_>
-                <_>17 4 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5761050209403038e-003</threshold>
-            <left_val>0.5214555263519287</left_val>
-            <right_val>0.2258227020502091</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 3 2 3 -1.</_>
-                <_>1 4 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1690549328923225e-003</threshold>
-            <left_val>0.3151527941226959</left_val>
-            <right_val>0.5156704783439636</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 3 6 -1.</_>
-                <_>10 7 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0146601703017950</threshold>
-            <left_val>0.4870837032794952</left_val>
-            <right_val>0.6689941287040710</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 5 4 3 -1.</_>
-                <_>8 5 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7231999663636088e-004</threshold>
-            <left_val>0.3569748997688294</left_val>
-            <right_val>0.5251078009605408</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 5 6 6 -1.</_>
-                <_>9 5 2 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0218037609010935</threshold>
-            <left_val>0.8825920820236206</left_val>
-            <right_val>0.4966329932212830</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 4 12 12 -1.</_>
-                <_>3 4 6 6 2.</_>
-                <_>9 10 6 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0947361066937447</threshold>
-            <left_val>0.1446162015199661</left_val>
-            <right_val>0.5061113834381104</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 2 6 15 -1.</_>
-                <_>11 2 2 15 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.5825551971793175e-003</threshold>
-            <left_val>0.5396478772163391</left_val>
-            <right_val>0.4238066077232361</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 2 6 17 -1.</_>
-                <_>4 2 2 17 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9517090404406190e-003</threshold>
-            <left_val>0.4170410931110382</left_val>
-            <right_val>0.5497786998748779</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 10 6 7 -1.</_>
-                <_>14 10 3 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0121499001979828</threshold>
-            <left_val>0.4698367118835449</left_val>
-            <right_val>0.5664274096488953</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 10 6 7 -1.</_>
-                <_>3 10 3 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.5169620104134083e-003</threshold>
-            <left_val>0.6267772912979126</left_val>
-            <right_val>0.4463135898113251</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 2 6 15 -1.</_>
-                <_>11 2 2 15 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0716679096221924</threshold>
-            <left_val>0.3097011148929596</left_val>
-            <right_val>0.5221003293991089</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 2 6 15 -1.</_>
-                <_>7 2 2 15 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0882924199104309</threshold>
-            <left_val>0.0811238884925842</left_val>
-            <right_val>0.5006365180015564</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 9 3 6 -1.</_>
-                <_>17 11 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0310630798339844</threshold>
-            <left_val>0.5155503749847412</left_val>
-            <right_val>0.1282255947589874</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 7 6 6 -1.</_>
-                <_>8 7 2 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0466218404471874</threshold>
-            <left_val>0.4699777960777283</left_val>
-            <right_val>0.7363960742950440</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 10 18 6 -1.</_>
-                <_>10 10 9 3 2.</_>
-                <_>1 13 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0121894897893071</threshold>
-            <left_val>0.3920530080795288</left_val>
-            <right_val>0.5518996715545654</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 9 10 9 -1.</_>
-                <_>0 12 10 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0130161102861166</threshold>
-            <left_val>0.5260658264160156</left_val>
-            <right_val>0.3685136139392853</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 15 4 3 -1.</_>
-                <_>8 16 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.4952899441123009e-003</threshold>
-            <left_val>0.6339294910430908</left_val>
-            <right_val>0.4716280996799469</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 12 3 4 -1.</_>
-                <_>5 14 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.4015039748046547e-005</threshold>
-            <left_val>0.5333027243614197</left_val>
-            <right_val>0.3776184916496277</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 3 16 12 -1.</_>
-                <_>3 9 16 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1096649020910263</threshold>
-            <left_val>0.1765342056751251</left_val>
-            <right_val>0.5198346972465515</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 1 12 12 -1.</_>
-                <_>1 1 6 6 2.</_>
-                <_>7 7 6 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.0279558207839727e-004</threshold>
-            <left_val>0.5324159860610962</left_val>
-            <right_val>0.3838908076286316</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 4 2 4 -1.</_>
-                <_>11 4 1 2 2.</_>
-                <_>10 6 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.1126641705632210e-004</threshold>
-            <left_val>0.4647929966449738</left_val>
-            <right_val>0.5755224227905273</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 9 10 2 -1.</_>
-                <_>0 9 5 1 2.</_>
-                <_>5 10 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.1250279862433672e-003</threshold>
-            <left_val>0.3236708939075470</left_val>
-            <right_val>0.5166770815849304</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 11 3 3 -1.</_>
-                <_>9 12 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4144679773598909e-003</threshold>
-            <left_val>0.4787439107894898</left_val>
-            <right_val>0.6459717750549316</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 12 9 2 -1.</_>
-                <_>3 13 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.4391240226104856e-004</threshold>
-            <left_val>0.4409308135509491</left_val>
-            <right_val>0.6010255813598633</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 9 2 2 -1.</_>
-                <_>9 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2611189342569560e-004</threshold>
-            <left_val>0.4038113951683044</left_val>
-            <right_val>0.5493255853652954</right_val></_></_></trees>
-      <stage_threshold>50.1697311401367190</stage_threshold>
-      <parent>12</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 14 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 4 13 6 -1.</_>
-                <_>3 6 13 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0469012893736362</threshold>
-            <left_val>0.6600171923637390</left_val>
-            <right_val>0.3743801116943359</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 6 4 -1.</_>
-                <_>12 7 3 2 2.</_>
-                <_>9 9 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4568349579349160e-003</threshold>
-            <left_val>0.5783991217613220</left_val>
-            <right_val>0.3437797129154205</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 0 6 8 -1.</_>
-                <_>4 0 3 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.5598369799554348e-003</threshold>
-            <left_val>0.3622266948223114</left_val>
-            <right_val>0.5908216238021851</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 2 12 -1.</_>
-                <_>9 11 2 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.3170487303286791e-004</threshold>
-            <left_val>0.5500419139862061</left_val>
-            <right_val>0.2873558104038239</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 4 3 10 -1.</_>
-                <_>4 9 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3318009441718459e-003</threshold>
-            <left_val>0.2673169970512390</left_val>
-            <right_val>0.5431019067764282</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 17 8 3 -1.</_>
-                <_>6 18 8 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4347059661522508e-004</threshold>
-            <left_val>0.3855027854442596</left_val>
-            <right_val>0.5741388797760010</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 5 10 6 -1.</_>
-                <_>0 7 10 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.0512469820678234e-003</threshold>
-            <left_val>0.5503209829330444</left_val>
-            <right_val>0.3462845087051392</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 2 3 2 -1.</_>
-                <_>13 3 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.8657199153676629e-004</threshold>
-            <left_val>0.3291221857070923</left_val>
-            <right_val>0.5429509282112122</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 5 4 5 -1.</_>
-                <_>9 5 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4668200165033340e-003</threshold>
-            <left_val>0.3588382005691528</left_val>
-            <right_val>0.5351811051368713</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 14 3 6 -1.</_>
-                <_>12 16 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2021870720200241e-004</threshold>
-            <left_val>0.4296841919422150</left_val>
-            <right_val>0.5700234174728394</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 11 8 2 -1.</_>
-                <_>1 12 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.4122188379988074e-004</threshold>
-            <left_val>0.5282164812088013</left_val>
-            <right_val>0.3366870880126953</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 13 6 3 -1.</_>
-                <_>7 14 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.8330298848450184e-003</threshold>
-            <left_val>0.4559567868709564</left_val>
-            <right_val>0.6257336139678955</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 5 3 6 -1.</_>
-                <_>0 7 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0154564399272203</threshold>
-            <left_val>0.2350116968154907</left_val>
-            <right_val>0.5129452943801880</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 2 3 2 -1.</_>
-                <_>13 3 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6796779129654169e-003</threshold>
-            <left_val>0.5329415202140808</left_val>
-            <right_val>0.4155062139034271</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 14 4 6 -1.</_>
-                <_>4 14 2 3 2.</_>
-                <_>6 17 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.8296569362282753e-003</threshold>
-            <left_val>0.4273087978363037</left_val>
-            <right_val>0.5804538130760193</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 2 3 2 -1.</_>
-                <_>13 3 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.9444249123334885e-003</threshold>
-            <left_val>0.2912611961364746</left_val>
-            <right_val>0.5202686190605164</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 2 4 12 -1.</_>
-                <_>8 6 4 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7179559692740440e-003</threshold>
-            <left_val>0.5307688117027283</left_val>
-            <right_val>0.3585677146911621</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 0 6 8 -1.</_>
-                <_>17 0 3 4 2.</_>
-                <_>14 4 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9077627956867218e-003</threshold>
-            <left_val>0.4703775048255920</left_val>
-            <right_val>0.5941585898399353</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 17 3 2 -1.</_>
-                <_>8 17 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.2240349575877190e-003</threshold>
-            <left_val>0.2141567021608353</left_val>
-            <right_val>0.5088796019554138</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 4 2 -1.</_>
-                <_>8 13 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.0725888684391975e-003</threshold>
-            <left_val>0.4766413867473602</left_val>
-            <right_val>0.6841061115264893</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 0 8 12 -1.</_>
-                <_>6 0 4 6 2.</_>
-                <_>10 6 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0101495301350951</threshold>
-            <left_val>0.5360798835754395</left_val>
-            <right_val>0.3748497068881989</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 0 2 10 -1.</_>
-                <_>15 0 1 5 2.</_>
-                <_>14 5 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8864999583456665e-004</threshold>
-            <left_val>0.5720130205154419</left_val>
-            <right_val>0.3853805065155029</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 3 8 6 -1.</_>
-                <_>5 3 4 3 2.</_>
-                <_>9 6 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.8864358104765415e-003</threshold>
-            <left_val>0.3693122863769531</left_val>
-            <right_val>0.5340958833694458</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 0 6 10 -1.</_>
-                <_>17 0 3 5 2.</_>
-                <_>14 5 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0261584799736738</threshold>
-            <left_val>0.4962374866008759</left_val>
-            <right_val>0.6059989929199219</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 14 1 2 -1.</_>
-                <_>9 15 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8560759751126170e-004</threshold>
-            <left_val>0.4438945949077606</left_val>
-            <right_val>0.6012468934059143</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 10 4 3 -1.</_>
-                <_>15 11 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0112687097862363</threshold>
-            <left_val>0.5244250297546387</left_val>
-            <right_val>0.1840388029813767</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 2 3 -1.</_>
-                <_>8 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.8114619199186563e-003</threshold>
-            <left_val>0.6060283780097961</left_val>
-            <right_val>0.4409897029399872</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 13 14 4 -1.</_>
-                <_>10 13 7 2 2.</_>
-                <_>3 15 7 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.6112729944288731e-003</threshold>
-            <left_val>0.3891170918941498</left_val>
-            <right_val>0.5589237213134766</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 10 4 3 -1.</_>
-                <_>1 11 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.5680093616247177e-003</threshold>
-            <left_val>0.5069345831871033</left_val>
-            <right_val>0.2062619030475617</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 11 6 1 -1.</_>
-                <_>11 11 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.8172779022715986e-004</threshold>
-            <left_val>0.5882201790809631</left_val>
-            <right_val>0.4192610979080200</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 11 6 1 -1.</_>
-                <_>7 11 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7680290329735726e-004</threshold>
-            <left_val>0.5533605813980103</left_val>
-            <right_val>0.4003368914127350</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 5 16 15 -1.</_>
-                <_>3 10 16 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5112537704408169e-003</threshold>
-            <left_val>0.3310146927833557</left_val>
-            <right_val>0.5444191098213196</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 12 4 2 -1.</_>
-                <_>8 12 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.5948683186434209e-005</threshold>
-            <left_val>0.5433831810951233</left_val>
-            <right_val>0.3944905996322632</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 4 12 10 -1.</_>
-                <_>10 4 6 5 2.</_>
-                <_>4 9 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.9939051754772663e-003</threshold>
-            <left_val>0.5600358247756958</left_val>
-            <right_val>0.4192714095115662</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 6 3 4 -1.</_>
-                <_>9 6 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.6744439750909805e-003</threshold>
-            <left_val>0.6685466766357422</left_val>
-            <right_val>0.4604960978031158</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 4 8 -1.</_>
-                <_>10 12 2 4 2.</_>
-                <_>8 16 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0115898502990603</threshold>
-            <left_val>0.5357121229171753</left_val>
-            <right_val>0.2926830053329468</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 4 3 -1.</_>
-                <_>8 15 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0130078401416540</threshold>
-            <left_val>0.4679817855358124</left_val>
-            <right_val>0.7307463288307190</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 2 3 2 -1.</_>
-                <_>13 2 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1008579749614000e-003</threshold>
-            <left_val>0.3937501013278961</left_val>
-            <right_val>0.5415065288543701</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 15 3 2 -1.</_>
-                <_>8 16 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.0472649056464434e-004</threshold>
-            <left_val>0.4242376089096069</left_val>
-            <right_val>0.5604041218757629</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 0 9 14 -1.</_>
-                <_>9 0 3 14 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0144948400557041</threshold>
-            <left_val>0.3631210029125214</left_val>
-            <right_val>0.5293182730674744</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 6 2 3 -1.</_>
-                <_>10 6 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3056948818266392e-003</threshold>
-            <left_val>0.6860452294349670</left_val>
-            <right_val>0.4621821045875549</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 8 2 3 -1.</_>
-                <_>10 9 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.1829127157106996e-004</threshold>
-            <left_val>0.3944096863269806</left_val>
-            <right_val>0.5420439243316650</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 9 4 6 -1.</_>
-                <_>0 11 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0190775208175182</threshold>
-            <left_val>0.1962621957063675</left_val>
-            <right_val>0.5037891864776611</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 0 8 2 -1.</_>
-                <_>6 1 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.5549470339901745e-004</threshold>
-            <left_val>0.4086259007453919</left_val>
-            <right_val>0.5613973140716553</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 14 7 3 -1.</_>
-                <_>6 15 7 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9679730758070946e-003</threshold>
-            <left_val>0.4489121139049530</left_val>
-            <right_val>0.5926123261451721</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 10 8 9 -1.</_>
-                <_>8 13 8 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.9189141504466534e-003</threshold>
-            <left_val>0.5335925817489624</left_val>
-            <right_val>0.3728385865688324</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 2 3 2 -1.</_>
-                <_>6 2 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9872779268771410e-003</threshold>
-            <left_val>0.5111321210861206</left_val>
-            <right_val>0.2975643873214722</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 1 6 8 -1.</_>
-                <_>17 1 3 4 2.</_>
-                <_>14 5 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.2264618463814259e-003</threshold>
-            <left_val>0.5541489720344544</left_val>
-            <right_val>0.4824537932872772</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 1 6 8 -1.</_>
-                <_>0 1 3 4 2.</_>
-                <_>3 5 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0133533002808690</threshold>
-            <left_val>0.4586423933506012</left_val>
-            <right_val>0.6414797902107239</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 2 18 6 -1.</_>
-                <_>10 2 9 3 2.</_>
-                <_>1 5 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0335052385926247</threshold>
-            <left_val>0.5392425060272217</left_val>
-            <right_val>0.3429994881153107</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 3 2 1 -1.</_>
-                <_>10 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5294460356235504e-003</threshold>
-            <left_val>0.1703713983297348</left_val>
-            <right_val>0.5013315081596375</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 2 4 6 -1.</_>
-                <_>15 2 2 3 2.</_>
-                <_>13 5 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2801629491150379e-003</threshold>
-            <left_val>0.5305461883544922</left_val>
-            <right_val>0.4697405099868774</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 3 3 -1.</_>
-                <_>5 5 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.0687388069927692e-003</threshold>
-            <left_val>0.4615545868873596</left_val>
-            <right_val>0.6436504721641541</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 5 1 3 -1.</_>
-                <_>13 6 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.6880499040707946e-004</threshold>
-            <left_val>0.4833599030971527</left_val>
-            <right_val>0.6043894290924072</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 16 5 3 -1.</_>
-                <_>2 17 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.9647659286856651e-003</threshold>
-            <left_val>0.5187637209892273</left_val>
-            <right_val>0.3231816887855530</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 2 4 6 -1.</_>
-                <_>15 2 2 3 2.</_>
-                <_>13 5 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0220577307045460</threshold>
-            <left_val>0.4079256951808929</left_val>
-            <right_val>0.5200980901718140</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 2 4 6 -1.</_>
-                <_>3 2 2 3 2.</_>
-                <_>5 5 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.6906312713399529e-004</threshold>
-            <left_val>0.5331609249114990</left_val>
-            <right_val>0.3815600872039795</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 5 1 2 -1.</_>
-                <_>13 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.7009328631684184e-004</threshold>
-            <left_val>0.5655422210693359</left_val>
-            <right_val>0.4688901901245117</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 2 2 -1.</_>
-                <_>5 6 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.4284552829340100e-004</threshold>
-            <left_val>0.4534381031990051</left_val>
-            <right_val>0.6287400126457214</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 9 2 2 -1.</_>
-                <_>13 9 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2227810695767403e-003</threshold>
-            <left_val>0.5350633263587952</left_val>
-            <right_val>0.3303655982017517</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 9 2 2 -1.</_>
-                <_>6 9 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.4130521602928638e-003</threshold>
-            <left_val>0.1113687008619309</left_val>
-            <right_val>0.5005434751510620</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 17 3 2 -1.</_>
-                <_>13 18 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4520040167553816e-005</threshold>
-            <left_val>0.5628737807273865</left_val>
-            <right_val>0.4325133860111237</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 16 4 4 -1.</_>
-                <_>6 16 2 2 2.</_>
-                <_>8 18 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3369169502984732e-004</threshold>
-            <left_val>0.4165835082530975</left_val>
-            <right_val>0.5447791218757629</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 16 2 3 -1.</_>
-                <_>9 17 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.2894547805190086e-003</threshold>
-            <left_val>0.4860391020774841</left_val>
-            <right_val>0.6778649091720581</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 13 9 6 -1.</_>
-                <_>0 15 9 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9103150852024555e-003</threshold>
-            <left_val>0.5262305140495300</left_val>
-            <right_val>0.3612113893032074</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 14 2 6 -1.</_>
-                <_>9 17 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0129005396738648</threshold>
-            <left_val>0.5319377183914185</left_val>
-            <right_val>0.3250288069248200</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 15 2 3 -1.</_>
-                <_>9 16 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.6982979401946068e-003</threshold>
-            <left_val>0.4618245065212250</left_val>
-            <right_val>0.6665925979614258</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 10 18 6 -1.</_>
-                <_>1 12 18 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0104398597031832</threshold>
-            <left_val>0.5505670905113220</left_val>
-            <right_val>0.3883604109287262</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 11 4 2 -1.</_>
-                <_>8 12 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.0443191062659025e-003</threshold>
-            <left_val>0.4697853028774262</left_val>
-            <right_val>0.7301844954490662</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 9 6 2 -1.</_>
-                <_>7 10 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.1593751888722181e-004</threshold>
-            <left_val>0.3830839097499847</left_val>
-            <right_val>0.5464984178543091</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 8 2 3 -1.</_>
-                <_>8 9 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.4247159492224455e-003</threshold>
-            <left_val>0.2566300034523010</left_val>
-            <right_val>0.5089530944824219</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 5 3 4 -1.</_>
-                <_>18 5 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.3538565561175346e-003</threshold>
-            <left_val>0.6469966173171997</left_val>
-            <right_val>0.4940795898437500</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 19 18 1 -1.</_>
-                <_>7 19 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0523389987647533</threshold>
-            <left_val>0.4745982885360718</left_val>
-            <right_val>0.7878770828247070</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 0 3 2 -1.</_>
-                <_>10 0 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.5765620414167643e-003</threshold>
-            <left_val>0.5306664705276489</left_val>
-            <right_val>0.2748498022556305</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 8 1 6 -1.</_>
-                <_>1 10 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.1555317845195532e-004</threshold>
-            <left_val>0.5413125753402710</left_val>
-            <right_val>0.4041908979415894</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 17 8 3 -1.</_>
-                <_>12 17 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0105166798457503</threshold>
-            <left_val>0.6158512234687805</left_val>
-            <right_val>0.4815283119678497</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 5 3 4 -1.</_>
-                <_>1 5 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.7347927726805210e-003</threshold>
-            <left_val>0.4695805907249451</left_val>
-            <right_val>0.7028980851173401</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 2 3 -1.</_>
-                <_>9 8 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.3226778507232666e-003</threshold>
-            <left_val>0.2849566042423248</left_val>
-            <right_val>0.5304684042930603</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 11 2 2 -1.</_>
-                <_>7 11 1 1 2.</_>
-                <_>8 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5534399319440126e-003</threshold>
-            <left_val>0.7056984901428223</left_val>
-            <right_val>0.4688892066478729</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 3 2 5 -1.</_>
-                <_>11 3 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0268510231981054e-004</threshold>
-            <left_val>0.3902932107448578</left_val>
-            <right_val>0.5573464035987854</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 3 2 5 -1.</_>
-                <_>8 3 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.1395188570022583e-006</threshold>
-            <left_val>0.3684231936931610</left_val>
-            <right_val>0.5263987779617310</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 13 2 3 -1.</_>
-                <_>15 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.6711989883333445e-003</threshold>
-            <left_val>0.3849175870418549</left_val>
-            <right_val>0.5387271046638489</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 2 3 -1.</_>
-                <_>5 7 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.9260449595749378e-003</threshold>
-            <left_val>0.4729771912097931</left_val>
-            <right_val>0.7447251081466675</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 19 15 1 -1.</_>
-                <_>9 19 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.3908702209591866e-003</threshold>
-            <left_val>0.4809181094169617</left_val>
-            <right_val>0.5591921806335449</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 19 15 1 -1.</_>
-                <_>6 19 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0177936293184757</threshold>
-            <left_val>0.6903678178787231</left_val>
-            <right_val>0.4676927030086517</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 13 2 3 -1.</_>
-                <_>15 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0469669252634048e-003</threshold>
-            <left_val>0.5370690226554871</left_val>
-            <right_val>0.3308162093162537</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 0 4 15 -1.</_>
-                <_>7 0 2 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0298914890736341</threshold>
-            <left_val>0.5139865279197693</left_val>
-            <right_val>0.3309059143066406</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 6 2 5 -1.</_>
-                <_>9 6 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5494900289922953e-003</threshold>
-            <left_val>0.4660237133502960</left_val>
-            <right_val>0.6078342795372009</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 2 7 -1.</_>
-                <_>10 5 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4956969534978271e-003</threshold>
-            <left_val>0.4404835999011993</left_val>
-            <right_val>0.5863919854164124</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 11 3 3 -1.</_>
-                <_>16 12 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.5885928021743894e-004</threshold>
-            <left_val>0.5435971021652222</left_val>
-            <right_val>0.4208523035049439</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 11 3 3 -1.</_>
-                <_>1 12 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.9643701640889049e-004</threshold>
-            <left_val>0.5370578169822693</left_val>
-            <right_val>0.4000622034072876</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 8 3 -1.</_>
-                <_>6 7 8 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.7280810754746199e-003</threshold>
-            <left_val>0.5659412741661072</left_val>
-            <right_val>0.4259642958641052</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 15 6 2 -1.</_>
-                <_>0 16 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3026480339467525e-003</threshold>
-            <left_val>0.5161657929420471</left_val>
-            <right_val>0.3350869119167328</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 0 18 6 -1.</_>
-                <_>7 0 6 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2515163123607636</threshold>
-            <left_val>0.4869661927223206</left_val>
-            <right_val>0.7147309780120850</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 0 3 4 -1.</_>
-                <_>7 0 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.6328022144734859e-003</threshold>
-            <left_val>0.2727448940277100</left_val>
-            <right_val>0.5083789825439453</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 10 4 10 -1.</_>
-                <_>16 10 2 5 2.</_>
-                <_>14 15 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0404344908893108</threshold>
-            <left_val>0.6851438879966736</left_val>
-            <right_val>0.5021767020225525</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 2 3 2 -1.</_>
-                <_>4 2 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4972220014897175e-005</threshold>
-            <left_val>0.4284465014934540</left_val>
-            <right_val>0.5522555112838745</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 2 2 2 -1.</_>
-                <_>11 3 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4050309730228037e-004</threshold>
-            <left_val>0.4226118922233582</left_val>
-            <right_val>0.5390074849128723</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 10 4 10 -1.</_>
-                <_>2 10 2 5 2.</_>
-                <_>4 15 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0236578397452831</threshold>
-            <left_val>0.4744631946086884</left_val>
-            <right_val>0.7504366040229797</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 13 20 6 -1.</_>
-                <_>10 13 10 3 2.</_>
-                <_>0 16 10 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.1449104472994804e-003</threshold>
-            <left_val>0.4245058894157410</left_val>
-            <right_val>0.5538362860679627</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 5 2 15 -1.</_>
-                <_>1 5 1 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.6992130335420370e-003</threshold>
-            <left_val>0.5952357053756714</left_val>
-            <right_val>0.4529713094234467</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 7 18 4 -1.</_>
-                <_>10 7 9 2 2.</_>
-                <_>1 9 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.7718601785600185e-003</threshold>
-            <left_val>0.4137794077396393</left_val>
-            <right_val>0.5473399758338928</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 2 17 -1.</_>
-                <_>1 0 1 17 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.2669530957937241e-003</threshold>
-            <left_val>0.4484114944934845</left_val>
-            <right_val>0.5797994136810303</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 6 16 6 -1.</_>
-                <_>10 6 8 3 2.</_>
-                <_>2 9 8 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7791989957913756e-003</threshold>
-            <left_val>0.5624858736991882</left_val>
-            <right_val>0.4432444870471954</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 1 3 -1.</_>
-                <_>8 15 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6774770338088274e-003</threshold>
-            <left_val>0.4637751877307892</left_val>
-            <right_val>0.6364241838455200</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 15 4 2 -1.</_>
-                <_>8 16 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1732629500329494e-003</threshold>
-            <left_val>0.4544503092765808</left_val>
-            <right_val>0.5914415717124939</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 2 8 2 -1.</_>
-                <_>5 2 4 1 2.</_>
-                <_>9 3 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.6998171173036098e-004</threshold>
-            <left_val>0.5334752798080444</left_val>
-            <right_val>0.3885917961597443</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 11 8 6 -1.</_>
-                <_>6 14 8 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.6378340600058436e-004</threshold>
-            <left_val>0.5398585200309753</left_val>
-            <right_val>0.3744941949844360</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 13 2 2 -1.</_>
-                <_>9 14 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5684569370932877e-004</threshold>
-            <left_val>0.4317873120307922</left_val>
-            <right_val>0.5614616274833679</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 4 2 6 -1.</_>
-                <_>18 6 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0215113703161478</threshold>
-            <left_val>0.1785925030708313</left_val>
-            <right_val>0.5185542702674866</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 2 2 -1.</_>
-                <_>9 13 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3081369979772717e-004</threshold>
-            <left_val>0.4342499077320099</left_val>
-            <right_val>0.5682849884033203</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 4 2 6 -1.</_>
-                <_>18 6 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0219920407980680</threshold>
-            <left_val>0.5161716938018799</left_val>
-            <right_val>0.2379394024610519</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 13 1 3 -1.</_>
-                <_>9 14 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.0136500764638186e-004</threshold>
-            <left_val>0.5986763238906860</left_val>
-            <right_val>0.4466426968574524</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 4 2 6 -1.</_>
-                <_>18 6 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.2736099138855934e-003</threshold>
-            <left_val>0.4108217954635620</left_val>
-            <right_val>0.5251057147979736</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 4 2 6 -1.</_>
-                <_>0 6 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.6831789184361696e-003</threshold>
-            <left_val>0.5173814296722412</left_val>
-            <right_val>0.3397518098354340</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 3 3 -1.</_>
-                <_>9 13 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.9525681212544441e-003</threshold>
-            <left_val>0.6888983249664307</left_val>
-            <right_val>0.4845924079418182</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 13 2 3 -1.</_>
-                <_>3 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5382299898192286e-003</threshold>
-            <left_val>0.5178567171096802</left_val>
-            <right_val>0.3454113900661469</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 13 4 3 -1.</_>
-                <_>13 14 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0140435304492712</threshold>
-            <left_val>0.1678421050310135</left_val>
-            <right_val>0.5188667774200440</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 3 3 -1.</_>
-                <_>5 5 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4315890148282051e-003</threshold>
-            <left_val>0.4368256926536560</left_val>
-            <right_val>0.5655773878097534</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 2 10 6 -1.</_>
-                <_>5 4 10 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0340142287313938</threshold>
-            <left_val>0.7802296280860901</left_val>
-            <right_val>0.4959217011928558</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 13 4 3 -1.</_>
-                <_>3 14 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0120272999629378</threshold>
-            <left_val>0.1585101038217545</left_val>
-            <right_val>0.5032231807708740</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 7 15 5 -1.</_>
-                <_>8 7 5 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1331661939620972</threshold>
-            <left_val>0.5163304805755615</left_val>
-            <right_val>0.2755128145217896</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 7 12 2 -1.</_>
-                <_>7 7 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5221949433907866e-003</threshold>
-            <left_val>0.3728317916393280</left_val>
-            <right_val>0.5214552283287048</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 3 3 9 -1.</_>
-                <_>11 3 1 9 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.3929271679371595e-004</threshold>
-            <left_val>0.5838379263877869</left_val>
-            <right_val>0.4511165022850037</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 6 4 6 -1.</_>
-                <_>10 6 2 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0277197398245335</threshold>
-            <left_val>0.4728286862373352</left_val>
-            <right_val>0.7331544756889343</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 4 3 -1.</_>
-                <_>9 8 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1030150130391121e-003</threshold>
-            <left_val>0.5302202105522156</left_val>
-            <right_val>0.4101563096046448</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 9 4 9 -1.</_>
-                <_>2 9 2 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0778612196445465</threshold>
-            <left_val>0.4998334050178528</left_val>
-            <right_val>0.1272961944341660</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 13 3 5 -1.</_>
-                <_>10 13 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0158549398183823</threshold>
-            <left_val>0.0508333593606949</left_val>
-            <right_val>0.5165656208992004</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 7 6 3 -1.</_>
-                <_>9 7 2 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.9725300632417202e-003</threshold>
-            <left_val>0.6798133850097656</left_val>
-            <right_val>0.4684231877326965</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 3 5 -1.</_>
-                <_>10 7 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.7676506265997887e-004</threshold>
-            <left_val>0.6010771989822388</left_val>
-            <right_val>0.4788931906223297</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 8 2 -1.</_>
-                <_>9 7 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4647710379213095e-003</threshold>
-            <left_val>0.3393397927284241</left_val>
-            <right_val>0.5220503807067871</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 9 12 2 -1.</_>
-                <_>9 9 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.7937700077891350e-003</threshold>
-            <left_val>0.4365136921405792</left_val>
-            <right_val>0.5239663124084473</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 10 3 -1.</_>
-                <_>10 6 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0326080210506916</threshold>
-            <left_val>0.5052723884582520</left_val>
-            <right_val>0.2425214946269989</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 12 3 1 -1.</_>
-                <_>11 12 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.8514421107247472e-004</threshold>
-            <left_val>0.5733973979949951</left_val>
-            <right_val>0.4758574068546295</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 1 11 15 -1.</_>
-                <_>0 6 11 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0296326000243425</threshold>
-            <left_val>0.3892289102077484</left_val>
-            <right_val>0.5263597965240479</right_val></_></_></trees>
-      <stage_threshold>66.6691207885742190</stage_threshold>
-      <parent>13</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 15 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 0 18 6 -1.</_>
-                <_>7 0 6 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0465508513152599</threshold>
-            <left_val>0.3276950120925903</left_val>
-            <right_val>0.6240522861480713</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 7 6 1 -1.</_>
-                <_>9 7 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.9537127166986465e-003</threshold>
-            <left_val>0.4256485104560852</left_val>
-            <right_val>0.6942939162254334</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 16 6 4 -1.</_>
-                <_>5 16 3 2 2.</_>
-                <_>8 18 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.8221561377868056e-004</threshold>
-            <left_val>0.3711487054824829</left_val>
-            <right_val>0.5900732874870300</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 5 9 8 -1.</_>
-                <_>6 9 9 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.9348249770700932e-004</threshold>
-            <left_val>0.2041133940219879</left_val>
-            <right_val>0.5300545096397400</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 10 2 6 -1.</_>
-                <_>5 13 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6710508973337710e-004</threshold>
-            <left_val>0.5416126251220703</left_val>
-            <right_val>0.3103179037570953</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 6 8 10 -1.</_>
-                <_>11 6 4 5 2.</_>
-                <_>7 11 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7818060480058193e-003</threshold>
-            <left_val>0.5277832746505737</left_val>
-            <right_val>0.3467069864273071</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 8 10 -1.</_>
-                <_>5 6 4 5 2.</_>
-                <_>9 11 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.6779078547842801e-004</threshold>
-            <left_val>0.5308231115341187</left_val>
-            <right_val>0.3294492065906525</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 2 2 -1.</_>
-                <_>9 6 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.0335160772665404e-005</threshold>
-            <left_val>0.5773872733116150</left_val>
-            <right_val>0.3852097094058991</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 12 8 2 -1.</_>
-                <_>5 13 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.8038009814918041e-004</threshold>
-            <left_val>0.4317438900470734</left_val>
-            <right_val>0.6150057911872864</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 2 8 2 -1.</_>
-                <_>10 3 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.2553851380944252e-003</threshold>
-            <left_val>0.2933903932571411</left_val>
-            <right_val>0.5324292778968811</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 0 2 10 -1.</_>
-                <_>4 0 1 5 2.</_>
-                <_>5 5 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4735610350035131e-004</threshold>
-            <left_val>0.5468844771385193</left_val>
-            <right_val>0.3843030035495758</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 10 2 2 -1.</_>
-                <_>9 11 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4724259381182492e-004</threshold>
-            <left_val>0.4281542897224426</left_val>
-            <right_val>0.5755587220191956</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 8 15 3 -1.</_>
-                <_>2 9 15 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1864770203828812e-003</threshold>
-            <left_val>0.3747301101684570</left_val>
-            <right_val>0.5471466183662415</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 13 4 3 -1.</_>
-                <_>8 14 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3936580400913954e-003</threshold>
-            <left_val>0.4537783861160278</left_val>
-            <right_val>0.6111528873443604</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 2 3 2 -1.</_>
-                <_>8 2 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5390539774671197e-003</threshold>
-            <left_val>0.2971341907978058</left_val>
-            <right_val>0.5189538002014160</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 13 6 3 -1.</_>
-                <_>7 14 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.1968790143728256e-003</threshold>
-            <left_val>0.6699066758155823</left_val>
-            <right_val>0.4726476967334747</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 9 2 2 -1.</_>
-                <_>9 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.1499789222143590e-004</threshold>
-            <left_val>0.3384954035282135</left_val>
-            <right_val>0.5260317921638489</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 2 3 6 -1.</_>
-                <_>17 4 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.4359830208122730e-003</threshold>
-            <left_val>0.5399122238159180</left_val>
-            <right_val>0.3920140862464905</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 5 3 4 -1.</_>
-                <_>2 5 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6606200262904167e-003</threshold>
-            <left_val>0.4482578039169312</left_val>
-            <right_val>0.6119617819786072</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 8 4 6 -1.</_>
-                <_>14 10 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5287200221791863e-003</threshold>
-            <left_val>0.3711237907409668</left_val>
-            <right_val>0.5340266227722168</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 4 3 8 -1.</_>
-                <_>2 4 1 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.7397250309586525e-003</threshold>
-            <left_val>0.6031088232994080</left_val>
-            <right_val>0.4455145001411438</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 13 4 6 -1.</_>
-                <_>8 16 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0148291299119592</threshold>
-            <left_val>0.2838754057884216</left_val>
-            <right_val>0.5341861844062805</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 14 2 2 -1.</_>
-                <_>3 15 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.2275557108223438e-004</threshold>
-            <left_val>0.5209547281265259</left_val>
-            <right_val>0.3361653983592987</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 8 4 6 -1.</_>
-                <_>14 10 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0835298076272011</threshold>
-            <left_val>0.5119969844818115</left_val>
-            <right_val>0.0811644494533539</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 8 4 6 -1.</_>
-                <_>2 10 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.5633148662745953e-004</threshold>
-            <left_val>0.3317120075225830</left_val>
-            <right_val>0.5189831256866455</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 14 1 6 -1.</_>
-                <_>10 17 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.8403859883546829e-003</threshold>
-            <left_val>0.5247598290443420</left_val>
-            <right_val>0.2334959059953690</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 5 3 6 -1.</_>
-                <_>8 5 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5953830443322659e-003</threshold>
-            <left_val>0.5750094056129456</left_val>
-            <right_val>0.4295622110366821</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 2 2 6 -1.</_>
-                <_>12 2 1 3 2.</_>
-                <_>11 5 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4766020689858124e-005</threshold>
-            <left_val>0.4342445135116577</left_val>
-            <right_val>0.5564029216766357</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 6 5 -1.</_>
-                <_>8 6 2 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0298629105091095</threshold>
-            <left_val>0.4579147100448608</left_val>
-            <right_val>0.6579188108444214</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 1 3 6 -1.</_>
-                <_>17 3 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0113255903124809</threshold>
-            <left_val>0.5274311900138855</left_val>
-            <right_val>0.3673888146877289</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 5 -1.</_>
-                <_>9 7 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.7828645482659340e-003</threshold>
-            <left_val>0.7100368738174439</left_val>
-            <right_val>0.4642167091369629</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 18 3 2 -1.</_>
-                <_>10 18 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.3639959767460823e-003</threshold>
-            <left_val>0.5279216170310974</left_val>
-            <right_val>0.2705877125263214</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 18 3 2 -1.</_>
-                <_>9 18 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.1804728098213673e-003</threshold>
-            <left_val>0.5072525143623352</left_val>
-            <right_val>0.2449083030223846</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 3 5 2 -1.</_>
-                <_>12 4 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.5668511302210391e-004</threshold>
-            <left_val>0.4283105134963989</left_val>
-            <right_val>0.5548691153526306</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 1 5 12 -1.</_>
-                <_>7 7 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.7140368949621916e-003</threshold>
-            <left_val>0.5519387722015381</left_val>
-            <right_val>0.4103653132915497</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 0 18 4 -1.</_>
-                <_>7 0 6 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0253042895346880</threshold>
-            <left_val>0.6867002248764038</left_val>
-            <right_val>0.4869889020919800</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 2 2 2 -1.</_>
-                <_>4 3 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.4454080741852522e-004</threshold>
-            <left_val>0.3728874027729034</left_val>
-            <right_val>0.5287693142890930</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 14 4 2 -1.</_>
-                <_>13 14 2 1 2.</_>
-                <_>11 15 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.3935231668874621e-004</threshold>
-            <left_val>0.6060152053833008</left_val>
-            <right_val>0.4616062045097351</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 3 6 -1.</_>
-                <_>0 4 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0172800496220589</threshold>
-            <left_val>0.5049635767936707</left_val>
-            <right_val>0.1819823980331421</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 2 3 -1.</_>
-                <_>9 8 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3595077954232693e-003</threshold>
-            <left_val>0.1631239950656891</left_val>
-            <right_val>0.5232778787612915</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 1 3 -1.</_>
-                <_>5 6 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0298109846189618e-003</threshold>
-            <left_val>0.4463278055191040</left_val>
-            <right_val>0.6176549196243286</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 10 6 1 -1.</_>
-                <_>10 10 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0117109632119536e-003</threshold>
-            <left_val>0.5473384857177734</left_val>
-            <right_val>0.4300698935985565</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 10 6 1 -1.</_>
-                <_>7 10 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0103088002651930</threshold>
-            <left_val>0.1166985034942627</left_val>
-            <right_val>0.5000867247581482</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 17 3 3 -1.</_>
-                <_>9 18 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4682018235325813e-003</threshold>
-            <left_val>0.4769287109375000</left_val>
-            <right_val>0.6719213724136353</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 14 1 3 -1.</_>
-                <_>4 15 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.1696460731327534e-004</threshold>
-            <left_val>0.3471089899539948</left_val>
-            <right_val>0.5178164839744568</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 5 3 3 -1.</_>
-                <_>12 6 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3922820109874010e-003</threshold>
-            <left_val>0.4785236120223999</left_val>
-            <right_val>0.6216310858726502</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 5 12 3 -1.</_>
-                <_>4 6 12 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.5573818758130074e-003</threshold>
-            <left_val>0.5814796090126038</left_val>
-            <right_val>0.4410085082054138</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 8 2 3 -1.</_>
-                <_>9 9 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.7024032361805439e-004</threshold>
-            <left_val>0.3878000080585480</left_val>
-            <right_val>0.5465722084045410</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 9 3 3 -1.</_>
-                <_>5 9 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.7125990539789200e-003</threshold>
-            <left_val>0.1660051047801971</left_val>
-            <right_val>0.4995836019515991</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 0 9 17 -1.</_>
-                <_>9 0 3 17 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0103063201531768</threshold>
-            <left_val>0.4093391001224518</left_val>
-            <right_val>0.5274233818054199</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 1 3 -1.</_>
-                <_>9 13 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.0940979011356831e-003</threshold>
-            <left_val>0.6206194758415222</left_val>
-            <right_val>0.4572280049324036</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 2 15 -1.</_>
-                <_>9 10 2 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.8099051713943481e-003</threshold>
-            <left_val>0.5567759275436401</left_val>
-            <right_val>0.4155600070953369</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 2 3 -1.</_>
-                <_>8 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0746059706434608e-003</threshold>
-            <left_val>0.5638927817344666</left_val>
-            <right_val>0.4353024959564209</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 14 1 3 -1.</_>
-                <_>10 15 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1550289820879698e-003</threshold>
-            <left_val>0.4826265871524811</left_val>
-            <right_val>0.6749758124351502</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 1 6 5 -1.</_>
-                <_>9 1 2 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0317423194646835</threshold>
-            <left_val>0.5048379898071289</left_val>
-            <right_val>0.1883248984813690</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 20 2 -1.</_>
-                <_>0 0 10 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0783827230334282</threshold>
-            <left_val>0.2369548976421356</left_val>
-            <right_val>0.5260158181190491</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 13 5 3 -1.</_>
-                <_>2 14 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.7415119372308254e-003</threshold>
-            <left_val>0.5048828721046448</left_val>
-            <right_val>0.2776469886302948</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 11 2 3 -1.</_>
-                <_>9 12 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9014600440859795e-003</threshold>
-            <left_val>0.6238604784011841</left_val>
-            <right_val>0.4693317115306854</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 5 9 15 -1.</_>
-                <_>2 10 9 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6427931152284145e-003</threshold>
-            <left_val>0.3314141929149628</left_val>
-            <right_val>0.5169777274131775</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 0 12 10 -1.</_>
-                <_>11 0 6 5 2.</_>
-                <_>5 5 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1094966009259224</threshold>
-            <left_val>0.2380045056343079</left_val>
-            <right_val>0.5183441042900085</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 1 2 3 -1.</_>
-                <_>6 1 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.4075913289561868e-005</threshold>
-            <left_val>0.4069635868072510</left_val>
-            <right_val>0.5362150073051453</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 7 6 1 -1.</_>
-                <_>12 7 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.0593802006915212e-004</threshold>
-            <left_val>0.5506706237792969</left_val>
-            <right_val>0.4374594092369080</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 1 2 10 -1.</_>
-                <_>3 1 1 5 2.</_>
-                <_>4 6 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.2131777890026569e-004</threshold>
-            <left_val>0.5525709986686707</left_val>
-            <right_val>0.4209375977516174</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 7 2 1 -1.</_>
-                <_>13 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.0276539443293586e-005</threshold>
-            <left_val>0.5455474853515625</left_val>
-            <right_val>0.4748266041278839</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 13 4 6 -1.</_>
-                <_>4 15 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.8065142259001732e-003</threshold>
-            <left_val>0.5157995820045471</left_val>
-            <right_val>0.3424577116966248</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 7 2 1 -1.</_>
-                <_>13 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7202789895236492e-003</threshold>
-            <left_val>0.5013207793235779</left_val>
-            <right_val>0.6331263780593872</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 2 1 -1.</_>
-                <_>6 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.3016929733566940e-004</threshold>
-            <left_val>0.5539718270301819</left_val>
-            <right_val>0.4226869940757752</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 12 18 4 -1.</_>
-                <_>11 12 9 2 2.</_>
-                <_>2 14 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.8016388900578022e-003</threshold>
-            <left_val>0.4425095021724701</left_val>
-            <right_val>0.5430780053138733</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 2 2 -1.</_>
-                <_>5 7 1 1 2.</_>
-                <_>6 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5399310979992151e-003</threshold>
-            <left_val>0.7145782113075256</left_val>
-            <right_val>0.4697605073451996</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 3 4 2 -1.</_>
-                <_>16 4 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4278929447755218e-003</threshold>
-            <left_val>0.4070445001125336</left_val>
-            <right_val>0.5399605035781860</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 2 18 -1.</_>
-                <_>0 2 1 9 2.</_>
-                <_>1 11 1 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0251425504684448</threshold>
-            <left_val>0.7884690761566162</left_val>
-            <right_val>0.4747352004051209</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 2 18 4 -1.</_>
-                <_>10 2 9 2 2.</_>
-                <_>1 4 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.8899609353393316e-003</threshold>
-            <left_val>0.4296191930770874</left_val>
-            <right_val>0.5577110052108765</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 14 1 3 -1.</_>
-                <_>9 15 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.3947459198534489e-003</threshold>
-            <left_val>0.4693162143230438</left_val>
-            <right_val>0.7023944258689880</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 12 18 4 -1.</_>
-                <_>11 12 9 2 2.</_>
-                <_>2 14 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0246784202754498</threshold>
-            <left_val>0.5242322087287903</left_val>
-            <right_val>0.3812510073184967</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 12 18 4 -1.</_>
-                <_>0 12 9 2 2.</_>
-                <_>9 14 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0380476787686348</threshold>
-            <left_val>0.5011739730834961</left_val>
-            <right_val>0.1687828004360199</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 4 5 3 -1.</_>
-                <_>11 5 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.9424865543842316e-003</threshold>
-            <left_val>0.4828582108020783</left_val>
-            <right_val>0.6369568109512329</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 4 7 3 -1.</_>
-                <_>6 5 7 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5110049862414598e-003</threshold>
-            <left_val>0.5906485915184021</left_val>
-            <right_val>0.4487667977809906</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 17 3 3 -1.</_>
-                <_>13 18 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.4201741479337215e-003</threshold>
-            <left_val>0.5241097807884216</left_val>
-            <right_val>0.2990570068359375</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 1 3 4 -1.</_>
-                <_>9 1 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9802159406244755e-003</threshold>
-            <left_val>0.3041465878486633</left_val>
-            <right_val>0.5078489780426025</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 4 2 4 -1.</_>
-                <_>11 4 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.4580078944563866e-004</threshold>
-            <left_val>0.4128139019012451</left_val>
-            <right_val>0.5256826281547546</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 17 9 3 -1.</_>
-                <_>3 17 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0104709500446916</threshold>
-            <left_val>0.5808395147323608</left_val>
-            <right_val>0.4494296014308929</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 0 2 8 -1.</_>
-                <_>12 0 1 4 2.</_>
-                <_>11 4 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.3369204550981522e-003</threshold>
-            <left_val>0.5246552824974060</left_val>
-            <right_val>0.2658948898315430</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 8 6 12 -1.</_>
-                <_>0 8 3 6 2.</_>
-                <_>3 14 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0279369000345469</threshold>
-            <left_val>0.4674955010414124</left_val>
-            <right_val>0.7087256908416748</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 7 4 12 -1.</_>
-                <_>10 13 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.4277678504586220e-003</threshold>
-            <left_val>0.5409486889839172</left_val>
-            <right_val>0.3758518099784851</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 3 8 14 -1.</_>
-                <_>5 10 8 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0235845092684031</threshold>
-            <left_val>0.3758639991283417</left_val>
-            <right_val>0.5238550901412964</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 10 6 1 -1.</_>
-                <_>14 10 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1452640173956752e-003</threshold>
-            <left_val>0.4329578876495361</left_val>
-            <right_val>0.5804247260093689</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 4 10 4 -1.</_>
-                <_>0 6 10 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.3468660442158580e-004</threshold>
-            <left_val>0.5280618071556091</left_val>
-            <right_val>0.3873069882392883</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 0 5 8 -1.</_>
-                <_>10 4 5 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0106485402211547</threshold>
-            <left_val>0.4902113080024719</left_val>
-            <right_val>0.5681251883506775</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 1 4 8 -1.</_>
-                <_>8 1 2 4 2.</_>
-                <_>10 5 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.9418050437234342e-004</threshold>
-            <left_val>0.5570880174636841</left_val>
-            <right_val>0.4318251013755798</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 11 6 1 -1.</_>
-                <_>11 11 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.3270479394122958e-004</threshold>
-            <left_val>0.5658439993858337</left_val>
-            <right_val>0.4343554973602295</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 9 3 4 -1.</_>
-                <_>9 9 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.0125510636717081e-003</threshold>
-            <left_val>0.6056739091873169</left_val>
-            <right_val>0.4537523984909058</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 4 2 6 -1.</_>
-                <_>18 6 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4854319635778666e-003</threshold>
-            <left_val>0.5390477180480957</left_val>
-            <right_val>0.4138010144233704</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 8 3 4 -1.</_>
-                <_>9 8 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.8237880431115627e-003</threshold>
-            <left_val>0.4354828894138336</left_val>
-            <right_val>0.5717188715934753</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 1 13 3 -1.</_>
-                <_>7 2 13 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0166566595435143</threshold>
-            <left_val>0.3010913133621216</left_val>
-            <right_val>0.5216122865676880</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 13 6 1 -1.</_>
-                <_>9 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.0349558265879750e-004</threshold>
-            <left_val>0.5300151109695435</left_val>
-            <right_val>0.3818396925926209</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 11 3 6 -1.</_>
-                <_>12 13 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4170378930866718e-003</threshold>
-            <left_val>0.5328028798103333</left_val>
-            <right_val>0.4241400063037872</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 11 6 1 -1.</_>
-                <_>7 11 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.6222729249857366e-004</threshold>
-            <left_val>0.5491728186607361</left_val>
-            <right_val>0.4186977148056030</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 4 18 10 -1.</_>
-                <_>10 4 9 5 2.</_>
-                <_>1 9 9 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1163002029061317</threshold>
-            <left_val>0.1440722048282623</left_val>
-            <right_val>0.5226451158523560</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 6 4 9 -1.</_>
-                <_>8 9 4 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0146950101479888</threshold>
-            <left_val>0.7747725248336792</left_val>
-            <right_val>0.4715717136859894</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 6 4 3 -1.</_>
-                <_>8 7 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1972130052745342e-003</threshold>
-            <left_val>0.5355433821678162</left_val>
-            <right_val>0.3315644860267639</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 3 -1.</_>
-                <_>9 7 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.6965209185145795e-004</threshold>
-            <left_val>0.5767235159873962</left_val>
-            <right_val>0.4458136856555939</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 15 4 3 -1.</_>
-                <_>14 16 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5144998952746391e-003</threshold>
-            <left_val>0.5215674042701721</left_val>
-            <right_val>0.3647888898849487</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 10 3 10 -1.</_>
-                <_>6 10 1 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0213000606745481</threshold>
-            <left_val>0.4994204938411713</left_val>
-            <right_val>0.1567950993776321</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 15 4 3 -1.</_>
-                <_>8 16 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1881409231573343e-003</threshold>
-            <left_val>0.4742200076580048</left_val>
-            <right_val>0.6287270188331604</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 8 1 6 -1.</_>
-                <_>0 10 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.0019777417182922e-004</threshold>
-            <left_val>0.5347954034805298</left_val>
-            <right_val>0.3943752050399780</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 15 1 3 -1.</_>
-                <_>10 16 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1772277802228928e-003</threshold>
-            <left_val>0.6727191805839539</left_val>
-            <right_val>0.5013138055801392</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 15 4 3 -1.</_>
-                <_>2 16 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.3764649890363216e-003</threshold>
-            <left_val>0.3106675148010254</left_val>
-            <right_val>0.5128793120384216</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 3 2 8 -1.</_>
-                <_>19 3 1 4 2.</_>
-                <_>18 7 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6299960445612669e-003</threshold>
-            <left_val>0.4886310100555420</left_val>
-            <right_val>0.5755215883255005</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 3 2 8 -1.</_>
-                <_>0 3 1 4 2.</_>
-                <_>1 7 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.0458688959479332e-003</threshold>
-            <left_val>0.6025794148445129</left_val>
-            <right_val>0.4558076858520508</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 7 14 10 -1.</_>
-                <_>10 7 7 5 2.</_>
-                <_>3 12 7 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0694827064871788</threshold>
-            <left_val>0.5240747928619385</left_val>
-            <right_val>0.2185259014368057</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 7 19 3 -1.</_>
-                <_>0 8 19 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0240489393472672</threshold>
-            <left_val>0.5011867284774780</left_val>
-            <right_val>0.2090622037649155</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 6 3 3 -1.</_>
-                <_>12 7 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1095340382307768e-003</threshold>
-            <left_val>0.4866712093353272</left_val>
-            <right_val>0.7108548283576965</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 6 1 3 -1.</_>
-                <_>0 7 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2503260513767600e-003</threshold>
-            <left_val>0.3407891094684601</left_val>
-            <right_val>0.5156195163726807</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 6 3 3 -1.</_>
-                <_>12 7 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0281190043315291e-003</threshold>
-            <left_val>0.5575572252273560</left_val>
-            <right_val>0.4439432024955750</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 3 3 -1.</_>
-                <_>5 7 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.8893622159957886e-003</threshold>
-            <left_val>0.6402000784873962</left_val>
-            <right_val>0.4620442092418671</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 2 4 2 -1.</_>
-                <_>8 3 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.1094801640138030e-004</threshold>
-            <left_val>0.3766441941261292</left_val>
-            <right_val>0.5448899865150452</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 3 4 12 -1.</_>
-                <_>8 3 2 12 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.7686357758939266e-003</threshold>
-            <left_val>0.3318648934364319</left_val>
-            <right_val>0.5133677124977112</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 6 2 3 -1.</_>
-                <_>13 7 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.8506490159779787e-003</threshold>
-            <left_val>0.4903570115566254</left_val>
-            <right_val>0.6406934857368469</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 10 20 4 -1.</_>
-                <_>0 12 20 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0997994691133499</threshold>
-            <left_val>0.1536051034927368</left_val>
-            <right_val>0.5015562176704407</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 0 17 14 -1.</_>
-                <_>2 7 17 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.3512834906578064</threshold>
-            <left_val>0.0588231310248375</left_val>
-            <right_val>0.5174378752708435</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 6 10 -1.</_>
-                <_>0 0 3 5 2.</_>
-                <_>3 5 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0452445708215237</threshold>
-            <left_val>0.6961488723754883</left_val>
-            <right_val>0.4677872955799103</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 6 6 4 -1.</_>
-                <_>14 6 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0714815780520439</threshold>
-            <left_val>0.5167986154556274</left_val>
-            <right_val>0.1038092970848084</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 6 6 4 -1.</_>
-                <_>3 6 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1895780228078365e-003</threshold>
-            <left_val>0.4273078143596649</left_val>
-            <right_val>0.5532060861587524</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 2 7 2 -1.</_>
-                <_>13 3 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.9242651332169771e-004</threshold>
-            <left_val>0.4638943970203400</left_val>
-            <right_val>0.5276389122009277</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 7 2 -1.</_>
-                <_>0 3 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6788389766588807e-003</threshold>
-            <left_val>0.5301648974418640</left_val>
-            <right_val>0.3932034969329834</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 11 14 2 -1.</_>
-                <_>13 11 7 1 2.</_>
-                <_>6 12 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2163488902151585e-003</threshold>
-            <left_val>0.5630694031715393</left_val>
-            <right_val>0.4757033884525299</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 5 2 2 -1.</_>
-                <_>8 5 1 1 2.</_>
-                <_>9 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1568699846975505e-004</threshold>
-            <left_val>0.4307535886764526</left_val>
-            <right_val>0.5535702705383301</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 9 2 3 -1.</_>
-                <_>13 9 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.2017288766801357e-003</threshold>
-            <left_val>0.1444882005453110</left_val>
-            <right_val>0.5193064212799072</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 1 3 12 -1.</_>
-                <_>2 1 1 12 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.9081272017210722e-004</threshold>
-            <left_val>0.4384432137012482</left_val>
-            <right_val>0.5593621134757996</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 4 1 3 -1.</_>
-                <_>17 5 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9605009583756328e-004</threshold>
-            <left_val>0.5340415835380554</left_val>
-            <right_val>0.4705956876277924</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 4 1 3 -1.</_>
-                <_>2 5 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.2022142335772514e-004</threshold>
-            <left_val>0.5213856101036072</left_val>
-            <right_val>0.3810079097747803</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 5 1 3 -1.</_>
-                <_>14 6 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.4588572392240167e-004</threshold>
-            <left_val>0.4769414961338043</left_val>
-            <right_val>0.6130738854408264</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 16 2 3 -1.</_>
-                <_>7 17 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.1698471806012094e-005</threshold>
-            <left_val>0.4245009124279022</left_val>
-            <right_val>0.5429363250732422</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 13 4 6 -1.</_>
-                <_>10 13 2 3 2.</_>
-                <_>8 16 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1833200007677078e-003</threshold>
-            <left_val>0.5457730889320374</left_val>
-            <right_val>0.4191075861454010</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 1 3 -1.</_>
-                <_>5 6 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.6039671441540122e-004</threshold>
-            <left_val>0.5764588713645935</left_val>
-            <right_val>0.4471659958362579</right_val></_></_>
-        <_>
-          <!-- tree 135 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 0 4 20 -1.</_>
-                <_>16 0 2 20 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0132362395524979</threshold>
-            <left_val>0.6372823119163513</left_val>
-            <right_val>0.4695009887218475</right_val></_></_>
-        <_>
-          <!-- tree 136 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 1 2 6 -1.</_>
-                <_>5 1 1 3 2.</_>
-                <_>6 4 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.3376701069064438e-004</threshold>
-            <left_val>0.5317873954772949</left_val>
-            <right_val>0.3945829868316650</right_val></_></_></trees>
-      <stage_threshold>67.6989212036132810</stage_threshold>
-      <parent>14</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 16 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 10 4 -1.</_>
-                <_>5 6 10 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0248471498489380</threshold>
-            <left_val>0.6555516719818115</left_val>
-            <right_val>0.3873311877250671</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 2 4 12 -1.</_>
-                <_>15 2 2 12 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.1348611488938332e-003</threshold>
-            <left_val>0.3748072087764740</left_val>
-            <right_val>0.5973997712135315</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 6 4 12 -1.</_>
-                <_>7 12 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.4498498104512691e-003</threshold>
-            <left_val>0.5425491929054260</left_val>
-            <right_val>0.2548811137676239</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 5 1 8 -1.</_>
-                <_>14 9 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.3491211039945483e-004</threshold>
-            <left_val>0.2462442070245743</left_val>
-            <right_val>0.5387253761291504</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 4 14 10 -1.</_>
-                <_>1 4 7 5 2.</_>
-                <_>8 9 7 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4023890253156424e-003</threshold>
-            <left_val>0.5594322085380554</left_val>
-            <right_val>0.3528657853603363</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 6 6 14 -1.</_>
-                <_>14 6 3 7 2.</_>
-                <_>11 13 3 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.0044000595808029e-004</threshold>
-            <left_val>0.3958503901958466</left_val>
-            <right_val>0.5765938162803650</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 6 6 14 -1.</_>
-                <_>3 6 3 7 2.</_>
-                <_>6 13 3 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0042409849120304e-004</threshold>
-            <left_val>0.3698996901512146</left_val>
-            <right_val>0.5534998178482056</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 9 15 2 -1.</_>
-                <_>9 9 5 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.0841490738093853e-003</threshold>
-            <left_val>0.3711090981960297</left_val>
-            <right_val>0.5547800064086914</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 14 6 3 -1.</_>
-                <_>7 15 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0195372607558966</threshold>
-            <left_val>0.7492755055427551</left_val>
-            <right_val>0.4579297006130219</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 3 14 4 -1.</_>
-                <_>13 3 7 2 2.</_>
-                <_>6 5 7 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.4532740654831287e-006</threshold>
-            <left_val>0.5649787187576294</left_val>
-            <right_val>0.3904069960117340</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 9 15 2 -1.</_>
-                <_>6 9 5 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.6079459823668003e-003</threshold>
-            <left_val>0.3381088078022003</left_val>
-            <right_val>0.5267801284790039</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 11 8 9 -1.</_>
-                <_>6 14 8 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0697501022368670e-003</threshold>
-            <left_val>0.5519291162490845</left_val>
-            <right_val>0.3714388906955719</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 4 3 8 -1.</_>
-                <_>8 4 1 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.6463840408250690e-004</threshold>
-            <left_val>0.5608214735984802</left_val>
-            <right_val>0.4113566875457764</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 6 2 6 -1.</_>
-                <_>14 9 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.5490452582016587e-004</threshold>
-            <left_val>0.3559206128120422</left_val>
-            <right_val>0.5329356193542481</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 6 4 -1.</_>
-                <_>5 7 3 2 2.</_>
-                <_>8 9 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.8322238773107529e-004</threshold>
-            <left_val>0.5414795875549316</left_val>
-            <right_val>0.3763205111026764</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 1 18 19 -1.</_>
-                <_>7 1 6 19 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0199406407773495</threshold>
-            <left_val>0.6347903013229370</left_val>
-            <right_val>0.4705299139022827</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 2 6 5 -1.</_>
-                <_>4 2 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.7680300883948803e-003</threshold>
-            <left_val>0.3913489878177643</left_val>
-            <right_val>0.5563716292381287</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 17 6 2 -1.</_>
-                <_>12 18 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.4528505578637123e-003</threshold>
-            <left_val>0.2554892897605896</left_val>
-            <right_val>0.5215116739273071</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 17 6 2 -1.</_>
-                <_>2 18 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9560849070549011e-003</threshold>
-            <left_val>0.5174679160118103</left_val>
-            <right_val>0.3063920140266419</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 3 3 6 -1.</_>
-                <_>17 5 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.1078737750649452e-003</threshold>
-            <left_val>0.5388448238372803</left_val>
-            <right_val>0.2885963022708893</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 17 3 3 -1.</_>
-                <_>8 18 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.8219229532405734e-003</threshold>
-            <left_val>0.4336043000221252</left_val>
-            <right_val>0.5852196812629700</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 13 2 6 -1.</_>
-                <_>10 16 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0146887395530939</threshold>
-            <left_val>0.5287361741065979</left_val>
-            <right_val>0.2870005965232849</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 13 6 3 -1.</_>
-                <_>7 14 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0143879903480411</threshold>
-            <left_val>0.7019448876380920</left_val>
-            <right_val>0.4647370874881744</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 3 3 6 -1.</_>
-                <_>17 5 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0189866498112679</threshold>
-            <left_val>0.2986552119255066</left_val>
-            <right_val>0.5247011780738831</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 13 2 3 -1.</_>
-                <_>8 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1527639580890536e-003</threshold>
-            <left_val>0.4323473870754242</left_val>
-            <right_val>0.5931661725044251</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 3 6 2 -1.</_>
-                <_>11 3 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0109336702153087</threshold>
-            <left_val>0.5286864042282105</left_val>
-            <right_val>0.3130319118499756</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 3 3 6 -1.</_>
-                <_>0 5 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0149327302351594</threshold>
-            <left_val>0.2658419013023377</left_val>
-            <right_val>0.5084077119827271</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 5 4 6 -1.</_>
-                <_>8 7 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9970539617352188e-004</threshold>
-            <left_val>0.5463526844978333</left_val>
-            <right_val>0.3740724027156830</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 3 2 -1.</_>
-                <_>5 6 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.1677621193230152e-003</threshold>
-            <left_val>0.4703496992588043</left_val>
-            <right_val>0.7435721755027771</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 1 3 4 -1.</_>
-                <_>11 1 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3905320130288601e-003</threshold>
-            <left_val>0.2069258987903595</left_val>
-            <right_val>0.5280538201332092</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 2 5 9 -1.</_>
-                <_>1 5 5 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5029609464108944e-003</threshold>
-            <left_val>0.5182648897171021</left_val>
-            <right_val>0.3483543097972870</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 6 2 3 -1.</_>
-                <_>13 7 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.2040365561842918e-003</threshold>
-            <left_val>0.6803777217864990</left_val>
-            <right_val>0.4932360053062439</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 6 14 3 -1.</_>
-                <_>7 6 7 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0813272595405579</threshold>
-            <left_val>0.5058398842811585</left_val>
-            <right_val>0.2253051996231079</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 11 18 8 -1.</_>
-                <_>2 15 18 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1507928073406220</threshold>
-            <left_val>0.2963424921035767</left_val>
-            <right_val>0.5264679789543152</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 2 3 -1.</_>
-                <_>5 7 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3179009333252907e-003</threshold>
-            <left_val>0.4655495882034302</left_val>
-            <right_val>0.7072932124137878</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 6 4 2 -1.</_>
-                <_>12 6 2 1 2.</_>
-                <_>10 7 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.7402801252901554e-004</threshold>
-            <left_val>0.4780347943305969</left_val>
-            <right_val>0.5668237805366516</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 4 2 -1.</_>
-                <_>6 6 2 1 2.</_>
-                <_>8 7 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.8199541419744492e-004</threshold>
-            <left_val>0.4286996126174927</left_val>
-            <right_val>0.5722156763076782</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 1 3 4 -1.</_>
-                <_>11 1 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.3671570494771004e-003</threshold>
-            <left_val>0.5299307107925415</left_val>
-            <right_val>0.3114621937274933</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 1 2 7 -1.</_>
-                <_>8 1 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.7018666565418243e-005</threshold>
-            <left_val>0.3674638867378235</left_val>
-            <right_val>0.5269461870193481</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 2 15 14 -1.</_>
-                <_>4 9 15 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1253408938646317</threshold>
-            <left_val>0.2351492047309876</left_val>
-            <right_val>0.5245791077613831</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 2 -1.</_>
-                <_>9 7 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2516269497573376e-003</threshold>
-            <left_val>0.7115936875343323</left_val>
-            <right_val>0.4693767130374908</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 3 18 4 -1.</_>
-                <_>11 3 9 2 2.</_>
-                <_>2 5 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.8342109918594360e-003</threshold>
-            <left_val>0.4462651014328003</left_val>
-            <right_val>0.5409085750579834</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 2 2 -1.</_>
-                <_>10 7 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1310069821774960e-003</threshold>
-            <left_val>0.5945618748664856</left_val>
-            <right_val>0.4417662024497986</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 9 2 3 -1.</_>
-                <_>13 9 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7601120052859187e-003</threshold>
-            <left_val>0.5353249907493591</left_val>
-            <right_val>0.3973453044891357</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 2 6 2 -1.</_>
-                <_>7 2 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.1581249833106995e-004</threshold>
-            <left_val>0.3760268092155457</left_val>
-            <right_val>0.5264726877212524</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 2 7 -1.</_>
-                <_>9 5 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.8687589112669230e-003</threshold>
-            <left_val>0.6309912800788879</left_val>
-            <right_val>0.4749819934368134</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 9 2 3 -1.</_>
-                <_>6 9 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5207129763439298e-003</threshold>
-            <left_val>0.5230181813240051</left_val>
-            <right_val>0.3361223936080933</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 0 14 18 -1.</_>
-                <_>6 9 14 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.5458673834800720</threshold>
-            <left_val>0.5167139768600464</left_val>
-            <right_val>0.1172635033726692</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 16 6 3 -1.</_>
-                <_>2 17 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0156501904129982</threshold>
-            <left_val>0.4979439079761505</left_val>
-            <right_val>0.1393294930458069</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 3 6 -1.</_>
-                <_>10 7 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0117318602278829</threshold>
-            <left_val>0.7129650712013245</left_val>
-            <right_val>0.4921196103096008</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 8 4 3 -1.</_>
-                <_>7 9 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.1765122227370739e-003</threshold>
-            <left_val>0.2288102954626083</left_val>
-            <right_val>0.5049701929092407</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 12 6 3 -1.</_>
-                <_>7 13 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2457661107182503e-003</threshold>
-            <left_val>0.4632433950901032</left_val>
-            <right_val>0.6048725843429565</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 2 3 -1.</_>
-                <_>9 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1915869116783142e-003</threshold>
-            <left_val>0.6467421054840088</left_val>
-            <right_val>0.4602192938327789</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 12 6 2 -1.</_>
-                <_>9 12 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0238278806209564</threshold>
-            <left_val>0.1482000946998596</left_val>
-            <right_val>0.5226079225540161</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 11 4 6 -1.</_>
-                <_>5 14 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0284580057486892e-003</threshold>
-            <left_val>0.5135489106178284</left_val>
-            <right_val>0.3375957012176514</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 12 7 2 -1.</_>
-                <_>11 13 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0100788502022624</threshold>
-            <left_val>0.2740561068058014</left_val>
-            <right_val>0.5303567051887512</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 10 8 6 -1.</_>
-                <_>6 10 4 3 2.</_>
-                <_>10 13 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6168930344283581e-003</threshold>
-            <left_val>0.5332670807838440</left_val>
-            <right_val>0.3972454071044922</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 10 3 4 -1.</_>
-                <_>11 12 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4385367548093200e-004</threshold>
-            <left_val>0.5365604162216187</left_val>
-            <right_val>0.4063411951065064</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 16 2 3 -1.</_>
-                <_>9 17 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.3510512225329876e-003</threshold>
-            <left_val>0.4653759002685547</left_val>
-            <right_val>0.6889045834541321</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 3 1 9 -1.</_>
-                <_>13 6 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5274790348485112e-003</threshold>
-            <left_val>0.5449501276016235</left_val>
-            <right_val>0.3624723851680756</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 13 14 6 -1.</_>
-                <_>1 15 14 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0806244164705276</threshold>
-            <left_val>0.1656087040901184</left_val>
-            <right_val>0.5000287294387817</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 6 1 6 -1.</_>
-                <_>13 9 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0221920292824507</threshold>
-            <left_val>0.5132731199264526</left_val>
-            <right_val>0.2002808004617691</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 4 3 8 -1.</_>
-                <_>1 4 1 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.3100631125271320e-003</threshold>
-            <left_val>0.4617947936058044</left_val>
-            <right_val>0.6366536021232605</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 0 2 18 -1.</_>
-                <_>18 0 1 18 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.4063072204589844e-003</threshold>
-            <left_val>0.5916250944137573</left_val>
-            <right_val>0.4867860972881317</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 3 6 2 -1.</_>
-                <_>2 4 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.6415040530264378e-004</threshold>
-            <left_val>0.3888409137725830</left_val>
-            <right_val>0.5315797924995422</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 0 8 6 -1.</_>
-                <_>9 2 8 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.6734489994123578e-004</threshold>
-            <left_val>0.4159064888954163</left_val>
-            <right_val>0.5605279803276062</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 1 6 -1.</_>
-                <_>6 9 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.1474501853808761e-004</threshold>
-            <left_val>0.3089022040367127</left_val>
-            <right_val>0.5120148062705994</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 8 6 3 -1.</_>
-                <_>14 9 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.0105270929634571e-003</threshold>
-            <left_val>0.3972199857234955</left_val>
-            <right_val>0.5207306146621704</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 2 18 -1.</_>
-                <_>1 0 1 18 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.6909132078289986e-003</threshold>
-            <left_val>0.6257408261299133</left_val>
-            <right_val>0.4608575999736786</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 18 18 2 -1.</_>
-                <_>10 18 9 1 2.</_>
-                <_>1 19 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0163914598524570</threshold>
-            <left_val>0.2085209935903549</left_val>
-            <right_val>0.5242266058921814</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 15 2 2 -1.</_>
-                <_>3 16 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.0973909199237823e-004</threshold>
-            <left_val>0.5222427248954773</left_val>
-            <right_val>0.3780320882797241</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 5 3 -1.</_>
-                <_>8 15 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5242289993911982e-003</threshold>
-            <left_val>0.5803927183151245</left_val>
-            <right_val>0.4611890017986298</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 2 3 -1.</_>
-                <_>8 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0945312250405550e-004</threshold>
-            <left_val>0.4401271939277649</left_val>
-            <right_val>0.5846015810966492</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 3 3 3 -1.</_>
-                <_>13 3 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9656419754028320e-003</threshold>
-            <left_val>0.5322325229644775</left_val>
-            <right_val>0.4184590876102448</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 5 6 2 -1.</_>
-                <_>9 5 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.6298897834494710e-004</threshold>
-            <left_val>0.3741844892501831</left_val>
-            <right_val>0.5234565734863281</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 5 5 2 -1.</_>
-                <_>15 6 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.7946797935292125e-004</threshold>
-            <left_val>0.4631041884422302</left_val>
-            <right_val>0.5356478095054627</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 5 5 2 -1.</_>
-                <_>0 6 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.2856349870562553e-003</threshold>
-            <left_val>0.5044670104980469</left_val>
-            <right_val>0.2377564013004303</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 14 1 6 -1.</_>
-                <_>17 17 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0174594894051552</threshold>
-            <left_val>0.7289121150970459</left_val>
-            <right_val>0.5050435066223145</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 9 9 3 -1.</_>
-                <_>5 9 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0254217498004436</threshold>
-            <left_val>0.6667134761810303</left_val>
-            <right_val>0.4678100049495697</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 3 3 3 -1.</_>
-                <_>13 3 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5647639520466328e-003</threshold>
-            <left_val>0.4391759037971497</left_val>
-            <right_val>0.5323626995086670</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 4 18 -1.</_>
-                <_>2 0 2 18 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0114443600177765</threshold>
-            <left_val>0.4346440136432648</left_val>
-            <right_val>0.5680012106895447</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 6 1 3 -1.</_>
-                <_>17 7 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.7352550104260445e-004</threshold>
-            <left_val>0.4477140903472900</left_val>
-            <right_val>0.5296812057495117</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 14 1 6 -1.</_>
-                <_>2 17 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.3194209039211273e-003</threshold>
-            <left_val>0.4740200042724609</left_val>
-            <right_val>0.7462607026100159</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>19 8 1 2 -1.</_>
-                <_>19 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3328490604180843e-004</threshold>
-            <left_val>0.5365061759948731</left_val>
-            <right_val>0.4752134978771210</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 3 3 3 -1.</_>
-                <_>6 3 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.8815799206495285e-003</threshold>
-            <left_val>0.1752219051122665</left_val>
-            <right_val>0.5015255212783814</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 16 2 3 -1.</_>
-                <_>9 17 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.7985680177807808e-003</threshold>
-            <left_val>0.7271236777305603</left_val>
-            <right_val>0.4896200895309448</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 6 1 3 -1.</_>
-                <_>2 7 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.8922499516047537e-004</threshold>
-            <left_val>0.4003908932209015</left_val>
-            <right_val>0.5344941020011902</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 4 8 2 -1.</_>
-                <_>16 4 4 1 2.</_>
-                <_>12 5 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.9288610201328993e-003</threshold>
-            <left_val>0.5605612993240356</left_val>
-            <right_val>0.4803955852985382</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 4 8 2 -1.</_>
-                <_>0 4 4 1 2.</_>
-                <_>4 5 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.4214154630899429e-003</threshold>
-            <left_val>0.4753246903419495</left_val>
-            <right_val>0.7623608708381653</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 16 18 4 -1.</_>
-                <_>2 18 18 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.1655876711010933e-003</threshold>
-            <left_val>0.5393261909484863</left_val>
-            <right_val>0.4191643893718720</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 15 2 4 -1.</_>
-                <_>7 17 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8280550981871784e-004</threshold>
-            <left_val>0.4240800142288208</left_val>
-            <right_val>0.5399821996688843</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 0 14 3 -1.</_>
-                <_>4 1 14 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.7186630759388208e-003</threshold>
-            <left_val>0.4244599938392639</left_val>
-            <right_val>0.5424923896789551</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 4 20 -1.</_>
-                <_>2 0 2 20 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0125072300434113</threshold>
-            <left_val>0.5895841717720032</left_val>
-            <right_val>0.4550411105155945</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 4 4 8 -1.</_>
-                <_>14 4 2 4 2.</_>
-                <_>12 8 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0242865197360516</threshold>
-            <left_val>0.2647134959697723</left_val>
-            <right_val>0.5189179778099060</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- 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>-2.9676330741494894e-003</threshold>
-            <left_val>0.7347682714462280</left_val>
-            <right_val>0.4749749898910523</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 6 2 3 -1.</_>
-                <_>10 7 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0125289997085929</threshold>
-            <left_val>0.2756049931049347</left_val>
-            <right_val>0.5177599787712097</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 2 -1.</_>
-                <_>8 8 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0104000102728605e-003</threshold>
-            <left_val>0.3510560989379883</left_val>
-            <right_val>0.5144724249839783</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 2 6 12 -1.</_>
-                <_>8 8 6 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1348530426621437e-003</threshold>
-            <left_val>0.5637925863265991</left_val>
-            <right_val>0.4667319953441620</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 0 11 12 -1.</_>
-                <_>4 4 11 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0195642597973347</threshold>
-            <left_val>0.4614573121070862</left_val>
-            <right_val>0.6137639880180359</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 9 6 11 -1.</_>
-                <_>16 9 2 11 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0971463471651077</threshold>
-            <left_val>0.2998378872871399</left_val>
-            <right_val>0.5193555951118469</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 14 4 3 -1.</_>
-                <_>0 15 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5014568604528904e-003</threshold>
-            <left_val>0.5077884793281555</left_val>
-            <right_val>0.3045755922794342</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 10 2 3 -1.</_>
-                <_>9 11 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.3706971704959869e-003</threshold>
-            <left_val>0.4861018955707550</left_val>
-            <right_val>0.6887500882148743</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 11 3 2 -1.</_>
-                <_>5 12 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.0721528977155685e-003</threshold>
-            <left_val>0.1673395931720734</left_val>
-            <right_val>0.5017563104629517</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 15 3 3 -1.</_>
-                <_>10 15 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3537208586931229e-003</threshold>
-            <left_val>0.2692756950855255</left_val>
-            <right_val>0.5242633223533630</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 8 3 4 -1.</_>
-                <_>9 8 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0109328404068947</threshold>
-            <left_val>0.7183864116668701</left_val>
-            <right_val>0.4736028909683228</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 15 3 3 -1.</_>
-                <_>10 15 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.2356072962284088e-003</threshold>
-            <left_val>0.5223966836929321</left_val>
-            <right_val>0.2389862984418869</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 7 3 2 -1.</_>
-                <_>8 7 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0038160253316164e-003</threshold>
-            <left_val>0.5719355940818787</left_val>
-            <right_val>0.4433943033218384</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 10 16 4 -1.</_>
-                <_>10 10 8 2 2.</_>
-                <_>2 12 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.0859128348529339e-003</threshold>
-            <left_val>0.5472841858863831</left_val>
-            <right_val>0.4148836135864258</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 3 4 17 -1.</_>
-                <_>4 3 2 17 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1548541933298111</threshold>
-            <left_val>0.4973812103271484</left_val>
-            <right_val>0.0610615983605385</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 13 2 7 -1.</_>
-                <_>15 13 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0897459762636572e-004</threshold>
-            <left_val>0.4709174036979675</left_val>
-            <right_val>0.5423889160156250</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 2 6 1 -1.</_>
-                <_>5 2 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3316991175524890e-004</threshold>
-            <left_val>0.4089626967906952</left_val>
-            <right_val>0.5300992131233215</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 2 12 4 -1.</_>
-                <_>9 2 4 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0108134001493454</threshold>
-            <left_val>0.6104369759559631</left_val>
-            <right_val>0.4957334101200104</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 0 8 12 -1.</_>
-                <_>6 0 4 6 2.</_>
-                <_>10 6 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0456560105085373</threshold>
-            <left_val>0.5069689154624939</left_val>
-            <right_val>0.2866660058498383</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 7 2 2 -1.</_>
-                <_>14 7 1 1 2.</_>
-                <_>13 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2569549726322293e-003</threshold>
-            <left_val>0.4846917092800140</left_val>
-            <right_val>0.6318171024322510</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 12 20 6 -1.</_>
-                <_>0 14 20 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1201507002115250</threshold>
-            <left_val>0.0605261400341988</left_val>
-            <right_val>0.4980959892272949</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 7 2 3 -1.</_>
-                <_>14 7 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0533799650147557e-004</threshold>
-            <left_val>0.5363109707832336</left_val>
-            <right_val>0.4708042144775391</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 8 9 12 -1.</_>
-                <_>3 8 3 12 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2070319056510925</threshold>
-            <left_val>0.0596603304147720</left_val>
-            <right_val>0.4979098141193390</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 0 16 2 -1.</_>
-                <_>3 0 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2909180077258497e-004</threshold>
-            <left_val>0.4712977111339569</left_val>
-            <right_val>0.5377997756004334</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 15 3 3 -1.</_>
-                <_>6 16 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.8818528992123902e-004</threshold>
-            <left_val>0.4363538026809692</left_val>
-            <right_val>0.5534191131591797</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 15 6 3 -1.</_>
-                <_>8 16 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9243610333651304e-003</threshold>
-            <left_val>0.5811185836791992</left_val>
-            <right_val>0.4825215935707092</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 10 1 6 -1.</_>
-                <_>0 12 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.3882332546636462e-004</threshold>
-            <left_val>0.5311700105667114</left_val>
-            <right_val>0.4038138985633850</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 9 4 3 -1.</_>
-                <_>10 10 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.9061550265178084e-003</threshold>
-            <left_val>0.3770701885223389</left_val>
-            <right_val>0.5260015130043030</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 15 2 3 -1.</_>
-                <_>9 16 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.9514348655939102e-003</threshold>
-            <left_val>0.4766167998313904</left_val>
-            <right_val>0.7682183980941773</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 10 1 -1.</_>
-                <_>5 7 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0130834598094225</threshold>
-            <left_val>0.5264462828636169</left_val>
-            <right_val>0.3062222003936768</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 0 12 19 -1.</_>
-                <_>10 0 6 19 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2115933001041412</threshold>
-            <left_val>0.6737198233604431</left_val>
-            <right_val>0.4695810079574585</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 6 20 6 -1.</_>
-                <_>10 6 10 3 2.</_>
-                <_>0 9 10 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1493250280618668e-003</threshold>
-            <left_val>0.5644835233688355</left_val>
-            <right_val>0.4386953115463257</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 6 2 2 -1.</_>
-                <_>3 6 1 1 2.</_>
-                <_>4 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.9754100725986063e-004</threshold>
-            <left_val>0.4526061117649078</left_val>
-            <right_val>0.5895630121231079</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 6 2 2 -1.</_>
-                <_>16 6 1 1 2.</_>
-                <_>15 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.3814480043947697e-003</threshold>
-            <left_val>0.6070582270622253</left_val>
-            <right_val>0.4942413866519928</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 6 2 2 -1.</_>
-                <_>3 6 1 1 2.</_>
-                <_>4 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.8122188784182072e-004</threshold>
-            <left_val>0.5998213291168213</left_val>
-            <right_val>0.4508252143859863</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 4 1 12 -1.</_>
-                <_>14 10 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3905329871922731e-003</threshold>
-            <left_val>0.4205588996410370</left_val>
-            <right_val>0.5223848223686218</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 5 16 10 -1.</_>
-                <_>2 5 8 5 2.</_>
-                <_>10 10 8 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0272689294070005</threshold>
-            <left_val>0.5206447243690491</left_val>
-            <right_val>0.3563301861286163</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 17 3 2 -1.</_>
-                <_>10 17 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.7658358924090862e-003</threshold>
-            <left_val>0.3144704103469849</left_val>
-            <right_val>0.5218814015388489</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 4 2 2 -1.</_>
-                <_>1 5 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4903489500284195e-003</threshold>
-            <left_val>0.3380196094512940</left_val>
-            <right_val>0.5124437212944031</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 0 15 5 -1.</_>
-                <_>10 0 5 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0174282304942608</threshold>
-            <left_val>0.5829960703849793</left_val>
-            <right_val>0.4919725954532623</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 15 5 -1.</_>
-                <_>5 0 5 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0152780301868916</threshold>
-            <left_val>0.6163144707679749</left_val>
-            <right_val>0.4617887139320374</right_val></_></_>
-        <_>
-          <!-- tree 135 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 2 2 17 -1.</_>
-                <_>11 2 1 17 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0319956094026566</threshold>
-            <left_val>0.5166357159614563</left_val>
-            <right_val>0.1712764054536820</right_val></_></_>
-        <_>
-          <!-- tree 136 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 2 2 17 -1.</_>
-                <_>8 2 1 17 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.8256710395216942e-003</threshold>
-            <left_val>0.3408012092113495</left_val>
-            <right_val>0.5131387710571289</right_val></_></_>
-        <_>
-          <!-- tree 137 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 11 2 9 -1.</_>
-                <_>15 11 1 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.5186436772346497e-003</threshold>
-            <left_val>0.6105518937110901</left_val>
-            <right_val>0.4997941851615906</right_val></_></_>
-        <_>
-          <!-- tree 138 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 11 2 9 -1.</_>
-                <_>4 11 1 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.0641621500253677e-004</threshold>
-            <left_val>0.4327270984649658</left_val>
-            <right_val>0.5582311153411865</right_val></_></_>
-        <_>
-          <!-- tree 139 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 16 14 4 -1.</_>
-                <_>5 16 7 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0103448498994112</threshold>
-            <left_val>0.4855653047561646</left_val>
-            <right_val>0.5452420115470886</right_val></_></_></trees>
-      <stage_threshold>69.2298736572265630</stage_threshold>
-      <parent>15</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 17 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 4 18 1 -1.</_>
-                <_>7 4 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.8981826081871986e-003</threshold>
-            <left_val>0.3332524895668030</left_val>
-            <right_val>0.5946462154388428</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 7 6 4 -1.</_>
-                <_>16 7 3 2 2.</_>
-                <_>13 9 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6170160379260778e-003</threshold>
-            <left_val>0.3490641117095947</left_val>
-            <right_val>0.5577868819236755</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 8 2 12 -1.</_>
-                <_>9 12 2 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.5449741194024682e-004</threshold>
-            <left_val>0.5542566180229187</left_val>
-            <right_val>0.3291530013084412</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 1 6 6 -1.</_>
-                <_>12 3 6 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5428980113938451e-003</threshold>
-            <left_val>0.3612579107284546</left_val>
-            <right_val>0.5545979142189026</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 2 6 6 -1.</_>
-                <_>5 2 3 3 2.</_>
-                <_>8 5 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0329450014978647e-003</threshold>
-            <left_val>0.3530139029026032</left_val>
-            <right_val>0.5576140284538269</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 16 6 4 -1.</_>
-                <_>12 16 3 2 2.</_>
-                <_>9 18 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.7698158565908670e-004</threshold>
-            <left_val>0.3916778862476349</left_val>
-            <right_val>0.5645321011543274</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 2 18 3 -1.</_>
-                <_>7 2 6 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1432030051946640</threshold>
-            <left_val>0.4667482078075409</left_val>
-            <right_val>0.7023633122444153</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 4 9 10 -1.</_>
-                <_>7 9 9 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.3866490274667740e-003</threshold>
-            <left_val>0.3073684871196747</left_val>
-            <right_val>0.5289257764816284</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 9 4 4 -1.</_>
-                <_>7 9 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.2936742324382067e-004</threshold>
-            <left_val>0.5622118115425110</left_val>
-            <right_val>0.4037049114704132</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 10 3 6 -1.</_>
-                <_>11 13 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.8893528552725911e-004</threshold>
-            <left_val>0.5267661213874817</left_val>
-            <right_val>0.3557874858379364</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 11 5 3 -1.</_>
-                <_>7 12 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0122280502691865</threshold>
-            <left_val>0.6668320894241333</left_val>
-            <right_val>0.4625549912452698</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 11 6 6 -1.</_>
-                <_>10 11 3 3 2.</_>
-                <_>7 14 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.5420239437371492e-003</threshold>
-            <left_val>0.5521438121795654</left_val>
-            <right_val>0.3869673013687134</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 10 9 -1.</_>
-                <_>0 3 10 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0585320414975286e-003</threshold>
-            <left_val>0.3628678023815155</left_val>
-            <right_val>0.5320926904678345</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 14 1 6 -1.</_>
-                <_>13 16 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4935660146875307e-005</threshold>
-            <left_val>0.4632444977760315</left_val>
-            <right_val>0.5363323092460632</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 3 6 -1.</_>
-                <_>0 4 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.2537708543241024e-003</threshold>
-            <left_val>0.5132231712341309</left_val>
-            <right_val>0.3265708982944489</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 4 3 -1.</_>
-                <_>8 15 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.2338023930788040e-003</threshold>
-            <left_val>0.6693689823150635</left_val>
-            <right_val>0.4774140119552612</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 14 1 6 -1.</_>
-                <_>6 16 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1866810129722580e-005</threshold>
-            <left_val>0.4053862094879150</left_val>
-            <right_val>0.5457931160926819</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 15 2 3 -1.</_>
-                <_>9 16 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.8150229956954718e-003</threshold>
-            <left_val>0.6454995870590210</left_val>
-            <right_val>0.4793178141117096</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 4 3 3 -1.</_>
-                <_>7 4 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1105879675596952e-003</threshold>
-            <left_val>0.5270407199859619</left_val>
-            <right_val>0.3529678881168366</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 0 11 3 -1.</_>
-                <_>9 1 11 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.7707689702510834e-003</threshold>
-            <left_val>0.3803547024726868</left_val>
-            <right_val>0.5352957844734192</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 6 20 3 -1.</_>
-                <_>0 7 20 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.0158339068293571e-003</threshold>
-            <left_val>0.5339403152465820</left_val>
-            <right_val>0.3887133002281189</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 1 1 2 -1.</_>
-                <_>10 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.5453689098358154e-004</threshold>
-            <left_val>0.3564616143703461</left_val>
-            <right_val>0.5273603796958923</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 6 2 6 -1.</_>
-                <_>10 6 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0110505102202296</threshold>
-            <left_val>0.4671907126903534</left_val>
-            <right_val>0.6849737763404846</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 8 12 1 -1.</_>
-                <_>9 8 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0426058396697044</threshold>
-            <left_val>0.5151473283767700</left_val>
-            <right_val>0.0702200904488564</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 8 12 1 -1.</_>
-                <_>7 8 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.0781750101596117e-003</threshold>
-            <left_val>0.3041661083698273</left_val>
-            <right_val>0.5152602195739746</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 3 5 -1.</_>
-                <_>10 7 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.4815728217363358e-003</threshold>
-            <left_val>0.6430295705795288</left_val>
-            <right_val>0.4897229969501495</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 9 6 2 -1.</_>
-                <_>6 9 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1881860923022032e-003</threshold>
-            <left_val>0.5307493209838867</left_val>
-            <right_val>0.3826209902763367</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 9 3 3 -1.</_>
-                <_>12 10 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.5947180003859103e-004</threshold>
-            <left_val>0.4650047123432159</left_val>
-            <right_val>0.5421904921531677</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 0 6 1 -1.</_>
-                <_>9 0 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.0705031715333462e-003</threshold>
-            <left_val>0.2849679887294769</left_val>
-            <right_val>0.5079116225242615</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 9 3 3 -1.</_>
-                <_>12 10 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0145941702648997</threshold>
-            <left_val>0.2971645891666412</left_val>
-            <right_val>0.5128461718559265</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 10 2 1 -1.</_>
-                <_>8 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1947689927183092e-004</threshold>
-            <left_val>0.5631098151206970</left_val>
-            <right_val>0.4343082010746002</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 4 9 13 -1.</_>
-                <_>9 4 3 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.9344649091362953e-004</threshold>
-            <left_val>0.4403578042984009</left_val>
-            <right_val>0.5359959006309509</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 8 4 2 -1.</_>
-                <_>6 9 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4834799912932795e-005</threshold>
-            <left_val>0.3421008884906769</left_val>
-            <right_val>0.5164697766304016</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 2 4 6 -1.</_>
-                <_>16 2 2 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.0296985581517220e-003</threshold>
-            <left_val>0.4639343023300171</left_val>
-            <right_val>0.6114075183868408</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 17 6 3 -1.</_>
-                <_>0 18 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.0640818923711777e-003</threshold>
-            <left_val>0.2820158898830414</left_val>
-            <right_val>0.5075494050979614</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 10 3 10 -1.</_>
-                <_>10 15 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0260621197521687</threshold>
-            <left_val>0.5208905935287476</left_val>
-            <right_val>0.2688778042793274</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 5 -1.</_>
-                <_>9 7 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0173146594315767</threshold>
-            <left_val>0.4663713872432709</left_val>
-            <right_val>0.6738539934158325</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 4 4 3 -1.</_>
-                <_>10 4 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0226666405797005</threshold>
-            <left_val>0.5209349989891052</left_val>
-            <right_val>0.2212723940610886</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 4 3 8 -1.</_>
-                <_>9 4 1 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1965929772704840e-003</threshold>
-            <left_val>0.6063101291656494</left_val>
-            <right_val>0.4538190066814423</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 9 13 -1.</_>
-                <_>9 6 3 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.5282476395368576e-003</threshold>
-            <left_val>0.4635204970836639</left_val>
-            <right_val>0.5247430801391602</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 0 8 12 -1.</_>
-                <_>6 0 4 6 2.</_>
-                <_>10 6 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.0943619832396507e-003</threshold>
-            <left_val>0.5289440155029297</left_val>
-            <right_val>0.3913882076740265</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 2 6 8 -1.</_>
-                <_>16 2 2 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0728773325681686</threshold>
-            <left_val>0.7752001881599426</left_val>
-            <right_val>0.4990234971046448</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 0 3 6 -1.</_>
-                <_>7 0 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.9009521976113319e-003</threshold>
-            <left_val>0.2428039014339447</left_val>
-            <right_val>0.5048090219497681</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 2 6 8 -1.</_>
-                <_>16 2 2 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0113082397729158</threshold>
-            <left_val>0.5734364986419678</left_val>
-            <right_val>0.4842376112937927</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 5 6 6 -1.</_>
-                <_>0 8 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0596132017672062</threshold>
-            <left_val>0.5029836297035217</left_val>
-            <right_val>0.2524977028369904</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 6 2 -1.</_>
-                <_>12 12 3 1 2.</_>
-                <_>9 13 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.8624620754271746e-003</threshold>
-            <left_val>0.6073045134544373</left_val>
-            <right_val>0.4898459911346436</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 17 3 2 -1.</_>
-                <_>9 17 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.4781449250876904e-003</threshold>
-            <left_val>0.5015289187431335</left_val>
-            <right_val>0.2220316976308823</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 6 2 2 -1.</_>
-                <_>12 6 1 1 2.</_>
-                <_>11 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7513240454718471e-003</threshold>
-            <left_val>0.6614428758621216</left_val>
-            <right_val>0.4933868944644928</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 9 18 2 -1.</_>
-                <_>7 9 6 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0401634201407433</threshold>
-            <left_val>0.5180878043174744</left_val>
-            <right_val>0.3741044998168945</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 6 2 2 -1.</_>
-                <_>12 6 1 1 2.</_>
-                <_>11 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4768949262797832e-004</threshold>
-            <left_val>0.4720416963100433</left_val>
-            <right_val>0.5818032026290894</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 4 12 8 -1.</_>
-                <_>7 4 4 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6551650371402502e-003</threshold>
-            <left_val>0.3805010914802551</left_val>
-            <right_val>0.5221335887908936</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 11 5 3 -1.</_>
-                <_>13 12 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.7706279009580612e-003</threshold>
-            <left_val>0.2944166064262390</left_val>
-            <right_val>0.5231295228004456</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 10 2 3 -1.</_>
-                <_>9 11 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.5122091434895992e-003</threshold>
-            <left_val>0.7346177101135254</left_val>
-            <right_val>0.4722816944122315</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 7 2 3 -1.</_>
-                <_>14 7 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.8672042107209563e-004</threshold>
-            <left_val>0.5452876091003418</left_val>
-            <right_val>0.4242413043975830</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 1 3 -1.</_>
-                <_>5 5 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.6019669864326715e-004</threshold>
-            <left_val>0.4398862123489380</left_val>
-            <right_val>0.5601285099983215</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 4 2 3 -1.</_>
-                <_>13 5 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4143769405782223e-003</threshold>
-            <left_val>0.4741686880588532</left_val>
-            <right_val>0.6136621832847595</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 2 3 -1.</_>
-                <_>5 5 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5680900542065501e-003</threshold>
-            <left_val>0.6044552922248840</left_val>
-            <right_val>0.4516409933567047</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 8 2 3 -1.</_>
-                <_>9 9 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.6827491130679846e-003</threshold>
-            <left_val>0.2452459037303925</left_val>
-            <right_val>0.5294982194900513</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 9 2 2 -1.</_>
-                <_>8 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9409190756268799e-004</threshold>
-            <left_val>0.3732838034629822</left_val>
-            <right_val>0.5251451134681702</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 14 1 4 -1.</_>
-                <_>15 16 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.2847759323194623e-004</threshold>
-            <left_val>0.5498809814453125</left_val>
-            <right_val>0.4065535068511963</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 12 2 2 -1.</_>
-                <_>3 13 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.8817070201039314e-003</threshold>
-            <left_val>0.2139908969402313</left_val>
-            <right_val>0.4999957084655762</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 15 2 2 -1.</_>
-                <_>13 15 1 1 2.</_>
-                <_>12 16 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7272020815871656e-004</threshold>
-            <left_val>0.4650287032127380</left_val>
-            <right_val>0.5813428759574890</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 13 2 2 -1.</_>
-                <_>9 14 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0947199664078653e-004</threshold>
-            <left_val>0.4387486875057221</left_val>
-            <right_val>0.5572792887687683</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 11 14 9 -1.</_>
-                <_>4 14 14 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0485011897981167</threshold>
-            <left_val>0.5244972705841065</left_val>
-            <right_val>0.3212889134883881</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 13 4 3 -1.</_>
-                <_>7 14 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.5166411437094212e-003</threshold>
-            <left_val>0.6056813001632690</left_val>
-            <right_val>0.4545882046222687</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 14 1 4 -1.</_>
-                <_>15 16 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0122916800901294</threshold>
-            <left_val>0.2040929049253464</left_val>
-            <right_val>0.5152214169502258</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 14 1 4 -1.</_>
-                <_>4 16 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8549679922871292e-004</threshold>
-            <left_val>0.5237604975700378</left_val>
-            <right_val>0.3739503026008606</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 0 6 13 -1.</_>
-                <_>16 0 2 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0305560491979122</threshold>
-            <left_val>0.4960533976554871</left_val>
-            <right_val>0.5938246250152588</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 1 2 12 -1.</_>
-                <_>4 1 1 6 2.</_>
-                <_>5 7 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5105320198927075e-004</threshold>
-            <left_val>0.5351303815841675</left_val>
-            <right_val>0.4145204126834869</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 14 6 6 -1.</_>
-                <_>14 14 3 3 2.</_>
-                <_>11 17 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4937440175563097e-003</threshold>
-            <left_val>0.4693366885185242</left_val>
-            <right_val>0.5514941215515137</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 14 6 6 -1.</_>
-                <_>3 14 3 3 2.</_>
-                <_>6 17 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0123821301385760</threshold>
-            <left_val>0.6791396737098694</left_val>
-            <right_val>0.4681667983531952</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 17 3 2 -1.</_>
-                <_>14 18 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1333461888134480e-003</threshold>
-            <left_val>0.3608739078044891</left_val>
-            <right_val>0.5229160189628601</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 17 3 2 -1.</_>
-                <_>3 18 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1919277757406235e-004</threshold>
-            <left_val>0.5300073027610779</left_val>
-            <right_val>0.3633613884449005</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 0 6 13 -1.</_>
-                <_>16 0 2 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1506042033433914</threshold>
-            <left_val>0.5157316923141480</left_val>
-            <right_val>0.2211782038211823</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 6 13 -1.</_>
-                <_>2 0 2 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.7144149690866470e-003</threshold>
-            <left_val>0.4410496950149536</left_val>
-            <right_val>0.5776609182357788</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 10 7 6 -1.</_>
-                <_>10 12 7 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.4443522393703461e-003</threshold>
-            <left_val>0.5401855111122131</left_val>
-            <right_val>0.3756650090217590</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- 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>2.5006249779835343e-004</threshold>
-            <left_val>0.4368270933628082</left_val>
-            <right_val>0.5607374906539917</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 11 8 6 -1.</_>
-                <_>10 11 4 3 2.</_>
-                <_>6 14 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.3077150583267212e-003</threshold>
-            <left_val>0.4244799017906189</left_val>
-            <right_val>0.5518230795860291</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 6 2 2 -1.</_>
-                <_>7 6 1 1 2.</_>
-                <_>8 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.4048910755664110e-004</threshold>
-            <left_val>0.4496962130069733</left_val>
-            <right_val>0.5900576710700989</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 2 16 6 -1.</_>
-                <_>10 2 8 3 2.</_>
-                <_>2 5 8 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0440920516848564</threshold>
-            <left_val>0.5293493270874023</left_val>
-            <right_val>0.3156355023384094</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 3 3 -1.</_>
-                <_>5 5 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3639909233897924e-003</threshold>
-            <left_val>0.4483296871185303</left_val>
-            <right_val>0.5848662257194519</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 7 3 10 -1.</_>
-                <_>11 12 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.9760079234838486e-003</threshold>
-            <left_val>0.4559507071971893</left_val>
-            <right_val>0.5483639240264893</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 7 3 10 -1.</_>
-                <_>6 12 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7716930489987135e-003</threshold>
-            <left_val>0.5341786146163940</left_val>
-            <right_val>0.3792484104633331</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 7 3 2 -1.</_>
-                <_>11 7 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4123019829858094e-004</threshold>
-            <left_val>0.5667188763618469</left_val>
-            <right_val>0.4576973021030426</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 4 2 -1.</_>
-                <_>8 13 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.9425667384639382e-004</threshold>
-            <left_val>0.4421244859695435</left_val>
-            <right_val>0.5628787279129028</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 1 1 3 -1.</_>
-                <_>10 2 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.8876468897797167e-004</threshold>
-            <left_val>0.4288370907306671</left_val>
-            <right_val>0.5391063094139099</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 2 4 18 -1.</_>
-                <_>1 2 2 9 2.</_>
-                <_>3 11 2 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0500488989055157</threshold>
-            <left_val>0.6899513006210327</left_val>
-            <right_val>0.4703742861747742</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 4 4 12 -1.</_>
-                <_>12 10 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0366354808211327</threshold>
-            <left_val>0.2217779010534287</left_val>
-            <right_val>0.5191826224327087</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 1 6 -1.</_>
-                <_>0 2 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4273579474538565e-003</threshold>
-            <left_val>0.5136224031448364</left_val>
-            <right_val>0.3497397899627686</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 11 2 3 -1.</_>
-                <_>9 12 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9558030180633068e-003</threshold>
-            <left_val>0.4826192855834961</left_val>
-            <right_val>0.6408380866050720</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 4 3 -1.</_>
-                <_>8 8 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7494610510766506e-003</threshold>
-            <left_val>0.3922835886478424</left_val>
-            <right_val>0.5272685289382935</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 7 3 2 -1.</_>
-                <_>11 7 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0139550799503922</threshold>
-            <left_val>0.5078201889991760</left_val>
-            <right_val>0.8416504859924316</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 7 3 2 -1.</_>
-                <_>8 7 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1896739781368524e-004</threshold>
-            <left_val>0.5520489811897278</left_val>
-            <right_val>0.4314234852790833</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 4 6 1 -1.</_>
-                <_>11 4 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5131309628486633e-003</threshold>
-            <left_val>0.3934605121612549</left_val>
-            <right_val>0.5382571220397949</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 2 3 -1.</_>
-                <_>9 7 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.3622800149023533e-003</threshold>
-            <left_val>0.7370628714561462</left_val>
-            <right_val>0.4736475944519043</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 7 8 6 -1.</_>
-                <_>16 7 4 3 2.</_>
-                <_>12 10 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0651605874300003</threshold>
-            <left_val>0.5159279704093933</left_val>
-            <right_val>0.3281595110893250</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 7 8 6 -1.</_>
-                <_>0 7 4 3 2.</_>
-                <_>4 10 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3567399475723505e-003</threshold>
-            <left_val>0.3672826886177063</left_val>
-            <right_val>0.5172886252403259</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 2 2 10 -1.</_>
-                <_>19 2 1 5 2.</_>
-                <_>18 7 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0151466596871614</threshold>
-            <left_val>0.5031493902206421</left_val>
-            <right_val>0.6687604188919067</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 6 4 -1.</_>
-                <_>3 2 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0228509604930878</threshold>
-            <left_val>0.6767519712448120</left_val>
-            <right_val>0.4709596931934357</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 4 6 1 -1.</_>
-                <_>11 4 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8867650330066681e-003</threshold>
-            <left_val>0.5257998108863831</left_val>
-            <right_val>0.4059878885746002</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 15 2 2 -1.</_>
-                <_>7 15 1 1 2.</_>
-                <_>8 16 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7619599821045995e-003</threshold>
-            <left_val>0.4696272909641266</left_val>
-            <right_val>0.6688278913497925</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 13 1 6 -1.</_>
-                <_>11 16 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2942519970238209e-003</threshold>
-            <left_val>0.4320712983608246</left_val>
-            <right_val>0.5344281792640686</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 13 1 6 -1.</_>
-                <_>8 16 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0109299495816231</threshold>
-            <left_val>0.4997706115245819</left_val>
-            <right_val>0.1637486070394516</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 3 2 1 -1.</_>
-                <_>14 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9958489903947338e-005</threshold>
-            <left_val>0.4282417893409729</left_val>
-            <right_val>0.5633224248886108</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 15 2 3 -1.</_>
-                <_>8 16 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.5884361974895000e-003</threshold>
-            <left_val>0.6772121191024780</left_val>
-            <right_val>0.4700526893138886</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 15 7 4 -1.</_>
-                <_>12 17 7 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2527779694646597e-003</threshold>
-            <left_val>0.5313397049903870</left_val>
-            <right_val>0.4536148905754089</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 14 12 3 -1.</_>
-                <_>4 15 12 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.0435739792883396e-003</threshold>
-            <left_val>0.5660061836242676</left_val>
-            <right_val>0.4413388967514038</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 3 3 2 -1.</_>
-                <_>11 3 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2523540062829852e-003</threshold>
-            <left_val>0.3731913864612579</left_val>
-            <right_val>0.5356451869010925</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 12 2 2 -1.</_>
-                <_>4 13 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9246719602961093e-004</threshold>
-            <left_val>0.5189986228942871</left_val>
-            <right_val>0.3738811016082764</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 11 4 6 -1.</_>
-                <_>10 14 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0385896712541580</threshold>
-            <left_val>0.2956373989582062</left_val>
-            <right_val>0.5188810825347900</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 13 2 2 -1.</_>
-                <_>7 13 1 1 2.</_>
-                <_>8 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5489870565943420e-004</threshold>
-            <left_val>0.4347135126590729</left_val>
-            <right_val>0.5509533286094666</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 11 14 4 -1.</_>
-                <_>11 11 7 2 2.</_>
-                <_>4 13 7 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0337638482451439</threshold>
-            <left_val>0.3230330049991608</left_val>
-            <right_val>0.5195475816726685</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 18 18 2 -1.</_>
-                <_>7 18 6 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.2657067105174065e-003</threshold>
-            <left_val>0.5975489020347595</left_val>
-            <right_val>0.4552114009857178</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 18 2 2 -1.</_>
-                <_>12 18 1 1 2.</_>
-                <_>11 19 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4481440302915871e-005</threshold>
-            <left_val>0.4745678007602692</left_val>
-            <right_val>0.5497426986694336</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 18 2 2 -1.</_>
-                <_>7 18 1 1 2.</_>
-                <_>8 19 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4951299817766994e-005</threshold>
-            <left_val>0.4324473142623901</left_val>
-            <right_val>0.5480644106864929</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 18 8 2 -1.</_>
-                <_>12 19 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0187417995184660</threshold>
-            <left_val>0.1580052971839905</left_val>
-            <right_val>0.5178533196449280</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 14 6 2 -1.</_>
-                <_>7 15 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7572239739820361e-003</threshold>
-            <left_val>0.4517636895179749</left_val>
-            <right_val>0.5773764252662659</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 4 8 -1.</_>
-                <_>10 12 2 4 2.</_>
-                <_>8 16 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.1391119118779898e-003</threshold>
-            <left_val>0.4149647951126099</left_val>
-            <right_val>0.5460842251777649</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 9 3 3 -1.</_>
-                <_>4 10 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.6656779381446540e-005</threshold>
-            <left_val>0.4039090871810913</left_val>
-            <right_val>0.5293084979057312</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 10 6 2 -1.</_>
-                <_>9 10 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.7743421532213688e-003</threshold>
-            <left_val>0.4767651855945587</left_val>
-            <right_val>0.6121956110000610</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 0 4 15 -1.</_>
-                <_>7 0 2 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.3868161998689175e-003</threshold>
-            <left_val>0.3586258888244629</left_val>
-            <right_val>0.5187280774116516</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 6 12 14 -1.</_>
-                <_>12 6 4 14 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0140409301966429</threshold>
-            <left_val>0.4712139964103699</left_val>
-            <right_val>0.5576155781745911</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 16 3 3 -1.</_>
-                <_>5 17 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.5258329957723618e-003</threshold>
-            <left_val>0.2661027014255524</left_val>
-            <right_val>0.5039281249046326</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 1 12 19 -1.</_>
-                <_>12 1 4 19 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3868423998355866</threshold>
-            <left_val>0.5144339799880981</left_val>
-            <right_val>0.2525899112224579</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 0 3 2 -1.</_>
-                <_>3 1 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1459240340627730e-004</threshold>
-            <left_val>0.4284994900226593</left_val>
-            <right_val>0.5423371195793152</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 12 4 5 -1.</_>
-                <_>10 12 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0184675697237253</threshold>
-            <left_val>0.3885835111141205</left_val>
-            <right_val>0.5213062167167664</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 12 4 5 -1.</_>
-                <_>8 12 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.5907011372037232e-004</threshold>
-            <left_val>0.5412563085556030</left_val>
-            <right_val>0.4235909879207611</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 11 2 2 -1.</_>
-                <_>12 11 1 1 2.</_>
-                <_>11 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2527540093287826e-003</threshold>
-            <left_val>0.4899305105209351</left_val>
-            <right_val>0.6624091267585754</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 3 6 -1.</_>
-                <_>0 4 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4910609461367130e-003</threshold>
-            <left_val>0.5286778211593628</left_val>
-            <right_val>0.4040051996707916</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 11 2 2 -1.</_>
-                <_>12 11 1 1 2.</_>
-                <_>11 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.5435562757775187e-004</threshold>
-            <left_val>0.6032990217208862</left_val>
-            <right_val>0.4795120060443878</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 6 4 10 -1.</_>
-                <_>7 11 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.9478838704526424e-003</threshold>
-            <left_val>0.4084401130676270</left_val>
-            <right_val>0.5373504161834717</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 11 2 2 -1.</_>
-                <_>12 11 1 1 2.</_>
-                <_>11 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.8092920547351241e-004</threshold>
-            <left_val>0.4846062958240509</left_val>
-            <right_val>0.5759382247924805</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 13 5 2 -1.</_>
-                <_>2 14 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.6073717577382922e-004</threshold>
-            <left_val>0.5164741277694702</left_val>
-            <right_val>0.3554979860782623</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 11 2 2 -1.</_>
-                <_>12 11 1 1 2.</_>
-                <_>11 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6883929967880249e-004</threshold>
-            <left_val>0.5677582025527954</left_val>
-            <right_val>0.4731765985488892</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 11 2 2 -1.</_>
-                <_>7 11 1 1 2.</_>
-                <_>8 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1599370520561934e-003</threshold>
-            <left_val>0.4731487035751343</left_val>
-            <right_val>0.7070567011833191</right_val></_></_>
-        <_>
-          <!-- tree 135 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 13 3 3 -1.</_>
-                <_>14 14 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.6235301308333874e-003</threshold>
-            <left_val>0.5240243077278137</left_val>
-            <right_val>0.2781791985034943</right_val></_></_>
-        <_>
-          <!-- tree 136 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 13 3 3 -1.</_>
-                <_>3 14 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.0243991427123547e-003</threshold>
-            <left_val>0.2837013900279999</left_val>
-            <right_val>0.5062304139137268</right_val></_></_>
-        <_>
-          <!-- tree 137 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 14 2 3 -1.</_>
-                <_>9 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.7611639648675919e-003</threshold>
-            <left_val>0.7400717735290527</left_val>
-            <right_val>0.4934569001197815</right_val></_></_>
-        <_>
-          <!-- tree 138 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 3 -1.</_>
-                <_>8 8 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.1515100747346878e-003</threshold>
-            <left_val>0.5119131207466126</left_val>
-            <right_val>0.3407008051872253</right_val></_></_>
-        <_>
-          <!-- tree 139 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 5 3 3 -1.</_>
-                <_>13 6 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.2465080991387367e-003</threshold>
-            <left_val>0.4923788011074066</left_val>
-            <right_val>0.6579058766365051</right_val></_></_>
-        <_>
-          <!-- tree 140 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 9 5 3 -1.</_>
-                <_>0 10 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.0597478188574314e-003</threshold>
-            <left_val>0.2434711009263992</left_val>
-            <right_val>0.5032842159271240</right_val></_></_>
-        <_>
-          <!-- tree 141 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 5 3 3 -1.</_>
-                <_>13 6 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.0587709732353687e-003</threshold>
-            <left_val>0.5900310873985291</left_val>
-            <right_val>0.4695087075233460</right_val></_></_>
-        <_>
-          <!-- tree 142 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 2 8 -1.</_>
-                <_>9 12 1 4 2.</_>
-                <_>10 16 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4146060459315777e-003</threshold>
-            <left_val>0.3647317886352539</left_val>
-            <right_val>0.5189201831817627</right_val></_></_>
-        <_>
-          <!-- tree 143 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 7 2 2 -1.</_>
-                <_>12 7 1 1 2.</_>
-                <_>11 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4817609917372465e-003</threshold>
-            <left_val>0.6034948229789734</left_val>
-            <right_val>0.4940128028392792</right_val></_></_>
-        <_>
-          <!-- tree 144 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 16 6 4 -1.</_>
-                <_>3 16 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3016400672495365e-003</threshold>
-            <left_val>0.5818989872932434</left_val>
-            <right_val>0.4560427963733673</right_val></_></_>
-        <_>
-          <!-- tree 145 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 6 2 3 -1.</_>
-                <_>10 7 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4763428848236799e-003</threshold>
-            <left_val>0.5217475891113281</left_val>
-            <right_val>0.3483993113040924</right_val></_></_>
-        <_>
-          <!-- tree 146 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 2 6 -1.</_>
-                <_>9 7 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0222508702427149</threshold>
-            <left_val>0.2360700070858002</left_val>
-            <right_val>0.5032082796096802</right_val></_></_>
-        <_>
-          <!-- tree 147 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 15 8 4 -1.</_>
-                <_>12 15 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0306125506758690</threshold>
-            <left_val>0.6499186754226685</left_val>
-            <right_val>0.4914919137954712</right_val></_></_>
-        <_>
-          <!-- tree 148 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 14 8 6 -1.</_>
-                <_>4 14 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0130574796348810</threshold>
-            <left_val>0.4413323104381561</left_val>
-            <right_val>0.5683764219284058</right_val></_></_>
-        <_>
-          <!-- tree 149 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 0 3 2 -1.</_>
-                <_>10 0 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.0095742810517550e-004</threshold>
-            <left_val>0.4359731078147888</left_val>
-            <right_val>0.5333483219146729</right_val></_></_>
-        <_>
-          <!-- tree 150 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 15 4 2 -1.</_>
-                <_>6 15 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.1514250915497541e-004</threshold>
-            <left_val>0.5504062771797180</left_val>
-            <right_val>0.4326060116291046</right_val></_></_>
-        <_>
-          <!-- tree 151 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 7 3 13 -1.</_>
-                <_>13 7 1 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0137762902304530</threshold>
-            <left_val>0.4064112901687622</left_val>
-            <right_val>0.5201548933982849</right_val></_></_>
-        <_>
-          <!-- tree 152 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 3 13 -1.</_>
-                <_>6 7 1 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0322965085506439</threshold>
-            <left_val>0.0473519712686539</left_val>
-            <right_val>0.4977194964885712</right_val></_></_>
-        <_>
-          <!-- tree 153 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 6 3 9 -1.</_>
-                <_>9 9 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0535569787025452</threshold>
-            <left_val>0.4881733059883118</left_val>
-            <right_val>0.6666939258575440</right_val></_></_>
-        <_>
-          <!-- tree 154 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 4 7 12 -1.</_>
-                <_>4 10 7 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.1889545544981956e-003</threshold>
-            <left_val>0.5400037169456482</left_val>
-            <right_val>0.4240820109844208</right_val></_></_>
-        <_>
-          <!-- tree 155 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 12 2 2 -1.</_>
-                <_>13 12 1 1 2.</_>
-                <_>12 13 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1055320394225419e-004</threshold>
-            <left_val>0.4802047908306122</left_val>
-            <right_val>0.5563852787017822</right_val></_></_>
-        <_>
-          <!-- tree 156 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 12 2 2 -1.</_>
-                <_>6 12 1 1 2.</_>
-                <_>7 13 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4382730480283499e-003</threshold>
-            <left_val>0.7387793064117432</left_val>
-            <right_val>0.4773685038089752</right_val></_></_>
-        <_>
-          <!-- tree 157 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 9 4 2 -1.</_>
-                <_>10 9 2 1 2.</_>
-                <_>8 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2835570164024830e-003</threshold>
-            <left_val>0.5288546085357666</left_val>
-            <right_val>0.3171291947364807</right_val></_></_>
-        <_>
-          <!-- tree 158 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 6 2 2 -1.</_>
-                <_>3 6 1 1 2.</_>
-                <_>4 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3729570675641298e-003</threshold>
-            <left_val>0.4750812947750092</left_val>
-            <right_val>0.7060170769691467</right_val></_></_>
-        <_>
-          <!-- tree 159 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 6 3 2 -1.</_>
-                <_>16 7 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4541699783876538e-003</threshold>
-            <left_val>0.3811730146408081</left_val>
-            <right_val>0.5330739021301270</right_val></_></_></trees>
-      <stage_threshold>79.2490768432617190</stage_threshold>
-      <parent>16</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 18 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 7 19 4 -1.</_>
-                <_>0 9 19 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0557552389800549</threshold>
-            <left_val>0.4019156992435455</left_val>
-            <right_val>0.6806036829948425</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 2 10 1 -1.</_>
-                <_>10 2 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4730248842388391e-003</threshold>
-            <left_val>0.3351148962974548</left_val>
-            <right_val>0.5965719819068909</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 4 2 12 -1.</_>
-                <_>9 10 2 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.5031698644161224e-004</threshold>
-            <left_val>0.5557708144187927</left_val>
-            <right_val>0.3482286930084229</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 18 4 1 -1.</_>
-                <_>12 18 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4167630150914192e-004</threshold>
-            <left_val>0.4260858893394470</left_val>
-            <right_val>0.5693380832672119</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 7 6 4 -1.</_>
-                <_>1 7 3 2 2.</_>
-                <_>4 9 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.7193678589537740e-004</threshold>
-            <left_val>0.3494240045547485</left_val>
-            <right_val>0.5433688759803772</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 0 6 13 -1.</_>
-                <_>14 0 2 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5999219613149762e-003</threshold>
-            <left_val>0.4028499126434326</left_val>
-            <right_val>0.5484359264373779</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 0 6 13 -1.</_>
-                <_>4 0 2 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1832080053864047e-004</threshold>
-            <left_val>0.3806901872158051</left_val>
-            <right_val>0.5425465106964111</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 5 8 8 -1.</_>
-                <_>10 9 8 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2909031142480671e-004</threshold>
-            <left_val>0.2620100080966950</left_val>
-            <right_val>0.5429521799087524</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 3 2 5 -1.</_>
-                <_>9 3 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9518108931370080e-004</threshold>
-            <left_val>0.3799768984317780</left_val>
-            <right_val>0.5399264097213745</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 4 9 1 -1.</_>
-                <_>11 4 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.0466710389591753e-005</threshold>
-            <left_val>0.4433645009994507</left_val>
-            <right_val>0.5440226197242737</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 4 9 1 -1.</_>
-                <_>6 4 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5007190086180344e-005</threshold>
-            <left_val>0.3719654977321625</left_val>
-            <right_val>0.5409119725227356</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 0 18 10 -1.</_>
-                <_>7 0 6 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1393561065196991</threshold>
-            <left_val>0.5525395870208740</left_val>
-            <right_val>0.4479042887687683</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 17 5 3 -1.</_>
-                <_>7 18 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6461990308016539e-003</threshold>
-            <left_val>0.4264501035213471</left_val>
-            <right_val>0.5772169828414917</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 11 6 1 -1.</_>
-                <_>9 11 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.9984431825578213e-004</threshold>
-            <left_val>0.4359526038169861</left_val>
-            <right_val>0.5685871243476868</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 2 3 2 -1.</_>
-                <_>2 3 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0971280280500650e-003</threshold>
-            <left_val>0.3390136957168579</left_val>
-            <right_val>0.5205408930778503</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 4 2 -1.</_>
-                <_>8 13 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.6919892560690641e-004</threshold>
-            <left_val>0.4557456076145172</left_val>
-            <right_val>0.5980659723281860</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 10 3 6 -1.</_>
-                <_>6 13 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.6471042595803738e-004</threshold>
-            <left_val>0.5134841203689575</left_val>
-            <right_val>0.2944033145904541</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 4 2 4 -1.</_>
-                <_>11 4 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.7182599296793342e-004</threshold>
-            <left_val>0.3906578123569489</left_val>
-            <right_val>0.5377181172370911</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 4 2 4 -1.</_>
-                <_>8 4 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.0249499104684219e-005</threshold>
-            <left_val>0.3679609894752502</left_val>
-            <right_val>0.5225688815116882</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 6 2 4 -1.</_>
-                <_>9 6 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.5225896909832954e-003</threshold>
-            <left_val>0.7293102145195007</left_val>
-            <right_val>0.4892365038394928</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 13 8 3 -1.</_>
-                <_>6 14 8 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6705560265108943e-003</threshold>
-            <left_val>0.4345324933528900</left_val>
-            <right_val>0.5696138143539429</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 15 3 4 -1.</_>
-                <_>10 15 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.1433838456869125e-003</threshold>
-            <left_val>0.2591280043125153</left_val>
-            <right_val>0.5225623846054077</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 2 2 17 -1.</_>
-                <_>10 2 1 17 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0163193698972464</threshold>
-            <left_val>0.6922279000282288</left_val>
-            <right_val>0.4651575982570648</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 0 6 1 -1.</_>
-                <_>9 0 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8034260980784893e-003</threshold>
-            <left_val>0.5352262854576111</left_val>
-            <right_val>0.3286302983760834</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 15 3 4 -1.</_>
-                <_>9 15 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.5421929359436035e-003</threshold>
-            <left_val>0.2040544003248215</left_val>
-            <right_val>0.5034546256065369</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 13 7 3 -1.</_>
-                <_>7 14 7 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0143631100654602</threshold>
-            <left_val>0.6804888844490051</left_val>
-            <right_val>0.4889059066772461</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 16 3 3 -1.</_>
-                <_>9 16 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.9063588529825211e-004</threshold>
-            <left_val>0.5310695767402649</left_val>
-            <right_val>0.3895480930805206</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 2 8 10 -1.</_>
-                <_>6 7 8 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.4060191139578819e-003</threshold>
-            <left_val>0.5741562843322754</left_val>
-            <right_val>0.4372426867485046</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 5 8 8 -1.</_>
-                <_>2 9 8 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8862540309783071e-004</threshold>
-            <left_val>0.2831785976886749</left_val>
-            <right_val>0.5098205208778381</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 16 2 2 -1.</_>
-                <_>14 17 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.7979281041771173e-003</threshold>
-            <left_val>0.3372507989406586</left_val>
-            <right_val>0.5246580243110657</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 16 2 2 -1.</_>
-                <_>4 17 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4627049677073956e-004</threshold>
-            <left_val>0.5306674242019653</left_val>
-            <right_val>0.3911710083484650</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 11 4 6 -1.</_>
-                <_>10 14 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.9164638767251745e-005</threshold>
-            <left_val>0.5462496280670166</left_val>
-            <right_val>0.3942720890045166</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 11 4 6 -1.</_>
-                <_>6 14 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0335825011134148</threshold>
-            <left_val>0.2157824039459229</left_val>
-            <right_val>0.5048211812973023</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 14 1 3 -1.</_>
-                <_>10 15 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.5339309833943844e-003</threshold>
-            <left_val>0.6465312242507935</left_val>
-            <right_val>0.4872696995735169</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 4 3 -1.</_>
-                <_>8 15 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0144111737608910e-003</threshold>
-            <left_val>0.4617668092250824</left_val>
-            <right_val>0.6248074769973755</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 0 4 6 -1.</_>
-                <_>12 0 2 3 2.</_>
-                <_>10 3 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0188173707574606</threshold>
-            <left_val>0.5220689177513123</left_val>
-            <right_val>0.2000052034854889</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 3 20 2 -1.</_>
-                <_>0 4 20 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.3434339780360460e-003</threshold>
-            <left_val>0.4014537930488586</left_val>
-            <right_val>0.5301619768142700</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 0 8 2 -1.</_>
-                <_>16 0 4 1 2.</_>
-                <_>12 1 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7557960236445069e-003</threshold>
-            <left_val>0.4794039130210877</left_val>
-            <right_val>0.5653169751167297</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 12 10 8 -1.</_>
-                <_>2 16 10 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0956374630331993</threshold>
-            <left_val>0.2034195065498352</left_val>
-            <right_val>0.5006706714630127</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 7 2 10 -1.</_>
-                <_>18 7 1 5 2.</_>
-                <_>17 12 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0222412291914225</threshold>
-            <left_val>0.7672473192214966</left_val>
-            <right_val>0.5046340227127075</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 7 2 10 -1.</_>
-                <_>1 7 1 5 2.</_>
-                <_>2 12 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0155758196488023</threshold>
-            <left_val>0.7490342259407044</left_val>
-            <right_val>0.4755851030349731</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 10 3 6 -1.</_>
-                <_>15 12 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.3599118255078793e-003</threshold>
-            <left_val>0.5365303754806519</left_val>
-            <right_val>0.4004670977592468</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 4 6 2 -1.</_>
-                <_>6 4 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0217634998261929</threshold>
-            <left_val>0.0740154981613159</left_val>
-            <right_val>0.4964174926280975</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 5 20 6 -1.</_>
-                <_>0 7 20 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1656159013509750</threshold>
-            <left_val>0.2859103083610535</left_val>
-            <right_val>0.5218086242675781</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 8 2 -1.</_>
-                <_>0 0 4 1 2.</_>
-                <_>4 1 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6461320046801120e-004</threshold>
-            <left_val>0.4191615879535675</left_val>
-            <right_val>0.5380793213844299</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 0 18 4 -1.</_>
-                <_>7 0 6 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.9077502489089966e-003</threshold>
-            <left_val>0.6273192763328552</left_val>
-            <right_val>0.4877404868602753</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 13 6 2 -1.</_>
-                <_>1 14 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.6346449097618461e-004</threshold>
-            <left_val>0.5159940719604492</left_val>
-            <right_val>0.3671025931835175</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 8 3 4 -1.</_>
-                <_>11 8 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.3751760125160217e-003</threshold>
-            <left_val>0.5884376764297485</left_val>
-            <right_val>0.4579083919525147</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 1 6 1 -1.</_>
-                <_>8 1 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4081239933148026e-003</threshold>
-            <left_val>0.3560509979724884</left_val>
-            <right_val>0.5139945149421692</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 4 3 -1.</_>
-                <_>8 15 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.9342888630926609e-003</threshold>
-            <left_val>0.5994288921356201</left_val>
-            <right_val>0.4664272069931030</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 6 18 2 -1.</_>
-                <_>10 6 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0319669283926487</threshold>
-            <left_val>0.3345462083816528</left_val>
-            <right_val>0.5144183039665222</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 11 1 2 -1.</_>
-                <_>15 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5089280168467667e-005</threshold>
-            <left_val>0.5582656264305115</left_val>
-            <right_val>0.4414057135581970</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 5 1 2 -1.</_>
-                <_>6 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1994470413774252e-004</threshold>
-            <left_val>0.4623680114746094</left_val>
-            <right_val>0.6168993711471558</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 4 1 3 -1.</_>
-                <_>13 5 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.4220460802316666e-003</threshold>
-            <left_val>0.6557074785232544</left_val>
-            <right_val>0.4974805116653442</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 15 1 2 -1.</_>
-                <_>2 16 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7723299970384687e-004</threshold>
-            <left_val>0.5269501805305481</left_val>
-            <right_val>0.3901908099651337</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 4 4 3 -1.</_>
-                <_>12 5 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5716759953647852e-003</threshold>
-            <left_val>0.4633373022079468</left_val>
-            <right_val>0.5790457725524902</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 7 3 -1.</_>
-                <_>0 1 7 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.9041329920291901e-003</threshold>
-            <left_val>0.2689608037471771</left_val>
-            <right_val>0.5053591132164002</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 6 2 -1.</_>
-                <_>9 12 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.0677518700249493e-004</threshold>
-            <left_val>0.5456603169441223</left_val>
-            <right_val>0.4329898953437805</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 2 3 -1.</_>
-                <_>5 5 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.7604780197143555e-003</threshold>
-            <left_val>0.4648993909358978</left_val>
-            <right_val>0.6689761877059937</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 4 2 3 -1.</_>
-                <_>18 5 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9100088868290186e-003</threshold>
-            <left_val>0.5309703946113586</left_val>
-            <right_val>0.3377839922904968</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 0 8 6 -1.</_>
-                <_>3 2 8 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3885459629818797e-003</threshold>
-            <left_val>0.4074738919734955</left_val>
-            <right_val>0.5349133014678955</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 20 6 -1.</_>
-                <_>10 2 10 3 2.</_>
-                <_>0 5 10 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0767642632126808</threshold>
-            <left_val>0.1992176026105881</left_val>
-            <right_val>0.5228242278099060</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 7 2 4 -1.</_>
-                <_>5 7 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2688310127705336e-004</threshold>
-            <left_val>0.5438501834869385</left_val>
-            <right_val>0.4253072142601013</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 10 15 2 -1.</_>
-                <_>8 10 5 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3094152137637138e-003</threshold>
-            <left_val>0.4259178936481476</left_val>
-            <right_val>0.5378909707069397</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 0 12 11 -1.</_>
-                <_>9 0 6 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1100727990269661</threshold>
-            <left_val>0.6904156804084778</left_val>
-            <right_val>0.4721749126911163</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 0 2 6 -1.</_>
-                <_>13 0 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.8619659133255482e-004</threshold>
-            <left_val>0.4524914920330048</left_val>
-            <right_val>0.5548306107521057</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 19 2 1 -1.</_>
-                <_>1 19 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9425329557852820e-005</threshold>
-            <left_val>0.5370373725891113</left_val>
-            <right_val>0.4236463904380798</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 10 4 10 -1.</_>
-                <_>18 10 2 5 2.</_>
-                <_>16 15 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0248865708708763</threshold>
-            <left_val>0.6423557996749878</left_val>
-            <right_val>0.4969303905963898</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 8 10 3 -1.</_>
-                <_>4 9 10 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0331488512456417</threshold>
-            <left_val>0.4988475143909454</left_val>
-            <right_val>0.1613811999559403</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 12 3 3 -1.</_>
-                <_>14 13 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.8491691965609789e-004</threshold>
-            <left_val>0.5416026115417481</left_val>
-            <right_val>0.4223009049892426</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 10 4 10 -1.</_>
-                <_>0 10 2 5 2.</_>
-                <_>2 15 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.7087189741432667e-003</threshold>
-            <left_val>0.4576328992843628</left_val>
-            <right_val>0.6027557849884033</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 3 2 6 -1.</_>
-                <_>18 5 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4144479539245367e-003</threshold>
-            <left_val>0.5308973193168640</left_val>
-            <right_val>0.4422498941421509</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 1 3 -1.</_>
-                <_>6 7 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9523180089890957e-003</threshold>
-            <left_val>0.4705634117126465</left_val>
-            <right_val>0.6663324832916260</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 7 7 2 -1.</_>
-                <_>7 8 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3031980488449335e-003</threshold>
-            <left_val>0.4406126141548157</left_val>
-            <right_val>0.5526962280273438</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 3 2 6 -1.</_>
-                <_>0 5 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.4735497795045376e-003</threshold>
-            <left_val>0.5129023790359497</left_val>
-            <right_val>0.3301498889923096</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 1 3 1 -1.</_>
-                <_>12 1 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6652868837118149e-003</threshold>
-            <left_val>0.3135471045970917</left_val>
-            <right_val>0.5175036191940308</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 0 2 6 -1.</_>
-                <_>6 0 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3666770246345550e-004</threshold>
-            <left_val>0.4119370877742767</left_val>
-            <right_val>0.5306876897811890</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 1 18 14 -1.</_>
-                <_>7 1 6 14 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0171264503151178</threshold>
-            <left_val>0.6177806258201599</left_val>
-            <right_val>0.4836578965187073</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 6 8 3 -1.</_>
-                <_>8 6 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6601430727168918e-004</threshold>
-            <left_val>0.3654330968856812</left_val>
-            <right_val>0.5169736742973328</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 6 2 -1.</_>
-                <_>9 12 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0229323804378510</threshold>
-            <left_val>0.3490915000438690</left_val>
-            <right_val>0.5163992047309876</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 12 6 2 -1.</_>
-                <_>8 12 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3316550068557262e-003</threshold>
-            <left_val>0.5166299939155579</left_val>
-            <right_val>0.3709389865398407</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 7 3 5 -1.</_>
-                <_>11 7 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0169256608933210</threshold>
-            <left_val>0.5014736056327820</left_val>
-            <right_val>0.8053988218307495</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 7 3 5 -1.</_>
-                <_>8 7 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.9858826249837875e-003</threshold>
-            <left_val>0.6470788717269898</left_val>
-            <right_val>0.4657020866870880</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 0 3 10 -1.</_>
-                <_>14 0 1 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0118746999651194</threshold>
-            <left_val>0.3246378898620606</left_val>
-            <right_val>0.5258755087852478</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 11 3 2 -1.</_>
-                <_>4 12 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9350569345988333e-004</threshold>
-            <left_val>0.5191941857337952</left_val>
-            <right_val>0.3839643895626068</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 3 3 6 -1.</_>
-                <_>18 3 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.8713490143418312e-003</threshold>
-            <left_val>0.4918133914470673</left_val>
-            <right_val>0.6187043190002441</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 8 18 10 -1.</_>
-                <_>1 13 18 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2483879029750824</threshold>
-            <left_val>0.1836802959442139</left_val>
-            <right_val>0.4988150000572205</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 0 3 10 -1.</_>
-                <_>14 0 1 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0122560001909733</threshold>
-            <left_val>0.5227053761482239</left_val>
-            <right_val>0.3632029891014099</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 14 2 3 -1.</_>
-                <_>9 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.3990179700776935e-004</threshold>
-            <left_val>0.4490250051021576</left_val>
-            <right_val>0.5774148106575012</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 3 3 7 -1.</_>
-                <_>17 3 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5407369248569012e-003</threshold>
-            <left_val>0.4804787039756775</left_val>
-            <right_val>0.5858299136161804</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 0 3 10 -1.</_>
-                <_>5 0 1 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0148224299773574</threshold>
-            <left_val>0.2521049976348877</left_val>
-            <right_val>0.5023537278175354</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 3 3 7 -1.</_>
-                <_>17 3 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.7973959483206272e-003</threshold>
-            <left_val>0.5996695756912231</left_val>
-            <right_val>0.4853715002536774</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 9 1 2 -1.</_>
-                <_>0 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.2662148158997297e-004</threshold>
-            <left_val>0.5153716802597046</left_val>
-            <right_val>0.3671779930591583</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 1 2 10 -1.</_>
-                <_>18 1 1 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0172325801104307</threshold>
-            <left_val>0.6621719002723694</left_val>
-            <right_val>0.4994656145572662</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 1 2 10 -1.</_>
-                <_>1 1 1 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.8624086454510689e-003</threshold>
-            <left_val>0.4633395075798035</left_val>
-            <right_val>0.6256101727485657</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 16 3 4 -1.</_>
-                <_>11 16 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.7343620099127293e-003</threshold>
-            <left_val>0.3615573048591614</left_val>
-            <right_val>0.5281885266304016</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 8 3 3 -1.</_>
-                <_>3 8 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.3048478700220585e-004</threshold>
-            <left_val>0.4442889094352722</left_val>
-            <right_val>0.5550957918167114</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 0 2 6 -1.</_>
-                <_>12 0 1 3 2.</_>
-                <_>11 3 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.6602199114859104e-003</threshold>
-            <left_val>0.5162935256958008</left_val>
-            <right_val>0.2613354921340942</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 0 2 6 -1.</_>
-                <_>7 0 1 3 2.</_>
-                <_>8 3 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.1048377752304077e-003</threshold>
-            <left_val>0.2789632081985474</left_val>
-            <right_val>0.5019031763076782</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 3 3 7 -1.</_>
-                <_>17 3 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8512578941881657e-003</threshold>
-            <left_val>0.4968984127044678</left_val>
-            <right_val>0.5661668181419373</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 3 3 7 -1.</_>
-                <_>2 3 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.9896453320980072e-004</threshold>
-            <left_val>0.4445607960224152</left_val>
-            <right_val>0.5551813244819641</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 1 6 16 -1.</_>
-                <_>16 1 2 16 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2702363133430481</threshold>
-            <left_val>0.0293882098048925</left_val>
-            <right_val>0.5151314139366150</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 1 6 16 -1.</_>
-                <_>2 1 2 16 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0130906803533435</threshold>
-            <left_val>0.5699399709701538</left_val>
-            <right_val>0.4447459876537323</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 0 16 8 -1.</_>
-                <_>10 0 8 4 2.</_>
-                <_>2 4 8 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.4342790544033051e-003</threshold>
-            <left_val>0.4305466115474701</left_val>
-            <right_val>0.5487895011901856</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 8 5 3 -1.</_>
-                <_>6 9 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5482039889320731e-003</threshold>
-            <left_val>0.3680317103862763</left_val>
-            <right_val>0.5128080844879150</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 3 3 -1.</_>
-                <_>10 7 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.3746132180094719e-003</threshold>
-            <left_val>0.4838916957378388</left_val>
-            <right_val>0.6101555824279785</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 8 4 3 -1.</_>
-                <_>8 9 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5786769799888134e-003</threshold>
-            <left_val>0.5325223207473755</left_val>
-            <right_val>0.4118548035621643</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 6 2 4 -1.</_>
-                <_>9 6 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.6856050137430429e-003</threshold>
-            <left_val>0.4810948073863983</left_val>
-            <right_val>0.6252303123474121</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 7 15 1 -1.</_>
-                <_>5 7 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.3887019902467728e-003</threshold>
-            <left_val>0.5200229883193970</left_val>
-            <right_val>0.3629410862922669</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 2 7 9 -1.</_>
-                <_>8 5 7 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0127926301211119</threshold>
-            <left_val>0.4961709976196289</left_val>
-            <right_val>0.6738016009330750</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 7 16 4 -1.</_>
-                <_>1 7 8 2 2.</_>
-                <_>9 9 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.3661040943115950e-003</threshold>
-            <left_val>0.4060279130935669</left_val>
-            <right_val>0.5283598899841309</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 12 8 2 -1.</_>
-                <_>6 13 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.9771420415490866e-004</threshold>
-            <left_val>0.4674113988876343</left_val>
-            <right_val>0.5900775194168091</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 11 3 3 -1.</_>
-                <_>8 12 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4868030557408929e-003</threshold>
-            <left_val>0.4519116878509522</left_val>
-            <right_val>0.6082053780555725</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 5 14 10 -1.</_>
-                <_>11 5 7 5 2.</_>
-                <_>4 10 7 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0886867493391037</threshold>
-            <left_val>0.2807899117469788</left_val>
-            <right_val>0.5180991888046265</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 12 3 2 -1.</_>
-                <_>4 13 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.4296112870797515e-005</threshold>
-            <left_val>0.5295584201812744</left_val>
-            <right_val>0.4087625145912170</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 11 6 1 -1.</_>
-                <_>11 11 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4932939848222304e-005</threshold>
-            <left_val>0.5461400151252747</left_val>
-            <right_val>0.4538542926311493</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 9 7 6 -1.</_>
-                <_>4 11 7 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9162238612771034e-003</threshold>
-            <left_val>0.5329161286354065</left_val>
-            <right_val>0.4192134141921997</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 10 6 3 -1.</_>
-                <_>7 11 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1141640134155750e-003</threshold>
-            <left_val>0.4512017965316773</left_val>
-            <right_val>0.5706217288970947</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 11 2 2 -1.</_>
-                <_>9 12 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.9249362645205110e-005</threshold>
-            <left_val>0.4577805995941162</left_val>
-            <right_val>0.5897638201713562</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 5 20 6 -1.</_>
-                <_>0 7 20 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5319510605186224e-003</threshold>
-            <left_val>0.5299603939056397</left_val>
-            <right_val>0.3357639014720917</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 4 6 1 -1.</_>
-                <_>8 4 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0124262003228068</threshold>
-            <left_val>0.4959059059619904</left_val>
-            <right_val>0.1346601992845535</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 11 6 1 -1.</_>
-                <_>11 11 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0283357501029968</threshold>
-            <left_val>0.5117079019546509</left_val>
-            <right_val>6.1043637106195092e-004</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 11 6 1 -1.</_>
-                <_>7 11 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.6165882162749767e-003</threshold>
-            <left_val>0.4736349880695343</left_val>
-            <right_val>0.7011628150939941</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 16 3 4 -1.</_>
-                <_>11 16 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.0468766391277313e-003</threshold>
-            <left_val>0.5216417908668518</left_val>
-            <right_val>0.3282819986343384</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 3 -1.</_>
-                <_>9 7 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1193980462849140e-003</threshold>
-            <left_val>0.5809860825538635</left_val>
-            <right_val>0.4563739001750946</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 12 16 8 -1.</_>
-                <_>2 16 16 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0132775902748108</threshold>
-            <left_val>0.5398362278938294</left_val>
-            <right_val>0.4103901088237763</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 15 15 2 -1.</_>
-                <_>0 16 15 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8794739996083081e-004</threshold>
-            <left_val>0.4249286055564880</left_val>
-            <right_val>0.5410590767860413</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 4 5 6 -1.</_>
-                <_>15 6 5 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0112431701272726</threshold>
-            <left_val>0.5269963741302490</left_val>
-            <right_val>0.3438215851783752</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 2 4 -1.</_>
-                <_>10 5 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.9896668214350939e-004</threshold>
-            <left_val>0.5633075833320618</left_val>
-            <right_val>0.4456613063812256</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 10 9 6 -1.</_>
-                <_>8 12 9 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.6677159629762173e-003</threshold>
-            <left_val>0.5312889218330383</left_val>
-            <right_val>0.4362679123878479</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 19 15 1 -1.</_>
-                <_>7 19 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0289472993463278</threshold>
-            <left_val>0.4701794981956482</left_val>
-            <right_val>0.6575797796249390</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 16 3 4 -1.</_>
-                <_>11 16 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0234000496566296</threshold>
-            <left_val>0.</left_val>
-            <right_val>0.5137398838996887</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 15 20 4 -1.</_>
-                <_>0 17 20 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0891170501708984</threshold>
-            <left_val>0.0237452797591686</left_val>
-            <right_val>0.4942430853843689</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 16 3 4 -1.</_>
-                <_>11 16 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0140546001493931</threshold>
-            <left_val>0.3127323091030121</left_val>
-            <right_val>0.5117511153221130</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 16 3 4 -1.</_>
-                <_>8 16 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.1239398568868637e-003</threshold>
-            <left_val>0.5009049177169800</left_val>
-            <right_val>0.2520025968551636</right_val></_></_>
-        <_>
-          <!-- tree 135 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 16 3 3 -1.</_>
-                <_>9 17 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.9964650534093380e-003</threshold>
-            <left_val>0.6387143731117249</left_val>
-            <right_val>0.4927811920642853</right_val></_></_>
-        <_>
-          <!-- tree 136 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 11 4 6 -1.</_>
-                <_>8 14 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1253970228135586e-003</threshold>
-            <left_val>0.5136849880218506</left_val>
-            <right_val>0.3680452108383179</right_val></_></_>
-        <_>
-          <!-- tree 137 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 6 2 12 -1.</_>
-                <_>9 10 2 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.7669642157852650e-003</threshold>
-            <left_val>0.5509843826293945</left_val>
-            <right_val>0.4363631904125214</right_val></_></_>
-        <_>
-          <!-- tree 138 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 17 4 3 -1.</_>
-                <_>8 18 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3711440153419971e-003</threshold>
-            <left_val>0.6162335276603699</left_val>
-            <right_val>0.4586946964263916</right_val></_></_>
-        <_>
-          <!-- tree 139 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 18 8 2 -1.</_>
-                <_>13 18 4 1 2.</_>
-                <_>9 19 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3522791713476181e-003</threshold>
-            <left_val>0.6185457706451416</left_val>
-            <right_val>0.4920490980148315</right_val></_></_>
-        <_>
-          <!-- tree 140 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 18 8 2 -1.</_>
-                <_>1 19 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0159688591957092</threshold>
-            <left_val>0.1382617950439453</left_val>
-            <right_val>0.4983252882957459</right_val></_></_>
-        <_>
-          <!-- tree 141 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 5 6 15 -1.</_>
-                <_>15 5 2 15 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.7676060348749161e-003</threshold>
-            <left_val>0.4688057899475098</left_val>
-            <right_val>0.5490046143531799</right_val></_></_>
-        <_>
-          <!-- tree 142 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 8 2 2 -1.</_>
-                <_>9 9 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4714691098779440e-003</threshold>
-            <left_val>0.2368514984846115</left_val>
-            <right_val>0.5003952980041504</right_val></_></_>
-        <_>
-          <!-- tree 143 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 2 3 -1.</_>
-                <_>9 5 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.1033788844943047e-004</threshold>
-            <left_val>0.5856394171714783</left_val>
-            <right_val>0.4721533060073853</right_val></_></_>
-        <_>
-          <!-- tree 144 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 5 6 15 -1.</_>
-                <_>3 5 2 15 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1411755979061127</threshold>
-            <left_val>0.0869000628590584</left_val>
-            <right_val>0.4961591064929962</right_val></_></_>
-        <_>
-          <!-- tree 145 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 1 14 8 -1.</_>
-                <_>11 1 7 4 2.</_>
-                <_>4 5 7 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1065180972218514</threshold>
-            <left_val>0.5138837099075317</left_val>
-            <right_val>0.1741005033254623</right_val></_></_>
-        <_>
-          <!-- tree 146 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 4 4 16 -1.</_>
-                <_>2 4 2 8 2.</_>
-                <_>4 12 2 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0527447499334812</threshold>
-            <left_val>0.7353636026382446</left_val>
-            <right_val>0.4772881865501404</right_val></_></_>
-        <_>
-          <!-- tree 147 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 4 3 12 -1.</_>
-                <_>12 10 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.7431760467588902e-003</threshold>
-            <left_val>0.3884406089782715</left_val>
-            <right_val>0.5292701721191406</right_val></_></_>
-        <_>
-          <!-- tree 148 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 5 10 12 -1.</_>
-                <_>4 5 5 6 2.</_>
-                <_>9 11 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.9676765967160463e-004</threshold>
-            <left_val>0.5223492980003357</left_val>
-            <right_val>0.4003424048423767</right_val></_></_>
-        <_>
-          <!-- tree 149 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 14 2 3 -1.</_>
-                <_>9 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.0284131690859795e-003</threshold>
-            <left_val>0.4959106147289276</left_val>
-            <right_val>0.7212964296340942</right_val></_></_>
-        <_>
-          <!-- tree 150 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 2 3 -1.</_>
-                <_>5 5 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.6025858763605356e-004</threshold>
-            <left_val>0.4444884061813355</left_val>
-            <right_val>0.5538476109504700</right_val></_></_>
-        <_>
-          <!-- tree 151 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 2 4 10 -1.</_>
-                <_>14 2 2 5 2.</_>
-                <_>12 7 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.3191501218825579e-004</threshold>
-            <left_val>0.5398371219635010</left_val>
-            <right_val>0.4163244068622589</right_val></_></_>
-        <_>
-          <!-- tree 152 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 4 7 3 -1.</_>
-                <_>6 5 7 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5082060601562262e-003</threshold>
-            <left_val>0.5854265093803406</left_val>
-            <right_val>0.4562500119209290</right_val></_></_>
-        <_>
-          <!-- tree 153 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 0 18 2 -1.</_>
-                <_>11 0 9 1 2.</_>
-                <_>2 1 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1378761157393456e-003</threshold>
-            <left_val>0.4608069062232971</left_val>
-            <right_val>0.5280259251594544</right_val></_></_>
-        <_>
-          <!-- tree 154 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 18 2 -1.</_>
-                <_>0 0 9 1 2.</_>
-                <_>9 1 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1546049974858761e-003</threshold>
-            <left_val>0.3791126906871796</left_val>
-            <right_val>0.5255997180938721</right_val></_></_>
-        <_>
-          <!-- tree 155 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 13 4 6 -1.</_>
-                <_>15 13 2 3 2.</_>
-                <_>13 16 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.6214009895920753e-003</threshold>
-            <left_val>0.5998609066009522</left_val>
-            <right_val>0.4952073991298676</right_val></_></_>
-        <_>
-          <!-- tree 156 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 13 4 6 -1.</_>
-                <_>3 13 2 3 2.</_>
-                <_>5 16 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2055360022932291e-003</threshold>
-            <left_val>0.4484206140041351</left_val>
-            <right_val>0.5588530898094177</right_val></_></_>
-        <_>
-          <!-- tree 157 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 12 2 6 -1.</_>
-                <_>10 15 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2586950324475765e-003</threshold>
-            <left_val>0.5450747013092041</left_val>
-            <right_val>0.4423840939998627</right_val></_></_>
-        <_>
-          <!-- tree 158 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 9 10 10 -1.</_>
-                <_>5 9 5 5 2.</_>
-                <_>10 14 5 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.0926720723509789e-003</threshold>
-            <left_val>0.4118275046348572</left_val>
-            <right_val>0.5263035893440247</right_val></_></_>
-        <_>
-          <!-- tree 159 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 4 4 2 -1.</_>
-                <_>13 4 2 1 2.</_>
-                <_>11 5 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5095739401876926e-003</threshold>
-            <left_val>0.5787907838821411</left_val>
-            <right_val>0.4998494982719421</right_val></_></_>
-        <_>
-          <!-- tree 160 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 12 6 8 -1.</_>
-                <_>10 12 3 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0773275569081306</threshold>
-            <left_val>0.8397865891456604</left_val>
-            <right_val>0.4811120033264160</right_val></_></_>
-        <_>
-          <!-- tree 161 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 2 4 10 -1.</_>
-                <_>14 2 2 5 2.</_>
-                <_>12 7 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0414858199656010</threshold>
-            <left_val>0.2408611029386520</left_val>
-            <right_val>0.5176993012428284</right_val></_></_>
-        <_>
-          <!-- tree 162 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 11 2 1 -1.</_>
-                <_>9 11 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0355669655837119e-004</threshold>
-            <left_val>0.4355360865592957</left_val>
-            <right_val>0.5417054295539856</right_val></_></_>
-        <_>
-          <!-- tree 163 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 5 1 12 -1.</_>
-                <_>10 9 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3255809899419546e-003</threshold>
-            <left_val>0.5453971028327942</left_val>
-            <right_val>0.4894095063209534</right_val></_></_>
-        <_>
-          <!-- tree 164 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 11 6 9 -1.</_>
-                <_>3 11 3 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.0598732456564903e-003</threshold>
-            <left_val>0.5771024227142334</left_val>
-            <right_val>0.4577918946743012</right_val></_></_>
-        <_>
-          <!-- tree 165 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 2 4 10 -1.</_>
-                <_>14 2 2 5 2.</_>
-                <_>12 7 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0190586205571890</threshold>
-            <left_val>0.5169867873191834</left_val>
-            <right_val>0.3400475084781647</right_val></_></_>
-        <_>
-          <!-- tree 166 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 2 4 10 -1.</_>
-                <_>4 2 2 5 2.</_>
-                <_>6 7 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0350578911602497</threshold>
-            <left_val>0.2203243970870972</left_val>
-            <right_val>0.5000503063201904</right_val></_></_>
-        <_>
-          <!-- tree 167 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 4 4 2 -1.</_>
-                <_>13 4 2 1 2.</_>
-                <_>11 5 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.7296059094369411e-003</threshold>
-            <left_val>0.5043408274650574</left_val>
-            <right_val>0.6597570776939392</right_val></_></_>
-        <_>
-          <!-- tree 168 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 14 6 3 -1.</_>
-                <_>0 15 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0116483299061656</threshold>
-            <left_val>0.2186284959316254</left_val>
-            <right_val>0.4996652901172638</right_val></_></_>
-        <_>
-          <!-- tree 169 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 4 4 2 -1.</_>
-                <_>13 4 2 1 2.</_>
-                <_>11 5 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4544479781761765e-003</threshold>
-            <left_val>0.5007681846618652</left_val>
-            <right_val>0.5503727793693543</right_val></_></_>
-        <_>
-          <!-- tree 170 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 1 3 2 -1.</_>
-                <_>7 1 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5030909455381334e-004</threshold>
-            <left_val>0.4129841029644013</left_val>
-            <right_val>0.5241670012474060</right_val></_></_>
-        <_>
-          <!-- tree 171 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 4 4 2 -1.</_>
-                <_>13 4 2 1 2.</_>
-                <_>11 5 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.2907272735610604e-004</threshold>
-            <left_val>0.5412868261337280</left_val>
-            <right_val>0.4974496066570282</right_val></_></_>
-        <_>
-          <!-- tree 172 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 4 2 -1.</_>
-                <_>5 4 2 1 2.</_>
-                <_>7 5 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0862209601327777e-003</threshold>
-            <left_val>0.4605529904365540</left_val>
-            <right_val>0.5879228711128235</right_val></_></_>
-        <_>
-          <!-- tree 173 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 0 2 12 -1.</_>
-                <_>14 0 1 6 2.</_>
-                <_>13 6 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0000500080641359e-004</threshold>
-            <left_val>0.5278854966163635</left_val>
-            <right_val>0.4705209136009216</right_val></_></_>
-        <_>
-          <!-- tree 174 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 0 3 10 -1.</_>
-                <_>7 0 1 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9212920926511288e-003</threshold>
-            <left_val>0.5129609704017639</left_val>
-            <right_val>0.3755536973476410</right_val></_></_>
-        <_>
-          <!-- tree 175 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 0 17 8 -1.</_>
-                <_>3 4 17 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0253874007612467</threshold>
-            <left_val>0.4822691977024078</left_val>
-            <right_val>0.5790768265724182</right_val></_></_>
-        <_>
-          <!-- tree 176 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 4 20 4 -1.</_>
-                <_>0 6 20 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.1968469265848398e-003</threshold>
-            <left_val>0.5248395204544067</left_val>
-            <right_val>0.3962840139865875</right_val></_></_></trees>
-      <stage_threshold>87.6960296630859380</stage_threshold>
-      <parent>17</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 19 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 3 8 2 -1.</_>
-                <_>4 3 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.8031738735735416e-003</threshold>
-            <left_val>0.3498983979225159</left_val>
-            <right_val>0.5961983203887940</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 11 4 3 -1.</_>
-                <_>8 12 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.0003069490194321e-003</threshold>
-            <left_val>0.6816636919975281</left_val>
-            <right_val>0.4478552043437958</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 6 4 -1.</_>
-                <_>5 7 3 2 2.</_>
-                <_>8 9 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1549659539014101e-003</threshold>
-            <left_val>0.5585706233978272</left_val>
-            <right_val>0.3578251004219055</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 3 4 9 -1.</_>
-                <_>8 6 4 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1069850297644734e-003</threshold>
-            <left_val>0.5365036129951477</left_val>
-            <right_val>0.3050428032875061</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 15 1 4 -1.</_>
-                <_>8 17 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0308309720130637e-004</threshold>
-            <left_val>0.3639095127582550</left_val>
-            <right_val>0.5344635844230652</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 5 12 7 -1.</_>
-                <_>8 5 4 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.0984839908778667e-003</threshold>
-            <left_val>0.2859157025814056</left_val>
-            <right_val>0.5504264831542969</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 2 4 10 -1.</_>
-                <_>4 2 2 5 2.</_>
-                <_>6 7 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.2572200335562229e-004</threshold>
-            <left_val>0.5236523747444153</left_val>
-            <right_val>0.3476041853427887</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 0 17 2 -1.</_>
-                <_>3 1 17 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.9783325567841530e-003</threshold>
-            <left_val>0.4750322103500366</left_val>
-            <right_val>0.6219646930694580</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 2 16 15 -1.</_>
-                <_>2 7 16 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0374025292694569</threshold>
-            <left_val>0.3343375921249390</left_val>
-            <right_val>0.5278062820434570</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 2 5 2 -1.</_>
-                <_>15 3 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8548257909715176e-003</threshold>
-            <left_val>0.5192180871963501</left_val>
-            <right_val>0.3700444102287293</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 3 2 2 -1.</_>
-                <_>10 3 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8664470408111811e-003</threshold>
-            <left_val>0.2929843962192535</left_val>
-            <right_val>0.5091944932937622</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 5 16 15 -1.</_>
-                <_>4 10 16 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0168888904154301</threshold>
-            <left_val>0.3686845898628235</left_val>
-            <right_val>0.5431225895881653</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 13 5 6 -1.</_>
-                <_>7 16 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.8372621424496174e-003</threshold>
-            <left_val>0.3632183969020844</left_val>
-            <right_val>0.5221335887908936</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 7 3 2 -1.</_>
-                <_>11 7 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4713739510625601e-003</threshold>
-            <left_val>0.5870683789253235</left_val>
-            <right_val>0.4700650870800018</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 3 3 1 -1.</_>
-                <_>9 3 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1522950371727347e-003</threshold>
-            <left_val>0.3195894956588745</left_val>
-            <right_val>0.5140954256057739</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 16 3 3 -1.</_>
-                <_>9 17 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.2560300789773464e-003</threshold>
-            <left_val>0.6301859021186829</left_val>
-            <right_val>0.4814921021461487</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 5 2 -1.</_>
-                <_>0 3 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.7378291860222816e-003</threshold>
-            <left_val>0.1977048069238663</left_val>
-            <right_val>0.5025808215141296</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 5 4 3 -1.</_>
-                <_>12 6 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0113826701417565</threshold>
-            <left_val>0.4954132139682770</left_val>
-            <right_val>0.6867045760154724</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 7 12 1 -1.</_>
-                <_>5 7 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1794708706438541e-003</threshold>
-            <left_val>0.5164427757263184</left_val>
-            <right_val>0.3350647985935211</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 5 6 14 -1.</_>
-                <_>7 12 6 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1174378991127014</threshold>
-            <left_val>0.2315246015787125</left_val>
-            <right_val>0.5234413743019104</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 8 10 -1.</_>
-                <_>0 0 4 5 2.</_>
-                <_>4 5 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0287034492939711</threshold>
-            <left_val>0.4664297103881836</left_val>
-            <right_val>0.6722521185874939</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 1 3 2 -1.</_>
-                <_>10 1 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8231030814349651e-003</threshold>
-            <left_val>0.5220875144004822</left_val>
-            <right_val>0.2723532915115356</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 1 3 2 -1.</_>
-                <_>9 1 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6798530016094446e-003</threshold>
-            <left_val>0.5079277157783508</left_val>
-            <right_val>0.2906948924064636</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 4 3 3 -1.</_>
-                <_>12 5 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.0504082143306732e-003</threshold>
-            <left_val>0.4885950982570648</left_val>
-            <right_val>0.6395021080970764</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 4 6 16 -1.</_>
-                <_>7 12 6 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8054959625005722e-003</threshold>
-            <left_val>0.5197256803512573</left_val>
-            <right_val>0.3656663894653320</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 4 3 3 -1.</_>
-                <_>12 5 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2420159075409174e-003</threshold>
-            <left_val>0.6153467893600464</left_val>
-            <right_val>0.4763701856136322</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 3 2 6 -1.</_>
-                <_>2 5 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0137577103450894</threshold>
-            <left_val>0.2637344896793366</left_val>
-            <right_val>0.5030903220176697</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 2 6 9 -1.</_>
-                <_>14 5 6 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1033829972147942</threshold>
-            <left_val>0.2287521958351135</left_val>
-            <right_val>0.5182461142539978</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 3 3 -1.</_>
-                <_>5 5 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.4432085752487183e-003</threshold>
-            <left_val>0.6953303813934326</left_val>
-            <right_val>0.4694949090480804</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 17 3 2 -1.</_>
-                <_>10 17 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.0271181650459766e-004</threshold>
-            <left_val>0.5450655221939087</left_val>
-            <right_val>0.4268783926963806</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 2 3 -1.</_>
-                <_>5 6 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.1945669800043106e-003</threshold>
-            <left_val>0.6091387867927551</left_val>
-            <right_val>0.4571642875671387</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 11 3 6 -1.</_>
-                <_>13 13 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0109422104433179</threshold>
-            <left_val>0.5241063237190247</left_val>
-            <right_val>0.3284547030925751</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 14 2 6 -1.</_>
-                <_>3 17 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.7841069065034389e-004</threshold>
-            <left_val>0.5387929081916809</left_val>
-            <right_val>0.4179368913173676</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 3 6 2 -1.</_>
-                <_>14 4 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.0888620056211948e-003</threshold>
-            <left_val>0.4292691051959992</left_val>
-            <right_val>0.5301715731620789</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 8 16 2 -1.</_>
-                <_>0 9 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2383969519287348e-003</threshold>
-            <left_val>0.3792347908020020</left_val>
-            <right_val>0.5220744013786316</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 3 6 2 -1.</_>
-                <_>14 4 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.9075027927756310e-003</threshold>
-            <left_val>0.5237283110618591</left_val>
-            <right_val>0.4126757979393005</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 5 6 -1.</_>
-                <_>0 2 5 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0322779417037964</threshold>
-            <left_val>0.1947655975818634</left_val>
-            <right_val>0.4994502067565918</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 5 4 3 -1.</_>
-                <_>12 6 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.9711230248212814e-003</threshold>
-            <left_val>0.6011285185813904</left_val>
-            <right_val>0.4929032027721405</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 11 3 6 -1.</_>
-                <_>4 13 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0153210898861289</threshold>
-            <left_val>0.5009753704071045</left_val>
-            <right_val>0.2039822041988373</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 5 4 3 -1.</_>
-                <_>12 6 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0855569746345282e-003</threshold>
-            <left_val>0.4862189888954163</left_val>
-            <right_val>0.5721694827079773</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 1 3 -1.</_>
-                <_>9 6 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0615021027624607e-003</threshold>
-            <left_val>0.5000218749046326</left_val>
-            <right_val>0.1801805943250656</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 5 4 3 -1.</_>
-                <_>12 6 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.7174751050770283e-003</threshold>
-            <left_val>0.5530117154121399</left_val>
-            <right_val>0.4897592961788178</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 8 12 -1.</_>
-                <_>6 12 8 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0121705001220107</threshold>
-            <left_val>0.4178605973720551</left_val>
-            <right_val>0.5383723974227905</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 5 4 3 -1.</_>
-                <_>12 6 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.6248398721218109e-003</threshold>
-            <left_val>0.4997169971466065</left_val>
-            <right_val>0.5761327147483826</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 12 9 2 -1.</_>
-                <_>8 12 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1040429419372231e-004</threshold>
-            <left_val>0.5331807136535645</left_val>
-            <right_val>0.4097681045532227</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 5 4 3 -1.</_>
-                <_>12 6 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0146417804062366</threshold>
-            <left_val>0.5755925178527832</left_val>
-            <right_val>0.5051776170730591</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 5 4 3 -1.</_>
-                <_>4 6 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3199489116668701e-003</threshold>
-            <left_val>0.4576976895332336</left_val>
-            <right_val>0.6031805872917175</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 9 2 -1.</_>
-                <_>9 6 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.7236879579722881e-003</threshold>
-            <left_val>0.4380396902561188</left_val>
-            <right_val>0.5415883064270020</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 11 1 3 -1.</_>
-                <_>4 12 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.2951161311939359e-004</threshold>
-            <left_val>0.5163031816482544</left_val>
-            <right_val>0.3702219128608704</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 12 6 6 -1.</_>
-                <_>14 12 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0114084901288152</threshold>
-            <left_val>0.6072946786880493</left_val>
-            <right_val>0.4862565100193024</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 0 3 7 -1.</_>
-                <_>8 0 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.5320121571421623e-003</threshold>
-            <left_val>0.3292475938796997</left_val>
-            <right_val>0.5088962912559509</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 8 3 3 -1.</_>
-                <_>10 8 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1276017911732197e-003</threshold>
-            <left_val>0.4829767942428589</left_val>
-            <right_val>0.6122708916664124</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 8 3 3 -1.</_>
-                <_>9 8 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.8583158105611801e-003</threshold>
-            <left_val>0.4660679996013641</left_val>
-            <right_val>0.6556177139282227</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 10 11 3 -1.</_>
-                <_>5 11 11 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0369859188795090</threshold>
-            <left_val>0.5204849243164063</left_val>
-            <right_val>0.1690472066402435</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 10 1 -1.</_>
-                <_>10 7 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.6491161920130253e-003</threshold>
-            <left_val>0.5167322158813477</left_val>
-            <right_val>0.3725225031375885</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 3 2 -1.</_>
-                <_>10 7 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.2664702050387859e-003</threshold>
-            <left_val>0.6406493186950684</left_val>
-            <right_val>0.4987342953681946</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 2 -1.</_>
-                <_>9 7 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.7956590424291790e-004</threshold>
-            <left_val>0.5897293090820313</left_val>
-            <right_val>0.4464873969554901</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 9 4 2 -1.</_>
-                <_>11 9 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.6827160511165857e-003</threshold>
-            <left_val>0.5441560745239258</left_val>
-            <right_val>0.3472662866115570</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 9 4 2 -1.</_>
-                <_>7 9 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0100598800927401</threshold>
-            <left_val>0.2143162935972214</left_val>
-            <right_val>0.5004829764366150</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 10 2 4 -1.</_>
-                <_>14 12 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.0361840617842972e-004</threshold>
-            <left_val>0.5386424064636231</left_val>
-            <right_val>0.4590323865413666</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 7 3 2 -1.</_>
-                <_>8 7 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4545479789376259e-003</threshold>
-            <left_val>0.5751184225082398</left_val>
-            <right_val>0.4497095048427582</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 17 6 3 -1.</_>
-                <_>14 18 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6515209572389722e-003</threshold>
-            <left_val>0.5421937704086304</left_val>
-            <right_val>0.4238520860671997</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 5 12 12 -1.</_>
-                <_>4 5 6 6 2.</_>
-                <_>10 11 6 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.8468639403581619e-003</threshold>
-            <left_val>0.4077920913696289</left_val>
-            <right_val>0.5258157253265381</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 9 8 8 -1.</_>
-                <_>10 9 4 4 2.</_>
-                <_>6 13 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1259850151836872e-003</threshold>
-            <left_val>0.4229275882244110</left_val>
-            <right_val>0.5479453206062317</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 4 15 4 -1.</_>
-                <_>5 4 5 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0368909612298012</threshold>
-            <left_val>0.6596375703811646</left_val>
-            <right_val>0.4674678146839142</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 2 4 1 -1.</_>
-                <_>13 2 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4035639944486320e-004</threshold>
-            <left_val>0.4251135885715485</left_val>
-            <right_val>0.5573202967643738</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 12 2 2 -1.</_>
-                <_>4 13 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5150169929256663e-005</threshold>
-            <left_val>0.5259246826171875</left_val>
-            <right_val>0.4074114859104157</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 13 4 3 -1.</_>
-                <_>8 14 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2108471021056175e-003</threshold>
-            <left_val>0.4671722948551178</left_val>
-            <right_val>0.5886352062225342</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 13 2 3 -1.</_>
-                <_>9 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1568620102480054e-003</threshold>
-            <left_val>0.5711066126823425</left_val>
-            <right_val>0.4487161934375763</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 11 2 3 -1.</_>
-                <_>13 12 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.9996292218565941e-003</threshold>
-            <left_val>0.5264198184013367</left_val>
-            <right_val>0.2898327112197876</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 12 4 4 -1.</_>
-                <_>7 12 2 2 2.</_>
-                <_>9 14 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4656189596280456e-003</threshold>
-            <left_val>0.3891738057136536</left_val>
-            <right_val>0.5197871923446655</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 11 2 2 -1.</_>
-                <_>11 11 1 1 2.</_>
-                <_>10 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1975039960816503e-003</threshold>
-            <left_val>0.5795872807502747</left_val>
-            <right_val>0.4927955865859985</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 17 3 2 -1.</_>
-                <_>9 17 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.4954330660402775e-003</threshold>
-            <left_val>0.2377603054046631</left_val>
-            <right_val>0.5012555122375488</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 11 2 2 -1.</_>
-                <_>11 11 1 1 2.</_>
-                <_>10 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4997160178609192e-004</threshold>
-            <left_val>0.4876626133918762</left_val>
-            <right_val>0.5617607831954956</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 17 6 3 -1.</_>
-                <_>0 18 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6391509454697371e-003</threshold>
-            <left_val>0.5168088078498840</left_val>
-            <right_val>0.3765509128570557</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 11 2 2 -1.</_>
-                <_>11 11 1 1 2.</_>
-                <_>10 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9368131072260439e-004</threshold>
-            <left_val>0.5446649193763733</left_val>
-            <right_val>0.4874630868434906</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 11 2 2 -1.</_>
-                <_>8 11 1 1 2.</_>
-                <_>9 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4211760135367513e-003</threshold>
-            <left_val>0.4687897861003876</left_val>
-            <right_val>0.6691331863403320</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 5 8 4 -1.</_>
-                <_>12 5 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0794276371598244</threshold>
-            <left_val>0.5193443894386292</left_val>
-            <right_val>0.2732945978641510</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 5 8 4 -1.</_>
-                <_>4 5 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0799375027418137</threshold>
-            <left_val>0.4971731007099152</left_val>
-            <right_val>0.1782083958387375</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 2 4 1 -1.</_>
-                <_>13 2 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0110892597585917</threshold>
-            <left_val>0.5165994763374329</left_val>
-            <right_val>0.3209475874900818</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 2 4 1 -1.</_>
-                <_>5 2 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6560709627810866e-004</threshold>
-            <left_val>0.4058471918106079</left_val>
-            <right_val>0.5307276248931885</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 0 4 2 -1.</_>
-                <_>12 0 2 1 2.</_>
-                <_>10 1 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3354292176663876e-003</threshold>
-            <left_val>0.3445056974887848</left_val>
-            <right_val>0.5158129930496216</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 12 3 1 -1.</_>
-                <_>8 12 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1287260567769408e-003</threshold>
-            <left_val>0.4594863057136536</left_val>
-            <right_val>0.6075533032417297</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 11 4 8 -1.</_>
-                <_>10 11 2 4 2.</_>
-                <_>8 15 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0219692196696997</threshold>
-            <left_val>0.1680400967597961</left_val>
-            <right_val>0.5228595733642578</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 9 2 2 -1.</_>
-                <_>9 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1775320055894554e-004</threshold>
-            <left_val>0.3861596882343292</left_val>
-            <right_val>0.5215672850608826</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 18 15 2 -1.</_>
-                <_>3 19 15 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0200149447191507e-004</threshold>
-            <left_val>0.5517979264259338</left_val>
-            <right_val>0.4363039135932922</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 6 2 12 -1.</_>
-                <_>2 6 1 6 2.</_>
-                <_>3 12 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0217331498861313</threshold>
-            <left_val>0.7999460101127625</left_val>
-            <right_val>0.4789851009845734</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 8 2 3 -1.</_>
-                <_>9 9 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.4399932529777288e-004</threshold>
-            <left_val>0.4085975885391235</left_val>
-            <right_val>0.5374773144721985</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 10 3 2 -1.</_>
-                <_>8 10 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.3895249837078154e-004</threshold>
-            <left_val>0.5470405220985413</left_val>
-            <right_val>0.4366143047809601</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 11 3 1 -1.</_>
-                <_>12 11 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5092400135472417e-003</threshold>
-            <left_val>0.4988996982574463</left_val>
-            <right_val>0.5842149257659912</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 11 3 1 -1.</_>
-                <_>7 11 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.5547839943319559e-003</threshold>
-            <left_val>0.6753690242767334</left_val>
-            <right_val>0.4721005856990814</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 2 4 2 -1.</_>
-                <_>11 2 2 1 2.</_>
-                <_>9 3 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8191400128416717e-004</threshold>
-            <left_val>0.5415853857994080</left_val>
-            <right_val>0.4357109069824219</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 12 2 3 -1.</_>
-                <_>4 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.0264398343861103e-003</threshold>
-            <left_val>0.2258509993553162</left_val>
-            <right_val>0.4991880953311920</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 1 18 3 -1.</_>
-                <_>8 1 6 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0116681400686502</threshold>
-            <left_val>0.6256554722785950</left_val>
-            <right_val>0.4927498996257782</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 1 4 14 -1.</_>
-                <_>7 1 2 14 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.8718370012938976e-003</threshold>
-            <left_val>0.3947784900665283</left_val>
-            <right_val>0.5245801806449890</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 16 12 3 -1.</_>
-                <_>8 16 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0170511696487665</threshold>
-            <left_val>0.4752511084079742</left_val>
-            <right_val>0.5794224143028259</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 17 18 3 -1.</_>
-                <_>7 17 6 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0133520802482963</threshold>
-            <left_val>0.6041104793548584</left_val>
-            <right_val>0.4544535875320435</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 14 2 6 -1.</_>
-                <_>9 17 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.9301801007241011e-004</threshold>
-            <left_val>0.4258275926113129</left_val>
-            <right_val>0.5544905066490173</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 1 8 -1.</_>
-                <_>9 16 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.0483349692076445e-003</threshold>
-            <left_val>0.5233420133590698</left_val>
-            <right_val>0.3780272901058197</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 14 2 3 -1.</_>
-                <_>9 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.3579288758337498e-003</threshold>
-            <left_val>0.6371889114379883</left_val>
-            <right_val>0.4838674068450928</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 6 2 12 -1.</_>
-                <_>9 10 2 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.6661018170416355e-003</threshold>
-            <left_val>0.5374705791473389</left_val>
-            <right_val>0.4163666069507599</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 9 3 3 -1.</_>
-                <_>12 10 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.0677339206449687e-005</threshold>
-            <left_val>0.4638795852661133</left_val>
-            <right_val>0.5311625003814697</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 1 4 8 -1.</_>
-                <_>2 1 2 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0367381609976292</threshold>
-            <left_val>0.4688656032085419</left_val>
-            <right_val>0.6466524004936218</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 1 6 2 -1.</_>
-                <_>12 1 3 1 2.</_>
-                <_>9 2 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.6528137326240540e-003</threshold>
-            <left_val>0.5204318761825562</left_val>
-            <right_val>0.2188657969236374</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 3 12 14 -1.</_>
-                <_>1 10 12 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1537135988473892</threshold>
-            <left_val>0.1630371958017349</left_val>
-            <right_val>0.4958840012550354</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 4 2 -1.</_>
-                <_>10 12 2 1 2.</_>
-                <_>8 13 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.1560421232134104e-004</threshold>
-            <left_val>0.5774459242820740</left_val>
-            <right_val>0.4696458876132965</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 9 10 2 -1.</_>
-                <_>1 9 5 1 2.</_>
-                <_>6 10 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2640169588848948e-003</threshold>
-            <left_val>0.3977175951004028</left_val>
-            <right_val>0.5217198133468628</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 15 4 3 -1.</_>
-                <_>8 16 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.5473341122269630e-003</threshold>
-            <left_val>0.6046528220176697</left_val>
-            <right_val>0.4808315038681030</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 8 8 3 -1.</_>
-                <_>6 9 8 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.0019069527043030e-005</threshold>
-            <left_val>0.3996723890304565</left_val>
-            <right_val>0.5228201150894165</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 15 5 3 -1.</_>
-                <_>9 16 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3113019522279501e-003</threshold>
-            <left_val>0.4712158143520355</left_val>
-            <right_val>0.5765997767448425</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 4 3 -1.</_>
-                <_>8 8 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.3374709524214268e-003</threshold>
-            <left_val>0.4109584987163544</left_val>
-            <right_val>0.5253170132637024</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 7 6 2 -1.</_>
-                <_>7 8 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0208767093718052</threshold>
-            <left_val>0.5202993750572205</left_val>
-            <right_val>0.1757981926202774</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 8 2 -1.</_>
-                <_>5 7 4 1 2.</_>
-                <_>9 8 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.5497948564589024e-003</threshold>
-            <left_val>0.6566609740257263</left_val>
-            <right_val>0.4694975018501282</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 9 3 3 -1.</_>
-                <_>12 10 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0241885501891375</threshold>
-            <left_val>0.5128673911094666</left_val>
-            <right_val>0.3370220959186554</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 7 4 2 -1.</_>
-                <_>4 8 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9358828905969858e-003</threshold>
-            <left_val>0.6580786705017090</left_val>
-            <right_val>0.4694541096687317</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 2 6 9 -1.</_>
-                <_>14 5 6 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0575579293072224</threshold>
-            <left_val>0.5146445035934448</left_val>
-            <right_val>0.2775259912014008</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 9 3 3 -1.</_>
-                <_>5 9 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1343370424583554e-003</threshold>
-            <left_val>0.3836601972579956</left_val>
-            <right_val>0.5192667245864868</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 9 3 3 -1.</_>
-                <_>12 10 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0168169997632504</threshold>
-            <left_val>0.5085592865943909</left_val>
-            <right_val>0.6177260875701904</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 6 9 -1.</_>
-                <_>0 5 6 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0535178743302822e-003</threshold>
-            <left_val>0.5138763189315796</left_val>
-            <right_val>0.3684791922569275</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 3 3 6 -1.</_>
-                <_>18 3 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.5874710194766521e-003</threshold>
-            <left_val>0.5989655256271362</left_val>
-            <right_val>0.4835202097892761</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 3 3 6 -1.</_>
-                <_>1 3 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6882460331544280e-003</threshold>
-            <left_val>0.4509486854076386</left_val>
-            <right_val>0.5723056793212891</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 14 1 2 -1.</_>
-                <_>17 15 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.6554000321775675e-003</threshold>
-            <left_val>0.3496770858764648</left_val>
-            <right_val>0.5243319272994995</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 9 4 3 -1.</_>
-                <_>6 9 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0193738006055355</threshold>
-            <left_val>0.1120536997914314</left_val>
-            <right_val>0.4968712925910950</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 9 3 3 -1.</_>
-                <_>12 10 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0103744501248002</threshold>
-            <left_val>0.5148196816444397</left_val>
-            <right_val>0.4395213127136231</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 9 3 3 -1.</_>
-                <_>5 10 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4973050565458834e-004</threshold>
-            <left_val>0.4084999859333038</left_val>
-            <right_val>0.5269886851310730</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 6 8 -1.</_>
-                <_>12 5 3 4 2.</_>
-                <_>9 9 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0429819300770760</threshold>
-            <left_val>0.6394104957580566</left_val>
-            <right_val>0.5018504261970520</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 6 8 -1.</_>
-                <_>5 5 3 4 2.</_>
-                <_>8 9 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.3065936341881752e-003</threshold>
-            <left_val>0.4707553982734680</left_val>
-            <right_val>0.6698353290557861</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 1 4 6 -1.</_>
-                <_>16 4 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.1285790503025055e-003</threshold>
-            <left_val>0.4541369080543518</left_val>
-            <right_val>0.5323647260665894</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 0 6 20 -1.</_>
-                <_>3 0 2 20 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7399420030415058e-003</threshold>
-            <left_val>0.4333961904048920</left_val>
-            <right_val>0.5439866185188294</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 11 3 2 -1.</_>
-                <_>13 11 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1739750334527344e-004</threshold>
-            <left_val>0.4579687118530273</left_val>
-            <right_val>0.5543426275253296</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 11 3 2 -1.</_>
-                <_>6 11 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.8585780344437808e-004</threshold>
-            <left_val>0.4324643909931183</left_val>
-            <right_val>0.5426754951477051</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 4 6 1 -1.</_>
-                <_>11 4 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.5587692186236382e-003</threshold>
-            <left_val>0.5257220864295960</left_val>
-            <right_val>0.3550611138343811</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 8 3 -1.</_>
-                <_>4 0 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.9851560294628143e-003</threshold>
-            <left_val>0.6043018102645874</left_val>
-            <right_val>0.4630635976791382</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 0 2 5 -1.</_>
-                <_>15 0 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.0594122624024749e-004</threshold>
-            <left_val>0.4598254859447479</left_val>
-            <right_val>0.5533195137977600</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 1 3 2 -1.</_>
-                <_>5 1 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2983040253166109e-004</threshold>
-            <left_val>0.4130752086639404</left_val>
-            <right_val>0.5322461128234863</right_val></_></_>
-        <_>
-          <!-- tree 135 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 0 6 15 -1.</_>
-                <_>9 0 2 15 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.3740210821852088e-004</threshold>
-            <left_val>0.4043039977550507</left_val>
-            <right_val>0.5409289002418518</right_val></_></_>
-        <_>
-          <!-- tree 136 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 11 3 1 -1.</_>
-                <_>7 11 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9482020181603730e-004</threshold>
-            <left_val>0.4494963884353638</left_val>
-            <right_val>0.5628852248191834</right_val></_></_>
-        <_>
-          <!-- tree 137 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 0 3 4 -1.</_>
-                <_>13 0 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0103126596659422</threshold>
-            <left_val>0.5177510976791382</left_val>
-            <right_val>0.2704316973686218</right_val></_></_>
-        <_>
-          <!-- tree 138 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 6 1 -1.</_>
-                <_>7 4 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.7241109684109688e-003</threshold>
-            <left_val>0.1988019049167633</left_val>
-            <right_val>0.4980553984642029</right_val></_></_>
-        <_>
-          <!-- tree 139 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 7 3 2 -1.</_>
-                <_>12 8 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.6797208487987518e-003</threshold>
-            <left_val>0.6644750237464905</left_val>
-            <right_val>0.5018296241760254</right_val></_></_>
-        <_>
-          <!-- tree 140 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 1 4 6 -1.</_>
-                <_>0 4 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.0755459815263748e-003</threshold>
-            <left_val>0.3898304998874664</left_val>
-            <right_val>0.5185269117355347</right_val></_></_>
-        <_>
-          <!-- tree 141 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 7 3 2 -1.</_>
-                <_>12 8 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2479740437120199e-003</threshold>
-            <left_val>0.4801808893680573</left_val>
-            <right_val>0.5660336017608643</right_val></_></_>
-        <_>
-          <!-- tree 142 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 16 3 3 -1.</_>
-                <_>2 17 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.3327008178457618e-004</threshold>
-            <left_val>0.5210919976234436</left_val>
-            <right_val>0.3957188129425049</right_val></_></_>
-        <_>
-          <!-- tree 143 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 8 6 10 -1.</_>
-                <_>16 8 3 5 2.</_>
-                <_>13 13 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0412793308496475</threshold>
-            <left_val>0.6154541969299316</left_val>
-            <right_val>0.5007054209709168</right_val></_></_>
-        <_>
-          <!-- tree 144 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 9 5 2 -1.</_>
-                <_>0 10 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.0930189900100231e-004</threshold>
-            <left_val>0.3975942134857178</left_val>
-            <right_val>0.5228403806686401</right_val></_></_>
-        <_>
-          <!-- tree 145 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 11 2 2 -1.</_>
-                <_>13 11 1 1 2.</_>
-                <_>12 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2568780221045017e-003</threshold>
-            <left_val>0.4979138076305389</left_val>
-            <right_val>0.5939183235168457</right_val></_></_>
-        <_>
-          <!-- tree 146 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 15 3 3 -1.</_>
-                <_>3 16 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.0048497766256332e-003</threshold>
-            <left_val>0.4984497129917145</left_val>
-            <right_val>0.1633366048336029</right_val></_></_>
-        <_>
-          <!-- tree 147 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 7 3 2 -1.</_>
-                <_>12 8 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1879300000146031e-003</threshold>
-            <left_val>0.5904964804649353</left_val>
-            <right_val>0.4942624866962433</right_val></_></_>
-        <_>
-          <!-- tree 148 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 3 2 -1.</_>
-                <_>5 8 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.1948952497914433e-004</threshold>
-            <left_val>0.4199557900428772</left_val>
-            <right_val>0.5328726172447205</right_val></_></_>
-        <_>
-          <!-- tree 149 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 9 9 -1.</_>
-                <_>9 8 9 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.6829859279096127e-003</threshold>
-            <left_val>0.5418602824211121</left_val>
-            <right_val>0.4905889034271240</right_val></_></_>
-        <_>
-          <!-- tree 150 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 0 3 7 -1.</_>
-                <_>6 0 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.7062340416014194e-003</threshold>
-            <left_val>0.3725939095020294</left_val>
-            <right_val>0.5138000249862671</right_val></_></_>
-        <_>
-          <!-- tree 151 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 2 12 5 -1.</_>
-                <_>9 2 4 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0397394113242626</threshold>
-            <left_val>0.6478961110115051</left_val>
-            <right_val>0.5050346851348877</right_val></_></_>
-        <_>
-          <!-- tree 152 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 11 2 2 -1.</_>
-                <_>6 11 1 1 2.</_>
-                <_>7 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4085009461268783e-003</threshold>
-            <left_val>0.4682339131832123</left_val>
-            <right_val>0.6377884149551392</right_val></_></_>
-        <_>
-          <!-- tree 153 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 15 3 2 -1.</_>
-                <_>15 16 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.9322688826359808e-004</threshold>
-            <left_val>0.5458530187606812</left_val>
-            <right_val>0.4150482118129730</right_val></_></_>
-        <_>
-          <!-- tree 154 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 15 3 2 -1.</_>
-                <_>2 16 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8979819724336267e-003</threshold>
-            <left_val>0.3690159916877747</left_val>
-            <right_val>0.5149704217910767</right_val></_></_>
-        <_>
-          <!-- tree 155 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 12 6 8 -1.</_>
-                <_>17 12 3 4 2.</_>
-                <_>14 16 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0139704402536154</threshold>
-            <left_val>0.6050562858581543</left_val>
-            <right_val>0.4811357855796814</right_val></_></_>
-        <_>
-          <!-- tree 156 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 8 15 6 -1.</_>
-                <_>7 8 5 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1010081991553307</threshold>
-            <left_val>0.2017080038785934</left_val>
-            <right_val>0.4992361962795258</right_val></_></_>
-        <_>
-          <!-- tree 157 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 2 18 17 -1.</_>
-                <_>8 2 6 17 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0173469204455614</threshold>
-            <left_val>0.5713148713111877</left_val>
-            <right_val>0.4899486005306244</right_val></_></_>
-        <_>
-          <!-- tree 158 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 1 4 1 -1.</_>
-                <_>7 1 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5619759506080300e-004</threshold>
-            <left_val>0.4215388894081116</left_val>
-            <right_val>0.5392642021179199</right_val></_></_>
-        <_>
-          <!-- tree 159 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 2 12 5 -1.</_>
-                <_>9 2 4 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1343892961740494</threshold>
-            <left_val>0.5136151909828186</left_val>
-            <right_val>0.3767612874507904</right_val></_></_>
-        <_>
-          <!-- tree 160 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 2 12 5 -1.</_>
-                <_>7 2 4 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0245822407305241</threshold>
-            <left_val>0.7027357816696167</left_val>
-            <right_val>0.4747906923294067</right_val></_></_>
-        <_>
-          <!-- tree 161 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 9 12 4 -1.</_>
-                <_>10 9 6 2 2.</_>
-                <_>4 11 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.8553720805794001e-003</threshold>
-            <left_val>0.4317409098148346</left_val>
-            <right_val>0.5427716970443726</right_val></_></_>
-        <_>
-          <!-- tree 162 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 15 6 2 -1.</_>
-                <_>5 15 3 1 2.</_>
-                <_>8 16 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3165249731391668e-003</threshold>
-            <left_val>0.5942698717117310</left_val>
-            <right_val>0.4618647992610931</right_val></_></_>
-        <_>
-          <!-- tree 163 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 14 2 3 -1.</_>
-                <_>10 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.8518120311200619e-003</threshold>
-            <left_val>0.6191568970680237</left_val>
-            <right_val>0.4884895086288452</right_val></_></_>
-        <_>
-          <!-- tree 164 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 13 20 2 -1.</_>
-                <_>0 13 10 1 2.</_>
-                <_>10 14 10 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4699938949197531e-003</threshold>
-            <left_val>0.5256664752960205</left_val>
-            <right_val>0.4017199873924255</right_val></_></_>
-        <_>
-          <!-- tree 165 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 9 12 8 -1.</_>
-                <_>10 9 6 4 2.</_>
-                <_>4 13 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0454969592392445</threshold>
-            <left_val>0.5237867832183838</left_val>
-            <right_val>0.2685773968696594</right_val></_></_>
-        <_>
-          <!-- tree 166 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 13 3 6 -1.</_>
-                <_>8 16 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0203195996582508</threshold>
-            <left_val>0.2130445986986160</left_val>
-            <right_val>0.4979738891124725</right_val></_></_>
-        <_>
-          <!-- tree 167 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 12 2 2 -1.</_>
-                <_>10 13 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6994998916052282e-004</threshold>
-            <left_val>0.4814041852951050</left_val>
-            <right_val>0.5543122291564941</right_val></_></_>
-        <_>
-          <!-- tree 168 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 2 2 -1.</_>
-                <_>9 12 1 1 2.</_>
-                <_>10 13 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8232699949294329e-003</threshold>
-            <left_val>0.6482579708099365</left_val>
-            <right_val>0.4709989130496979</right_val></_></_>
-        <_>
-          <!-- tree 169 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 11 14 4 -1.</_>
-                <_>11 11 7 2 2.</_>
-                <_>4 13 7 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3015790656208992e-003</threshold>
-            <left_val>0.4581927955150604</left_val>
-            <right_val>0.5306236147880554</right_val></_></_>
-        <_>
-          <!-- tree 170 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 5 4 2 -1.</_>
-                <_>8 6 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4139499873854220e-004</threshold>
-            <left_val>0.5232086777687073</left_val>
-            <right_val>0.4051763117313385</right_val></_></_>
-        <_>
-          <!-- tree 171 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 10 6 3 -1.</_>
-                <_>12 10 2 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0330369696021080e-003</threshold>
-            <left_val>0.5556201934814453</left_val>
-            <right_val>0.4789193868637085</right_val></_></_>
-        <_>
-          <!-- tree 172 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 14 1 2 -1.</_>
-                <_>2 15 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.8041160365100950e-004</threshold>
-            <left_val>0.5229442715644836</left_val>
-            <right_val>0.4011810123920441</right_val></_></_>
-        <_>
-          <!-- tree 173 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 8 6 12 -1.</_>
-                <_>16 8 3 6 2.</_>
-                <_>13 14 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0614078603684902</threshold>
-            <left_val>0.6298682093620300</left_val>
-            <right_val>0.5010703206062317</right_val></_></_>
-        <_>
-          <!-- tree 174 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 8 6 12 -1.</_>
-                <_>1 8 3 6 2.</_>
-                <_>4 14 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0695439130067825</threshold>
-            <left_val>0.7228280901908875</left_val>
-            <right_val>0.4773184061050415</right_val></_></_>
-        <_>
-          <!-- tree 175 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 0 6 10 -1.</_>
-                <_>12 0 2 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0705426633358002</threshold>
-            <left_val>0.2269513010978699</left_val>
-            <right_val>0.5182529091835022</right_val></_></_>
-        <_>
-          <!-- tree 176 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 11 8 4 -1.</_>
-                <_>5 11 4 2 2.</_>
-                <_>9 13 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4423799477517605e-003</threshold>
-            <left_val>0.5237097144126892</left_val>
-            <right_val>0.4098151028156281</right_val></_></_>
-        <_>
-          <!-- tree 177 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 16 8 4 -1.</_>
-                <_>14 16 4 2 2.</_>
-                <_>10 18 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5494349645450711e-003</threshold>
-            <left_val>0.4773750901222229</left_val>
-            <right_val>0.5468043088912964</right_val></_></_>
-        <_>
-          <!-- tree 178 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 7 6 6 -1.</_>
-                <_>9 7 2 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0239142198115587</threshold>
-            <left_val>0.7146975994110107</left_val>
-            <right_val>0.4783824980258942</right_val></_></_>
-        <_>
-          <!-- tree 179 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 2 4 10 -1.</_>
-                <_>10 2 2 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0124536901712418</threshold>
-            <left_val>0.2635296881198883</left_val>
-            <right_val>0.5241122841835022</right_val></_></_>
-        <_>
-          <!-- tree 180 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 1 4 9 -1.</_>
-                <_>8 1 2 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.0760179904755205e-004</threshold>
-            <left_val>0.3623757064342499</left_val>
-            <right_val>0.5113608837127686</right_val></_></_>
-        <_>
-          <!-- tree 181 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 19 2 1 -1.</_>
-                <_>12 19 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9781080229440704e-005</threshold>
-            <left_val>0.4705932140350342</left_val>
-            <right_val>0.5432801842689514</right_val></_></_></trees>
-      <stage_threshold>90.2533493041992190</stage_threshold>
-      <parent>18</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 20 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 2 4 9 -1.</_>
-                <_>3 2 2 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0117727499455214</threshold>
-            <left_val>0.3860518932342529</left_val>
-            <right_val>0.6421167254447937</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 5 6 4 -1.</_>
-                <_>9 5 2 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0270375702530146</threshold>
-            <left_val>0.4385654926300049</left_val>
-            <right_val>0.6754038929939270</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 4 2 4 -1.</_>
-                <_>9 6 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.6419500247575343e-005</threshold>
-            <left_val>0.5487101078033447</left_val>
-            <right_val>0.3423315882682800</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 5 2 8 -1.</_>
-                <_>14 9 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9995409529656172e-003</threshold>
-            <left_val>0.3230532109737396</left_val>
-            <right_val>0.5400317907333374</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 6 5 12 -1.</_>
-                <_>7 12 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5278300531208515e-003</threshold>
-            <left_val>0.5091639757156372</left_val>
-            <right_val>0.2935043871402741</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 6 2 6 -1.</_>
-                <_>14 9 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.7890920541249216e-004</threshold>
-            <left_val>0.4178153872489929</left_val>
-            <right_val>0.5344064235687256</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 6 2 6 -1.</_>
-                <_>4 9 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1720920447260141e-003</threshold>
-            <left_val>0.2899182140827179</left_val>
-            <right_val>0.5132070779800415</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 15 10 4 -1.</_>
-                <_>13 15 5 2 2.</_>
-                <_>8 17 5 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.5305702416226268e-004</threshold>
-            <left_val>0.4280124902725220</left_val>
-            <right_val>0.5560845136642456</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 18 2 2 -1.</_>
-                <_>7 18 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5099150004971307e-005</threshold>
-            <left_val>0.4044871926307678</left_val>
-            <right_val>0.5404760241508484</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 3 6 2 -1.</_>
-                <_>11 4 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.0817901976406574e-004</threshold>
-            <left_val>0.4271768927574158</left_val>
-            <right_val>0.5503466129302979</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 0 16 6 -1.</_>
-                <_>2 2 16 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3224520739167929e-003</threshold>
-            <left_val>0.3962723910808563</left_val>
-            <right_val>0.5369734764099121</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 3 6 2 -1.</_>
-                <_>11 4 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1037490330636501e-003</threshold>
-            <left_val>0.4727177917957306</left_val>
-            <right_val>0.5237749814987183</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 11 10 3 -1.</_>
-                <_>4 12 10 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4350269921123981e-003</threshold>
-            <left_val>0.5603008270263672</left_val>
-            <right_val>0.4223509132862091</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 3 6 2 -1.</_>
-                <_>11 4 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0767399109899998e-003</threshold>
-            <left_val>0.5225917100906372</left_val>
-            <right_val>0.4732725918292999</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 3 6 2 -1.</_>
-                <_>3 4 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.6412809782195836e-004</threshold>
-            <left_val>0.3999075889587402</left_val>
-            <right_val>0.5432739853858948</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 0 4 7 -1.</_>
-                <_>16 0 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.8302437216043472e-003</threshold>
-            <left_val>0.4678385853767395</left_val>
-            <right_val>0.6027327179908752</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 14 9 6 -1.</_>
-                <_>0 16 9 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0105520701035857</threshold>
-            <left_val>0.3493967056274414</left_val>
-            <right_val>0.5213974714279175</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 16 3 3 -1.</_>
-                <_>9 17 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2731600329279900e-003</threshold>
-            <left_val>0.6185818910598755</left_val>
-            <right_val>0.4749062955379486</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 6 6 2 -1.</_>
-                <_>6 6 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.4786332445219159e-004</threshold>
-            <left_val>0.5285341143608093</left_val>
-            <right_val>0.3843482136726379</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 11 1 3 -1.</_>
-                <_>15 12 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2081359745934606e-003</threshold>
-            <left_val>0.5360640883445740</left_val>
-            <right_val>0.3447335958480835</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 2 3 -1.</_>
-                <_>5 6 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6512730401009321e-003</threshold>
-            <left_val>0.4558292031288147</left_val>
-            <right_val>0.6193962097167969</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 9 2 2 -1.</_>
-                <_>10 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1012479662895203e-003</threshold>
-            <left_val>0.3680230081081390</left_val>
-            <right_val>0.5327628254890442</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 1 4 3 -1.</_>
-                <_>5 1 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.9561518244445324e-004</threshold>
-            <left_val>0.3960595130920410</left_val>
-            <right_val>0.5274940729141235</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 0 4 7 -1.</_>
-                <_>16 0 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0439017713069916</threshold>
-            <left_val>0.7020444869995117</left_val>
-            <right_val>0.4992839097976685</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 20 1 -1.</_>
-                <_>10 0 10 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0346903502941132</threshold>
-            <left_val>0.5049164295196533</left_val>
-            <right_val>0.2766602933406830</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 11 1 3 -1.</_>
-                <_>15 12 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.7442190330475569e-003</threshold>
-            <left_val>0.2672632932662964</left_val>
-            <right_val>0.5274971127510071</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 4 3 4 -1.</_>
-                <_>1 4 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3316588960587978e-003</threshold>
-            <left_val>0.4579482972621918</left_val>
-            <right_val>0.6001101732254028</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 3 3 6 -1.</_>
-                <_>16 5 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0200445707887411</threshold>
-            <left_val>0.3171594142913818</left_val>
-            <right_val>0.5235717892646790</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 3 3 6 -1.</_>
-                <_>1 5 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3492030557245016e-003</threshold>
-            <left_val>0.5265362858772278</left_val>
-            <right_val>0.4034324884414673</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 2 12 6 -1.</_>
-                <_>12 2 6 3 2.</_>
-                <_>6 5 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9702018946409225e-003</threshold>
-            <left_val>0.5332456827163696</left_val>
-            <right_val>0.4571984112262726</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 10 4 3 -1.</_>
-                <_>8 11 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.3039981760084629e-003</threshold>
-            <left_val>0.4593310952186585</left_val>
-            <right_val>0.6034635901451111</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 2 14 6 -1.</_>
-                <_>11 2 7 3 2.</_>
-                <_>4 5 7 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0129365902394056</threshold>
-            <left_val>0.4437963962554932</left_val>
-            <right_val>0.5372971296310425</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 11 2 3 -1.</_>
-                <_>9 12 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.0148729458451271e-003</threshold>
-            <left_val>0.4680323898792267</left_val>
-            <right_val>0.6437833905220032</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 13 2 3 -1.</_>
-                <_>15 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6401679497212172e-003</threshold>
-            <left_val>0.3709631860256195</left_val>
-            <right_val>0.5314332842826843</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 4 3 -1.</_>
-                <_>8 13 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0139184398576617</threshold>
-            <left_val>0.4723555147647858</left_val>
-            <right_val>0.7130808830261231</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 11 1 3 -1.</_>
-                <_>15 12 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.5087869511917233e-004</threshold>
-            <left_val>0.4492394030094147</left_val>
-            <right_val>0.5370404124259949</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 13 5 2 -1.</_>
-                <_>7 14 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5384349282830954e-004</threshold>
-            <left_val>0.4406864047050476</left_val>
-            <right_val>0.5514402985572815</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 12 6 3 -1.</_>
-                <_>7 13 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2710000630468130e-003</threshold>
-            <left_val>0.4682416915893555</left_val>
-            <right_val>0.5967984199523926</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 11 4 4 -1.</_>
-                <_>5 13 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4120779708027840e-003</threshold>
-            <left_val>0.5079392194747925</left_val>
-            <right_val>0.3018598854541779</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 4 3 3 -1.</_>
-                <_>12 4 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.6025670851813629e-005</threshold>
-            <left_val>0.5601037144660950</left_val>
-            <right_val>0.4471096992492676</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 4 3 3 -1.</_>
-                <_>7 4 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.4905529618263245e-003</threshold>
-            <left_val>0.2207535058259964</left_val>
-            <right_val>0.4989944100379944</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 5 3 6 -1.</_>
-                <_>17 5 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0175131205469370</threshold>
-            <left_val>0.6531215906143189</left_val>
-            <right_val>0.5017648935317993</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 6 12 7 -1.</_>
-                <_>7 6 4 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1428163051605225</threshold>
-            <left_val>0.4967963099479675</left_val>
-            <right_val>0.1482062041759491</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 5 3 6 -1.</_>
-                <_>17 5 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.5345268920063972e-003</threshold>
-            <left_val>0.4898946881294251</left_val>
-            <right_val>0.5954223871231079</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 13 2 3 -1.</_>
-                <_>3 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.6323591424152255e-004</threshold>
-            <left_val>0.3927116990089417</left_val>
-            <right_val>0.5196074247360230</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 5 3 6 -1.</_>
-                <_>17 5 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.0370010752230883e-003</threshold>
-            <left_val>0.5613325238227844</left_val>
-            <right_val>0.4884858131408691</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 5 3 6 -1.</_>
-                <_>2 5 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6614829655736685e-003</threshold>
-            <left_val>0.4472880065441132</left_val>
-            <right_val>0.5578880906105042</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 9 18 1 -1.</_>
-                <_>7 9 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.1188090797513723e-003</threshold>
-            <left_val>0.3840532898902893</left_val>
-            <right_val>0.5397477746009827</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 9 8 7 -1.</_>
-                <_>4 9 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.4000617712736130e-003</threshold>
-            <left_val>0.5843983888626099</left_val>
-            <right_val>0.4533218145370483</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 11 8 2 -1.</_>
-                <_>12 12 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1319601112045348e-004</threshold>
-            <left_val>0.5439221858978272</left_val>
-            <right_val>0.4234727919101715</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 11 8 2 -1.</_>
-                <_>0 12 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0182220991700888</threshold>
-            <left_val>0.1288464963436127</left_val>
-            <right_val>0.4958404898643494</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 13 2 3 -1.</_>
-                <_>9 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.7969247251749039e-003</threshold>
-            <left_val>0.4951297938823700</left_val>
-            <right_val>0.7153480052947998</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 10 12 4 -1.</_>
-                <_>4 10 6 2 2.</_>
-                <_>10 12 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.2395070195198059e-003</threshold>
-            <left_val>0.3946599960327148</left_val>
-            <right_val>0.5194936990737915</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 3 3 7 -1.</_>
-                <_>10 3 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.7086271271109581e-003</threshold>
-            <left_val>0.4897503852844238</left_val>
-            <right_val>0.6064900159835815</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 2 3 5 -1.</_>
-                <_>8 2 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.9934171363711357e-003</threshold>
-            <left_val>0.3245440125465393</left_val>
-            <right_val>0.5060828924179077</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 4 6 -1.</_>
-                <_>11 12 2 3 2.</_>
-                <_>9 15 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0167850591242313</threshold>
-            <left_val>0.1581953018903732</left_val>
-            <right_val>0.5203778743743897</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 6 -1.</_>
-                <_>9 7 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0182720907032490</threshold>
-            <left_val>0.4680935144424439</left_val>
-            <right_val>0.6626979112625122</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 4 4 2 -1.</_>
-                <_>15 5 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.6872838176786900e-003</threshold>
-            <left_val>0.5211697816848755</left_val>
-            <right_val>0.3512184917926788</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 3 -1.</_>
-                <_>9 7 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0739039862528443e-003</threshold>
-            <left_val>0.5768386125564575</left_val>
-            <right_val>0.4529845118522644</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 2 6 4 -1.</_>
-                <_>14 4 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.7093870341777802e-003</threshold>
-            <left_val>0.4507763087749481</left_val>
-            <right_val>0.5313581228256226</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 16 6 1 -1.</_>
-                <_>9 16 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1110709349159151e-004</threshold>
-            <left_val>0.5460820198059082</left_val>
-            <right_val>0.4333376884460449</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 13 2 3 -1.</_>
-                <_>15 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0670139454305172e-003</threshold>
-            <left_val>0.5371856093406677</left_val>
-            <right_val>0.4078390896320343</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 10 -1.</_>
-                <_>9 7 1 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.5943021066486835e-003</threshold>
-            <left_val>0.4471287131309509</left_val>
-            <right_val>0.5643836259841919</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 10 2 6 -1.</_>
-                <_>11 12 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1776031032204628e-003</threshold>
-            <left_val>0.4499393105506897</left_val>
-            <right_val>0.5280330181121826</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 10 4 1 -1.</_>
-                <_>8 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5414369883947074e-004</threshold>
-            <left_val>0.5516173243522644</left_val>
-            <right_val>0.4407708048820496</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 9 2 2 -1.</_>
-                <_>10 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.3522560521960258e-003</threshold>
-            <left_val>0.5194190144538879</left_val>
-            <right_val>0.2465227991342545</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 9 2 2 -1.</_>
-                <_>8 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.4205080484971404e-004</threshold>
-            <left_val>0.3830705881118774</left_val>
-            <right_val>0.5139682292938232</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 7 2 2 -1.</_>
-                <_>13 7 1 1 2.</_>
-                <_>12 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.4488727841526270e-004</threshold>
-            <left_val>0.4891090989112854</left_val>
-            <right_val>0.5974786877632141</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 2 2 -1.</_>
-                <_>5 7 1 1 2.</_>
-                <_>6 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.5116379149258137e-003</threshold>
-            <left_val>0.7413681745529175</left_val>
-            <right_val>0.4768764972686768</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 0 3 14 -1.</_>
-                <_>14 0 1 14 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0125409103929996</threshold>
-            <left_val>0.3648819029331207</left_val>
-            <right_val>0.5252826809883118</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 0 3 14 -1.</_>
-                <_>5 0 1 14 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.4931852072477341e-003</threshold>
-            <left_val>0.5100492835044861</left_val>
-            <right_val>0.3629586994647980</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 4 3 14 -1.</_>
-                <_>14 4 1 14 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0129611501470208</threshold>
-            <left_val>0.5232442021369934</left_val>
-            <right_val>0.4333561062812805</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 14 2 3 -1.</_>
-                <_>9 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.7209449112415314e-003</threshold>
-            <left_val>0.4648149013519287</left_val>
-            <right_val>0.6331052780151367</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 4 3 -1.</_>
-                <_>8 15 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3119079414755106e-003</threshold>
-            <left_val>0.5930309891700745</left_val>
-            <right_val>0.4531058073043823</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 2 3 16 -1.</_>
-                <_>5 2 1 16 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.8262299019843340e-003</threshold>
-            <left_val>0.3870477974414825</left_val>
-            <right_val>0.5257101058959961</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 2 8 10 -1.</_>
-                <_>7 7 8 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4311339473351836e-003</threshold>
-            <left_val>0.5522503256797791</left_val>
-            <right_val>0.4561854898929596</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 14 7 3 -1.</_>
-                <_>6 15 7 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9378310535103083e-003</threshold>
-            <left_val>0.4546220898628235</left_val>
-            <right_val>0.5736966729164124</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 2 10 12 -1.</_>
-                <_>14 2 5 6 2.</_>
-                <_>9 8 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6343559147790074e-004</threshold>
-            <left_val>0.5345739126205444</left_val>
-            <right_val>0.4571875035762787</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 7 8 2 -1.</_>
-                <_>6 8 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.8257522545754910e-004</threshold>
-            <left_val>0.3967815935611725</left_val>
-            <right_val>0.5220187902450562</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 13 4 6 -1.</_>
-                <_>8 16 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0195504408329725</threshold>
-            <left_val>0.2829642891883850</left_val>
-            <right_val>0.5243508219718933</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 1 3 -1.</_>
-                <_>6 7 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.3914958951063454e-004</threshold>
-            <left_val>0.4590066969394684</left_val>
-            <right_val>0.5899090170860291</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 2 4 6 -1.</_>
-                <_>16 4 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0214520003646612</threshold>
-            <left_val>0.5231410861015320</left_val>
-            <right_val>0.2855378985404968</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 4 2 -1.</_>
-                <_>6 6 2 1 2.</_>
-                <_>8 7 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.8973580598831177e-004</threshold>
-            <left_val>0.4397256970405579</left_val>
-            <right_val>0.5506421923637390</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 2 4 6 -1.</_>
-                <_>16 4 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0261576101183891</threshold>
-            <left_val>0.3135079145431519</left_val>
-            <right_val>0.5189175009727478</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 4 6 -1.</_>
-                <_>0 4 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0139598604291677</threshold>
-            <left_val>0.3213272988796234</left_val>
-            <right_val>0.5040717720985413</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 6 2 6 -1.</_>
-                <_>9 6 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3699018210172653e-003</threshold>
-            <left_val>0.6387544870376587</left_val>
-            <right_val>0.4849506914615631</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 4 6 10 -1.</_>
-                <_>3 9 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.5613820701837540e-003</threshold>
-            <left_val>0.2759132087230682</left_val>
-            <right_val>0.5032019019126892</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 2 6 -1.</_>
-                <_>9 5 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.6622901037335396e-004</threshold>
-            <left_val>0.4685640931129456</left_val>
-            <right_val>0.5834879279136658</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 13 2 3 -1.</_>
-                <_>3 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.6550268568098545e-004</threshold>
-            <left_val>0.5175207257270813</left_val>
-            <right_val>0.3896422088146210</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 13 3 2 -1.</_>
-                <_>13 14 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.1833340227603912e-003</threshold>
-            <left_val>0.2069136947393417</left_val>
-            <right_val>0.5208122134208679</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 16 10 4 -1.</_>
-                <_>2 16 5 2 2.</_>
-                <_>7 18 5 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.3976939097046852e-003</threshold>
-            <left_val>0.6134091019630432</left_val>
-            <right_val>0.4641222953796387</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 10 6 -1.</_>
-                <_>10 6 5 3 2.</_>
-                <_>5 9 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8028980381786823e-003</threshold>
-            <left_val>0.5454108119010925</left_val>
-            <right_val>0.4395219981670380</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 14 1 3 -1.</_>
-                <_>7 15 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.5680569708347321e-003</threshold>
-            <left_val>0.6344485282897949</left_val>
-            <right_val>0.4681093990802765</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 16 6 3 -1.</_>
-                <_>14 17 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.0733120404183865e-003</threshold>
-            <left_val>0.5292683243751526</left_val>
-            <right_val>0.4015620052814484</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 3 3 -1.</_>
-                <_>5 5 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2568129459396005e-003</threshold>
-            <left_val>0.4392988085746765</left_val>
-            <right_val>0.5452824831008911</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 4 10 3 -1.</_>
-                <_>7 5 10 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9065010603517294e-003</threshold>
-            <left_val>0.5898832082748413</left_val>
-            <right_val>0.4863379895687103</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 4 5 4 -1.</_>
-                <_>0 6 5 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4409340694546700e-003</threshold>
-            <left_val>0.4069364964962006</left_val>
-            <right_val>0.5247421860694885</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 11 3 9 -1.</_>
-                <_>13 14 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0248307008296251</threshold>
-            <left_val>0.5182725787162781</left_val>
-            <right_val>0.3682524859905243</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 11 3 9 -1.</_>
-                <_>4 14 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0488540083169937</threshold>
-            <left_val>0.1307577937841415</left_val>
-            <right_val>0.4961281120777130</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 2 1 -1.</_>
-                <_>9 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.6110379947349429e-003</threshold>
-            <left_val>0.6421005725860596</left_val>
-            <right_val>0.4872662127017975</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 0 6 17 -1.</_>
-                <_>7 0 2 17 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0970094799995422</threshold>
-            <left_val>0.0477693490684032</left_val>
-            <right_val>0.4950988888740540</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 3 6 3 -1.</_>
-                <_>10 3 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1209240183234215e-003</threshold>
-            <left_val>0.4616267085075378</left_val>
-            <right_val>0.5354745984077454</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 2 15 4 -1.</_>
-                <_>7 2 5 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.3064090162515640e-003</threshold>
-            <left_val>0.6261854171752930</left_val>
-            <right_val>0.4638805985450745</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 2 8 2 -1.</_>
-                <_>12 2 4 1 2.</_>
-                <_>8 3 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5771620352752507e-004</threshold>
-            <left_val>0.5384417772293091</left_val>
-            <right_val>0.4646640121936798</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 1 3 6 -1.</_>
-                <_>8 3 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3149951165542006e-004</threshold>
-            <left_val>0.3804047107696533</left_val>
-            <right_val>0.5130257010459900</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 17 2 2 -1.</_>
-                <_>9 18 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4505970466416329e-004</threshold>
-            <left_val>0.4554310142993927</left_val>
-            <right_val>0.5664461851119995</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 2 14 -1.</_>
-                <_>1 0 1 14 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0164745505899191</threshold>
-            <left_val>0.6596958041191101</left_val>
-            <right_val>0.4715859889984131</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 0 7 3 -1.</_>
-                <_>12 1 7 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0133695797994733</threshold>
-            <left_val>0.5195466279983521</left_val>
-            <right_val>0.3035964965820313</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 14 1 2 -1.</_>
-                <_>1 15 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0271780047332868e-004</threshold>
-            <left_val>0.5229176282882690</left_val>
-            <right_val>0.4107066094875336</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 12 2 8 -1.</_>
-                <_>15 12 1 4 2.</_>
-                <_>14 16 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.5311559699475765e-003</threshold>
-            <left_val>0.6352887749671936</left_val>
-            <right_val>0.4960907101631165</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 0 7 3 -1.</_>
-                <_>1 1 7 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6187049224972725e-003</threshold>
-            <left_val>0.3824546039104462</left_val>
-            <right_val>0.5140984058380127</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 12 2 8 -1.</_>
-                <_>15 12 1 4 2.</_>
-                <_>14 16 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0834268331527710e-003</threshold>
-            <left_val>0.4950439929962158</left_val>
-            <right_val>0.6220818758010864</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 0 8 12 -1.</_>
-                <_>6 0 4 6 2.</_>
-                <_>10 6 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0798181593418121</threshold>
-            <left_val>0.4952335953712463</left_val>
-            <right_val>0.1322475969791412</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 1 8 9 -1.</_>
-                <_>6 4 8 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0992265865206718</threshold>
-            <left_val>0.7542728781700134</left_val>
-            <right_val>0.5008416771888733</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 2 2 2 -1.</_>
-                <_>5 3 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.5174017800018191e-004</threshold>
-            <left_val>0.3699302971363068</left_val>
-            <right_val>0.5130121111869812</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 14 6 6 -1.</_>
-                <_>16 14 3 3 2.</_>
-                <_>13 17 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0189968496561050</threshold>
-            <left_val>0.6689178943634033</left_val>
-            <right_val>0.4921202957630158</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 17 20 2 -1.</_>
-                <_>0 17 10 1 2.</_>
-                <_>10 18 10 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0173468999564648</threshold>
-            <left_val>0.4983300864696503</left_val>
-            <right_val>0.1859198063611984</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 3 2 6 -1.</_>
-                <_>11 3 1 3 2.</_>
-                <_>10 6 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.5082101607695222e-004</threshold>
-            <left_val>0.4574424028396606</left_val>
-            <right_val>0.5522121787071228</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 12 6 2 -1.</_>
-                <_>8 12 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0056050270795822e-003</threshold>
-            <left_val>0.5131744742393494</left_val>
-            <right_val>0.3856469988822937</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 7 6 13 -1.</_>
-                <_>10 7 3 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.7688191086053848e-003</threshold>
-            <left_val>0.4361700117588043</left_val>
-            <right_val>0.5434309244155884</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 15 10 5 -1.</_>
-                <_>10 15 5 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0508782789111137</threshold>
-            <left_val>0.4682720899581909</left_val>
-            <right_val>0.6840639710426331</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 4 4 10 -1.</_>
-                <_>10 4 2 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2901780903339386e-003</threshold>
-            <left_val>0.4329245090484619</left_val>
-            <right_val>0.5306099057197571</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 2 1 -1.</_>
-                <_>6 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5715380141045898e-004</threshold>
-            <left_val>0.5370057225227356</left_val>
-            <right_val>0.4378164112567902</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 3 6 7 -1.</_>
-                <_>10 3 3 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1051924005150795</threshold>
-            <left_val>0.5137274265289307</left_val>
-            <right_val>0.0673614665865898</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 3 6 7 -1.</_>
-                <_>7 3 3 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7198919560760260e-003</threshold>
-            <left_val>0.4112060964107513</left_val>
-            <right_val>0.5255665183067322</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 7 18 5 -1.</_>
-                <_>7 7 6 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0483377799391747</threshold>
-            <left_val>0.5404623746871948</left_val>
-            <right_val>0.4438967108726502</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 17 4 3 -1.</_>
-                <_>5 17 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.5703761326149106e-004</threshold>
-            <left_val>0.4355969130992889</left_val>
-            <right_val>0.5399510860443115</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 12 6 -1.</_>
-                <_>14 14 6 3 2.</_>
-                <_>8 17 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0253712590783834</threshold>
-            <left_val>0.5995175242424011</left_val>
-            <right_val>0.5031024813652039</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 13 20 4 -1.</_>
-                <_>0 13 10 2 2.</_>
-                <_>10 15 10 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0524579510092735</threshold>
-            <left_val>0.4950287938117981</left_val>
-            <right_val>0.1398351043462753</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 5 14 2 -1.</_>
-                <_>11 5 7 1 2.</_>
-                <_>4 6 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0123656298965216</threshold>
-            <left_val>0.6397299170494080</left_val>
-            <right_val>0.4964106082916260</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 2 10 12 -1.</_>
-                <_>1 2 5 6 2.</_>
-                <_>6 8 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1458971947431564</threshold>
-            <left_val>0.1001669988036156</left_val>
-            <right_val>0.4946322143077850</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 1 14 3 -1.</_>
-                <_>6 2 14 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0159086007624865</threshold>
-            <left_val>0.3312329947948456</left_val>
-            <right_val>0.5208340883255005</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 16 2 3 -1.</_>
-                <_>8 17 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.9486068999394774e-004</threshold>
-            <left_val>0.4406363964080811</left_val>
-            <right_val>0.5426102876663208</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 17 3 2 -1.</_>
-                <_>10 17 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2454001270234585e-003</threshold>
-            <left_val>0.2799589931964874</left_val>
-            <right_val>0.5189967155456543</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 15 4 2 -1.</_>
-                <_>5 15 2 1 2.</_>
-                <_>7 16 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.0421799533069134e-003</threshold>
-            <left_val>0.6987580060958862</left_val>
-            <right_val>0.4752142131328583</right_val></_></_>
-        <_>
-          <!-- tree 135 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 15 1 3 -1.</_>
-                <_>10 16 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9812189750373363e-003</threshold>
-            <left_val>0.4983288943767548</left_val>
-            <right_val>0.6307479739189148</right_val></_></_>
-        <_>
-          <!-- tree 136 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 16 4 4 -1.</_>
-                <_>8 16 2 2 2.</_>
-                <_>10 18 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.2884308174252510e-003</threshold>
-            <left_val>0.2982333004474640</left_val>
-            <right_val>0.5026869773864746</right_val></_></_>
-        <_>
-          <!-- tree 137 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 11 8 6 -1.</_>
-                <_>6 14 8 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5094350092113018e-003</threshold>
-            <left_val>0.5308442115783691</left_val>
-            <right_val>0.3832970857620239</right_val></_></_>
-        <_>
-          <!-- tree 138 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 13 5 2 -1.</_>
-                <_>2 14 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.3340799212455750e-003</threshold>
-            <left_val>0.2037964016199112</left_val>
-            <right_val>0.4969817101955414</right_val></_></_>
-        <_>
-          <!-- tree 139 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 14 6 6 -1.</_>
-                <_>16 14 3 3 2.</_>
-                <_>13 17 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0286671407520771</threshold>
-            <left_val>0.5025696754455566</left_val>
-            <right_val>0.6928027272224426</right_val></_></_>
-        <_>
-          <!-- tree 140 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 9 18 4 -1.</_>
-                <_>7 9 6 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1701968014240265</threshold>
-            <left_val>0.4960052967071533</left_val>
-            <right_val>0.1476442962884903</right_val></_></_>
-        <_>
-          <!-- tree 141 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 14 6 6 -1.</_>
-                <_>16 14 3 3 2.</_>
-                <_>13 17 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.2614478841423988e-003</threshold>
-            <left_val>0.5603063702583313</left_val>
-            <right_val>0.4826056063175201</right_val></_></_>
-        <_>
-          <!-- tree 142 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 1 6 -1.</_>
-                <_>0 4 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.5769277969375253e-004</threshold>
-            <left_val>0.5205562114715576</left_val>
-            <right_val>0.4129633009433746</right_val></_></_>
-        <_>
-          <!-- tree 143 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 0 15 20 -1.</_>
-                <_>5 10 15 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3625833988189697</threshold>
-            <left_val>0.5221652984619141</left_val>
-            <right_val>0.3768612146377564</right_val></_></_>
-        <_>
-          <!-- tree 144 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 14 6 6 -1.</_>
-                <_>1 14 3 3 2.</_>
-                <_>4 17 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0116151301190257</threshold>
-            <left_val>0.6022682785987854</left_val>
-            <right_val>0.4637489914894104</right_val></_></_>
-        <_>
-          <!-- tree 145 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 4 6 -1.</_>
-                <_>10 14 2 3 2.</_>
-                <_>8 17 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.0795197710394859e-003</threshold>
-            <left_val>0.4070447087287903</left_val>
-            <right_val>0.5337479114532471</right_val></_></_>
-        <_>
-          <!-- tree 146 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 11 2 1 -1.</_>
-                <_>8 11 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.7204300537705421e-004</threshold>
-            <left_val>0.4601835012435913</left_val>
-            <right_val>0.5900393128395081</right_val></_></_>
-        <_>
-          <!-- tree 147 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 17 3 2 -1.</_>
-                <_>10 17 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.7543348995968699e-004</threshold>
-            <left_val>0.5398252010345459</left_val>
-            <right_val>0.4345428943634033</right_val></_></_>
-        <_>
-          <!-- tree 148 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 17 3 2 -1.</_>
-                <_>9 17 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.3295697327703238e-004</threshold>
-            <left_val>0.5201563239097595</left_val>
-            <right_val>0.4051358997821808</right_val></_></_>
-        <_>
-          <!-- tree 149 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 14 4 6 -1.</_>
-                <_>14 14 2 3 2.</_>
-                <_>12 17 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2435320531949401e-003</threshold>
-            <left_val>0.4642387926578522</left_val>
-            <right_val>0.5547441244125366</right_val></_></_>
-        <_>
-          <!-- tree 150 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 14 4 6 -1.</_>
-                <_>4 14 2 3 2.</_>
-                <_>6 17 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.7363857738673687e-003</threshold>
-            <left_val>0.6198567152023315</left_val>
-            <right_val>0.4672552049160004</right_val></_></_>
-        <_>
-          <!-- tree 151 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 14 2 6 -1.</_>
-                <_>14 14 1 3 2.</_>
-                <_>13 17 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.4658462069928646e-003</threshold>
-            <left_val>0.6837332844734192</left_val>
-            <right_val>0.5019000768661499</right_val></_></_>
-        <_>
-          <!-- tree 152 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 14 2 6 -1.</_>
-                <_>5 14 1 3 2.</_>
-                <_>6 17 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.5017321351915598e-004</threshold>
-            <left_val>0.4344803094863892</left_val>
-            <right_val>0.5363622903823853</right_val></_></_>
-        <_>
-          <!-- tree 153 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 0 6 12 -1.</_>
-                <_>7 4 6 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5754920605104417e-004</threshold>
-            <left_val>0.4760079085826874</left_val>
-            <right_val>0.5732020735740662</right_val></_></_>
-        <_>
-          <!-- tree 154 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 7 12 2 -1.</_>
-                <_>4 7 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.9774366244673729e-003</threshold>
-            <left_val>0.5090985894203186</left_val>
-            <right_val>0.3635039925575256</right_val></_></_>
-        <_>
-          <!-- tree 155 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 3 3 13 -1.</_>
-                <_>11 3 1 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.1464529931545258e-004</threshold>
-            <left_val>0.5570064783096314</left_val>
-            <right_val>0.4593802094459534</right_val></_></_>
-        <_>
-          <!-- tree 156 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 3 3 13 -1.</_>
-                <_>8 3 1 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.5888899583369493e-004</threshold>
-            <left_val>0.5356845855712891</left_val>
-            <right_val>0.4339134991168976</right_val></_></_>
-        <_>
-          <!-- tree 157 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 8 6 3 -1.</_>
-                <_>10 9 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.0463250479660928e-004</threshold>
-            <left_val>0.4439803063869476</left_val>
-            <right_val>0.5436776876449585</right_val></_></_>
-        <_>
-          <!-- tree 158 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 11 3 2 -1.</_>
-                <_>4 11 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.2184787606820464e-004</threshold>
-            <left_val>0.4042294919490814</left_val>
-            <right_val>0.5176299214363098</right_val></_></_>
-        <_>
-          <!-- tree 159 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 12 6 8 -1.</_>
-                <_>16 12 3 4 2.</_>
-                <_>13 16 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9467419050633907e-003</threshold>
-            <left_val>0.4927651882171631</left_val>
-            <right_val>0.5633779764175415</right_val></_></_>
-        <_>
-          <!-- tree 160 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 6 6 5 -1.</_>
-                <_>9 6 2 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0217533893883228</threshold>
-            <left_val>0.8006293773651123</left_val>
-            <right_val>0.4800840914249420</right_val></_></_>
-        <_>
-          <!-- tree 161 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 11 2 7 -1.</_>
-                <_>17 11 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0145403798669577</threshold>
-            <left_val>0.3946054875850678</left_val>
-            <right_val>0.5182222723960877</right_val></_></_>
-        <_>
-          <!-- tree 162 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 13 8 2 -1.</_>
-                <_>7 13 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0405107699334621</threshold>
-            <left_val>0.0213249903172255</left_val>
-            <right_val>0.4935792982578278</right_val></_></_>
-        <_>
-          <!-- tree 163 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 9 8 3 -1.</_>
-                <_>6 10 8 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.8458268176764250e-004</threshold>
-            <left_val>0.4012795984745026</left_val>
-            <right_val>0.5314025282859802</right_val></_></_>
-        <_>
-          <!-- tree 164 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 3 4 3 -1.</_>
-                <_>4 4 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.5151800625026226e-003</threshold>
-            <left_val>0.4642418920993805</left_val>
-            <right_val>0.5896260738372803</right_val></_></_>
-        <_>
-          <!-- tree 165 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 3 4 3 -1.</_>
-                <_>11 4 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.0626221820712090e-003</threshold>
-            <left_val>0.6502159237861633</left_val>
-            <right_val>0.5016477704048157</right_val></_></_>
-        <_>
-          <!-- tree 166 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 4 17 12 -1.</_>
-                <_>1 8 17 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0945358425378799</threshold>
-            <left_val>0.5264708995819092</left_val>
-            <right_val>0.4126827120780945</right_val></_></_>
-        <_>
-          <!-- tree 167 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 3 4 3 -1.</_>
-                <_>11 4 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.7315051779150963e-003</threshold>
-            <left_val>0.4879199862480164</left_val>
-            <right_val>0.5892447829246521</right_val></_></_>
-        <_>
-          <!-- tree 168 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 8 6 3 -1.</_>
-                <_>4 9 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2571471314877272e-004</threshold>
-            <left_val>0.3917280137538910</left_val>
-            <right_val>0.5189412832260132</right_val></_></_>
-        <_>
-          <!-- tree 169 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 3 5 3 -1.</_>
-                <_>12 4 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5464049540460110e-003</threshold>
-            <left_val>0.5837599039077759</left_val>
-            <right_val>0.4985705912113190</right_val></_></_>
-        <_>
-          <!-- tree 170 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 11 2 7 -1.</_>
-                <_>2 11 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0260756891220808</threshold>
-            <left_val>0.1261983960866928</left_val>
-            <right_val>0.4955821931362152</right_val></_></_>
-        <_>
-          <!-- tree 171 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 12 2 8 -1.</_>
-                <_>16 12 1 4 2.</_>
-                <_>15 16 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.4779709316790104e-003</threshold>
-            <left_val>0.5722513794898987</left_val>
-            <right_val>0.5010265707969666</right_val></_></_>
-        <_>
-          <!-- tree 172 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 8 11 3 -1.</_>
-                <_>4 9 11 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1337741315364838e-003</threshold>
-            <left_val>0.5273262262344360</left_val>
-            <right_val>0.4226376116275787</right_val></_></_>
-        <_>
-          <!-- tree 173 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 13 6 2 -1.</_>
-                <_>12 13 3 1 2.</_>
-                <_>9 14 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.7944980906322598e-004</threshold>
-            <left_val>0.4450066983699799</left_val>
-            <right_val>0.5819587111473084</right_val></_></_>
-        <_>
-          <!-- tree 174 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 13 4 3 -1.</_>
-                <_>6 14 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1114079281687737e-003</threshold>
-            <left_val>0.5757653117179871</left_val>
-            <right_val>0.4511714875698090</right_val></_></_>
-        <_>
-          <!-- tree 175 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 3 3 -1.</_>
-                <_>10 12 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0131799904629588</threshold>
-            <left_val>0.1884381026029587</left_val>
-            <right_val>0.5160734057426453</right_val></_></_>
-        <_>
-          <!-- tree 176 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 3 3 3 -1.</_>
-                <_>5 4 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.7968099825084209e-003</threshold>
-            <left_val>0.6589789986610413</left_val>
-            <right_val>0.4736118912696838</right_val></_></_>
-        <_>
-          <!-- tree 177 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 4 2 3 -1.</_>
-                <_>9 5 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.7483168095350266e-003</threshold>
-            <left_val>0.5259429812431335</left_val>
-            <right_val>0.3356395065784454</right_val></_></_>
-        <_>
-          <!-- tree 178 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 16 3 -1.</_>
-                <_>0 3 16 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4623369788751006e-003</threshold>
-            <left_val>0.5355271100997925</left_val>
-            <right_val>0.4264092147350311</right_val></_></_>
-        <_>
-          <!-- tree 179 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 12 2 8 -1.</_>
-                <_>16 12 1 4 2.</_>
-                <_>15 16 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.7645159065723419e-003</threshold>
-            <left_val>0.5034406781196594</left_val>
-            <right_val>0.5786827802658081</right_val></_></_>
-        <_>
-          <!-- tree 180 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 12 2 8 -1.</_>
-                <_>3 12 1 4 2.</_>
-                <_>4 16 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.8066660314798355e-003</threshold>
-            <left_val>0.4756605029106140</left_val>
-            <right_val>0.6677829027175903</right_val></_></_>
-        <_>
-          <!-- tree 181 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 13 3 6 -1.</_>
-                <_>14 15 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.6608621012419462e-003</threshold>
-            <left_val>0.5369611978530884</left_val>
-            <right_val>0.4311546981334686</right_val></_></_>
-        <_>
-          <!-- tree 182 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 13 3 6 -1.</_>
-                <_>3 15 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0214496403932571</threshold>
-            <left_val>0.4968641996383667</left_val>
-            <right_val>0.1888816058635712</right_val></_></_>
-        <_>
-          <!-- tree 183 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 5 10 2 -1.</_>
-                <_>11 5 5 1 2.</_>
-                <_>6 6 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.1678901761770248e-003</threshold>
-            <left_val>0.4930733144283295</left_val>
-            <right_val>0.5815368890762329</right_val></_></_>
-        <_>
-          <!-- tree 184 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 14 14 6 -1.</_>
-                <_>2 17 14 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.6467564105987549e-003</threshold>
-            <left_val>0.5205205082893372</left_val>
-            <right_val>0.4132595062255859</right_val></_></_>
-        <_>
-          <!-- tree 185 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 14 1 3 -1.</_>
-                <_>10 15 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.6114078829996288e-004</threshold>
-            <left_val>0.5483555197715759</left_val>
-            <right_val>0.4800927937030792</right_val></_></_>
-        <_>
-          <!-- tree 186 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 16 2 2 -1.</_>
-                <_>4 16 1 1 2.</_>
-                <_>5 17 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0808729566633701e-003</threshold>
-            <left_val>0.4689902067184448</left_val>
-            <right_val>0.6041421294212341</right_val></_></_>
-        <_>
-          <!-- tree 187 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 6 2 3 -1.</_>
-                <_>10 7 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.7719959877431393e-003</threshold>
-            <left_val>0.5171142220497131</left_val>
-            <right_val>0.3053277134895325</right_val></_></_>
-        <_>
-          <!-- tree 188 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 17 20 2 -1.</_>
-                <_>0 17 10 1 2.</_>
-                <_>10 18 10 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5720770461484790e-003</threshold>
-            <left_val>0.5219978094100952</left_val>
-            <right_val>0.4178803861141205</right_val></_></_>
-        <_>
-          <!-- tree 189 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 6 1 3 -1.</_>
-                <_>13 7 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.9307859474793077e-003</threshold>
-            <left_val>0.5860369801521301</left_val>
-            <right_val>0.4812920093536377</right_val></_></_>
-        <_>
-          <!-- tree 190 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 13 3 2 -1.</_>
-                <_>9 13 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.8926272690296173e-003</threshold>
-            <left_val>0.1749276965856552</left_val>
-            <right_val>0.4971733987331390</right_val></_></_>
-        <_>
-          <!-- tree 191 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 2 3 3 -1.</_>
-                <_>13 2 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2224679123610258e-003</threshold>
-            <left_val>0.4342589080333710</left_val>
-            <right_val>0.5212848186492920</right_val></_></_>
-        <_>
-          <!-- tree 192 -->
-          <_>
-            <!-- 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.9011989934369922e-003</threshold>
-            <left_val>0.4765186905860901</left_val>
-            <right_val>0.6892055273056030</right_val></_></_>
-        <_>
-          <!-- tree 193 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 16 3 4 -1.</_>
-                <_>10 16 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7576119173318148e-003</threshold>
-            <left_val>0.5262191295623779</left_val>
-            <right_val>0.4337486028671265</right_val></_></_>
-        <_>
-          <!-- tree 194 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 1 3 -1.</_>
-                <_>6 7 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1787449046969414e-003</threshold>
-            <left_val>0.4804069101810455</left_val>
-            <right_val>0.7843729257583618</right_val></_></_>
-        <_>
-          <!-- tree 195 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 1 5 2 -1.</_>
-                <_>13 2 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.0273341629654169e-004</threshold>
-            <left_val>0.4120846986770630</left_val>
-            <right_val>0.5353423953056335</right_val></_></_>
-        <_>
-          <!-- tree 196 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 14 6 2 -1.</_>
-                <_>7 14 3 1 2.</_>
-                <_>10 15 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1797959022223949e-003</threshold>
-            <left_val>0.4740372896194458</left_val>
-            <right_val>0.6425960063934326</right_val></_></_>
-        <_>
-          <!-- tree 197 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 3 3 4 -1.</_>
-                <_>12 3 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0101140001788735</threshold>
-            <left_val>0.2468792051076889</left_val>
-            <right_val>0.5175017714500427</right_val></_></_>
-        <_>
-          <!-- tree 198 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 13 12 6 -1.</_>
-                <_>5 13 4 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0186170600354671</threshold>
-            <left_val>0.5756294131278992</left_val>
-            <right_val>0.4628978967666626</right_val></_></_>
-        <_>
-          <!-- tree 199 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 11 5 2 -1.</_>
-                <_>14 12 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9225959703326225e-003</threshold>
-            <left_val>0.5169625878334045</left_val>
-            <right_val>0.3214271068572998</right_val></_></_>
-        <_>
-          <!-- tree 200 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 15 14 4 -1.</_>
-                <_>2 15 7 2 2.</_>
-                <_>9 17 7 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.2945079989731312e-003</threshold>
-            <left_val>0.3872014880180359</left_val>
-            <right_val>0.5141636729240418</right_val></_></_>
-        <_>
-          <!-- tree 201 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 7 14 2 -1.</_>
-                <_>10 7 7 1 2.</_>
-                <_>3 8 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5353019163012505e-003</threshold>
-            <left_val>0.4853048920631409</left_val>
-            <right_val>0.6310489773750305</right_val></_></_>
-        <_>
-          <!-- tree 202 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 11 4 2 -1.</_>
-                <_>1 12 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0878399480134249e-003</threshold>
-            <left_val>0.5117315053939819</left_val>
-            <right_val>0.3723258972167969</right_val></_></_>
-        <_>
-          <!-- tree 203 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 0 6 14 -1.</_>
-                <_>16 0 2 14 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0225422400981188</threshold>
-            <left_val>0.5692740082740784</left_val>
-            <right_val>0.4887112975120544</right_val></_></_>
-        <_>
-          <!-- tree 204 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 11 1 3 -1.</_>
-                <_>4 12 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.0065660830587149e-003</threshold>
-            <left_val>0.2556012868881226</left_val>
-            <right_val>0.5003992915153503</right_val></_></_>
-        <_>
-          <!-- tree 205 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 0 6 14 -1.</_>
-                <_>16 0 2 14 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.4741272255778313e-003</threshold>
-            <left_val>0.4810872972011566</left_val>
-            <right_val>0.5675926804542542</right_val></_></_>
-        <_>
-          <!-- tree 206 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 10 3 7 -1.</_>
-                <_>2 10 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0261623207479715</threshold>
-            <left_val>0.4971194863319397</left_val>
-            <right_val>0.1777237057685852</right_val></_></_>
-        <_>
-          <!-- tree 207 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 9 2 -1.</_>
-                <_>8 13 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.4352738233283162e-004</threshold>
-            <left_val>0.4940010905265808</left_val>
-            <right_val>0.5491250753402710</right_val></_></_>
-        <_>
-          <!-- tree 208 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 6 20 1 -1.</_>
-                <_>10 6 10 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0333632417023182</threshold>
-            <left_val>0.5007612109184265</left_val>
-            <right_val>0.2790724039077759</right_val></_></_>
-        <_>
-          <!-- tree 209 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 4 4 4 -1.</_>
-                <_>8 4 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0151186501607299</threshold>
-            <left_val>0.7059578895568848</left_val>
-            <right_val>0.4973031878471375</right_val></_></_>
-        <_>
-          <!-- tree 210 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 2 2 -1.</_>
-                <_>0 1 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.8648946732282639e-004</threshold>
-            <left_val>0.5128620266914368</left_val>
-            <right_val>0.3776761889457703</right_val></_></_></trees>
-      <stage_threshold>104.7491989135742200</stage_threshold>
-      <parent>19</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 21 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 3 10 9 -1.</_>
-                <_>5 6 10 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0951507985591888</threshold>
-            <left_val>0.6470757126808167</left_val>
-            <right_val>0.4017286896705627</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 2 4 10 -1.</_>
-                <_>15 2 2 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.2702340073883533e-003</threshold>
-            <left_val>0.3999822139739990</left_val>
-            <right_val>0.5746449232101440</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 2 2 7 -1.</_>
-                <_>9 2 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.0018089455552399e-004</threshold>
-            <left_val>0.3558770120143890</left_val>
-            <right_val>0.5538809895515442</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 4 12 1 -1.</_>
-                <_>11 4 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1757409665733576e-003</threshold>
-            <left_val>0.4256534874439240</left_val>
-            <right_val>0.5382617712020874</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 4 9 1 -1.</_>
-                <_>6 4 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.4235268433112651e-005</threshold>
-            <left_val>0.3682908117771149</left_val>
-            <right_val>0.5589926838874817</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 10 1 4 -1.</_>
-                <_>15 12 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9936920327600092e-005</threshold>
-            <left_val>0.5452470183372498</left_val>
-            <right_val>0.4020367860794067</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 10 6 4 -1.</_>
-                <_>7 10 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.0073199886828661e-003</threshold>
-            <left_val>0.5239058136940002</left_val>
-            <right_val>0.3317843973636627</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>15 9 1 6 -1.</_>
-                <_>15 12 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0105138896033168</threshold>
-            <left_val>0.4320689141750336</left_val>
-            <right_val>0.5307983756065369</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 17 6 3 -1.</_>
-                <_>7 18 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.3476826548576355e-003</threshold>
-            <left_val>0.4504637122154236</left_val>
-            <right_val>0.6453298926353455</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 3 2 16 -1.</_>
-                <_>15 3 1 8 2.</_>
-                <_>14 11 1 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.1492270063608885e-003</threshold>
-            <left_val>0.4313425123691559</left_val>
-            <right_val>0.5370525121688843</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 9 1 6 -1.</_>
-                <_>4 12 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4435649973165710e-005</threshold>
-            <left_val>0.5326603055000305</left_val>
-            <right_val>0.3817971944808960</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 1 5 2 -1.</_>
-                <_>12 2 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.2855090578086674e-004</threshold>
-            <left_val>0.4305163919925690</left_val>
-            <right_val>0.5382009744644165</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 18 4 2 -1.</_>
-                <_>6 18 2 1 2.</_>
-                <_>8 19 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5062429883982986e-004</threshold>
-            <left_val>0.4235970973968506</left_val>
-            <right_val>0.5544965267181397</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 4 16 10 -1.</_>
-                <_>10 4 8 5 2.</_>
-                <_>2 9 8 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0715598315000534</threshold>
-            <left_val>0.5303059816360474</left_val>
-            <right_val>0.2678802907466888</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 5 1 10 -1.</_>
-                <_>6 10 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.4095180500298738e-004</threshold>
-            <left_val>0.3557108938694000</left_val>
-            <right_val>0.5205433964729309</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 8 15 2 -1.</_>
-                <_>9 8 5 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0629865005612373</threshold>
-            <left_val>0.5225362777709961</left_val>
-            <right_val>0.2861376106739044</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 8 15 2 -1.</_>
-                <_>6 8 5 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.3798629883676767e-003</threshold>
-            <left_val>0.3624185919761658</left_val>
-            <right_val>0.5201697945594788</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 3 6 -1.</_>
-                <_>9 7 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1810739670181647e-004</threshold>
-            <left_val>0.5474476814270020</left_val>
-            <right_val>0.3959893882274628</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 8 2 -1.</_>
-                <_>9 7 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.4505601292476058e-004</threshold>
-            <left_val>0.3740422129631043</left_val>
-            <right_val>0.5215715765953064</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 11 2 3 -1.</_>
-                <_>9 12 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8454910023137927e-003</threshold>
-            <left_val>0.5893052220344544</left_val>
-            <right_val>0.4584448933601379</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 0 16 3 -1.</_>
-                <_>1 1 16 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.3832371011376381e-004</threshold>
-            <left_val>0.4084582030773163</left_val>
-            <right_val>0.5385351181030273</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 2 7 2 -1.</_>
-                <_>11 3 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4000830017030239e-003</threshold>
-            <left_val>0.3777455091476440</left_val>
-            <right_val>0.5293580293655396</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 1 10 18 -1.</_>
-                <_>5 7 10 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0987957417964935</threshold>
-            <left_val>0.2963612079620361</left_val>
-            <right_val>0.5070089101791382</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 4 3 2 -1.</_>
-                <_>18 4 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1798239797353745e-003</threshold>
-            <left_val>0.4877632856369019</left_val>
-            <right_val>0.6726443767547607</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 13 1 3 -1.</_>
-                <_>8 14 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2406419632025063e-004</threshold>
-            <left_val>0.4366911053657532</left_val>
-            <right_val>0.5561109781265259</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 14 14 6 -1.</_>
-                <_>3 16 14 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0325472503900528</threshold>
-            <left_val>0.3128157854080200</left_val>
-            <right_val>0.5308616161346436</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 3 4 -1.</_>
-                <_>1 2 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.7561130747199059e-003</threshold>
-            <left_val>0.6560224890708923</left_val>
-            <right_val>0.4639872014522553</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 1 5 2 -1.</_>
-                <_>12 2 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0160272493958473</threshold>
-            <left_val>0.5172680020332336</left_val>
-            <right_val>0.3141897916793823</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 1 5 2 -1.</_>
-                <_>3 2 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.1002350523485802e-006</threshold>
-            <left_val>0.4084446132183075</left_val>
-            <right_val>0.5336294770240784</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 13 2 3 -1.</_>
-                <_>10 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.3422808200120926e-003</threshold>
-            <left_val>0.4966922104358673</left_val>
-            <right_val>0.6603465080261231</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 13 2 3 -1.</_>
-                <_>8 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.6970280557870865e-003</threshold>
-            <left_val>0.5908237099647522</left_val>
-            <right_val>0.4500182867050171</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 12 2 3 -1.</_>
-                <_>14 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4118260480463505e-003</threshold>
-            <left_val>0.5315160751342773</left_val>
-            <right_val>0.3599720895290375</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 2 2 3 -1.</_>
-                <_>7 3 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.5300937965512276e-003</threshold>
-            <left_val>0.2334040999412537</left_val>
-            <right_val>0.4996814131736755</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 10 4 -1.</_>
-                <_>10 6 5 2 2.</_>
-                <_>5 8 5 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6478730142116547e-003</threshold>
-            <left_val>0.5880935788154602</left_val>
-            <right_val>0.4684734046459198</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 13 1 6 -1.</_>
-                <_>9 16 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0112956296652555</threshold>
-            <left_val>0.4983777105808258</left_val>
-            <right_val>0.1884590983390808</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 12 2 2 -1.</_>
-                <_>11 12 1 1 2.</_>
-                <_>10 13 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.6952878842130303e-004</threshold>
-            <left_val>0.5872138142585754</left_val>
-            <right_val>0.4799019992351532</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 12 2 3 -1.</_>
-                <_>4 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4410680159926414e-003</threshold>
-            <left_val>0.5131189227104187</left_val>
-            <right_val>0.3501011133193970</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 4 6 6 -1.</_>
-                <_>14 6 6 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4637870956212282e-003</threshold>
-            <left_val>0.5339372158050537</left_val>
-            <right_val>0.4117639064788818</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 17 2 3 -1.</_>
-                <_>8 18 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3114518737420440e-004</threshold>
-            <left_val>0.4313383102416992</left_val>
-            <right_val>0.5398246049880981</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 4 4 6 -1.</_>
-                <_>16 6 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0335572697222233</threshold>
-            <left_val>0.2675336897373200</left_val>
-            <right_val>0.5179154872894287</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 4 4 6 -1.</_>
-                <_>0 6 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0185394193977118</threshold>
-            <left_val>0.4973869919776917</left_val>
-            <right_val>0.2317177057266235</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 6 2 3 -1.</_>
-                <_>14 6 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9698139405809343e-004</threshold>
-            <left_val>0.5529708266258240</left_val>
-            <right_val>0.4643664062023163</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 9 8 1 -1.</_>
-                <_>8 9 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.5577259152196348e-004</threshold>
-            <left_val>0.5629584193229675</left_val>
-            <right_val>0.4469191133975983</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 12 4 3 -1.</_>
-                <_>8 13 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0101589802652597</threshold>
-            <left_val>0.6706212759017944</left_val>
-            <right_val>0.4925918877124786</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 12 10 6 -1.</_>
-                <_>5 14 10 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2413829356082715e-005</threshold>
-            <left_val>0.5239421725273132</left_val>
-            <right_val>0.3912901878356934</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 12 1 2 -1.</_>
-                <_>11 13 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.2034963523037732e-005</threshold>
-            <left_val>0.4799438118934631</left_val>
-            <right_val>0.5501788854598999</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 15 4 2 -1.</_>
-                <_>8 16 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.9267209619283676e-003</threshold>
-            <left_val>0.6930009722709656</left_val>
-            <right_val>0.4698084890842438</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 9 8 8 -1.</_>
-                <_>10 9 4 4 2.</_>
-                <_>6 13 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.6997838914394379e-003</threshold>
-            <left_val>0.4099623858928680</left_val>
-            <right_val>0.5480883121490479</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 12 4 6 -1.</_>
-                <_>7 12 2 3 2.</_>
-                <_>9 15 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.3130549862980843e-003</threshold>
-            <left_val>0.3283475935459137</left_val>
-            <right_val>0.5057886242866516</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 11 3 1 -1.</_>
-                <_>11 11 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9650589674711227e-003</threshold>
-            <left_val>0.4978047013282776</left_val>
-            <right_val>0.6398249864578247</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 2 10 -1.</_>
-                <_>9 7 1 5 2.</_>
-                <_>10 12 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.1647600270807743e-003</threshold>
-            <left_val>0.4661160111427307</left_val>
-            <right_val>0.6222137212753296</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 0 6 6 -1.</_>
-                <_>10 0 2 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0240786392241716</threshold>
-            <left_val>0.2334644943475723</left_val>
-            <right_val>0.5222162008285523</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 11 2 6 -1.</_>
-                <_>3 13 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0210279691964388</threshold>
-            <left_val>0.1183653995394707</left_val>
-            <right_val>0.4938226044178009</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 12 1 2 -1.</_>
-                <_>16 13 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.6017020465806127e-004</threshold>
-            <left_val>0.5325019955635071</left_val>
-            <right_val>0.4116711020469666</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 14 6 6 -1.</_>
-                <_>1 14 3 3 2.</_>
-                <_>4 17 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0172197297215462</threshold>
-            <left_val>0.6278762221336365</left_val>
-            <right_val>0.4664269089698792</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 1 3 6 -1.</_>
-                <_>14 1 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.8672142699360847e-003</threshold>
-            <left_val>0.3403415083885193</left_val>
-            <right_val>0.5249736905097961</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 8 2 2 -1.</_>
-                <_>8 9 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.4777389848604798e-004</threshold>
-            <left_val>0.3610411882400513</left_val>
-            <right_val>0.5086259245872498</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 9 3 3 -1.</_>
-                <_>10 9 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.5486010387539864e-003</threshold>
-            <left_val>0.4884265959262848</left_val>
-            <right_val>0.6203498244285584</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 7 3 3 -1.</_>
-                <_>8 8 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.9461148232221603e-003</threshold>
-            <left_val>0.2625930011272430</left_val>
-            <right_val>0.5011097192764282</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 0 2 3 -1.</_>
-                <_>14 0 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3569870498031378e-004</threshold>
-            <left_val>0.4340794980525971</left_val>
-            <right_val>0.5628312230110169</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 0 18 9 -1.</_>
-                <_>7 0 6 9 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0458802506327629</threshold>
-            <left_val>0.6507998704910278</left_val>
-            <right_val>0.4696274995803833</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 5 4 15 -1.</_>
-                <_>11 5 2 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0215825606137514</threshold>
-            <left_val>0.3826502859592438</left_val>
-            <right_val>0.5287616848945618</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 4 15 -1.</_>
-                <_>7 5 2 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0202095396816731</threshold>
-            <left_val>0.3233368098735809</left_val>
-            <right_val>0.5074477195739746</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 0 2 3 -1.</_>
-                <_>14 0 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.8496710844337940e-003</threshold>
-            <left_val>0.5177603960037231</left_val>
-            <right_val>0.4489670991897583</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 0 2 3 -1.</_>
-                <_>5 0 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.7476379879517481e-005</threshold>
-            <left_val>0.4020850956439972</left_val>
-            <right_val>0.5246363878250122</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 12 2 2 -1.</_>
-                <_>12 12 1 1 2.</_>
-                <_>11 13 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1513100471347570e-003</threshold>
-            <left_val>0.6315072178840637</left_val>
-            <right_val>0.4905154109001160</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 12 2 2 -1.</_>
-                <_>7 12 1 1 2.</_>
-                <_>8 13 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9862831104546785e-003</threshold>
-            <left_val>0.4702459871768951</left_val>
-            <right_val>0.6497151255607605</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 0 3 4 -1.</_>
-                <_>13 0 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2719512023031712e-003</threshold>
-            <left_val>0.3650383949279785</left_val>
-            <right_val>0.5227652788162231</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 11 3 3 -1.</_>
-                <_>4 12 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2662699446082115e-003</threshold>
-            <left_val>0.5166100859642029</left_val>
-            <right_val>0.3877618014812470</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 7 4 2 -1.</_>
-                <_>12 8 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.2919440679252148e-003</threshold>
-            <left_val>0.7375894188880920</left_val>
-            <right_val>0.5023847818374634</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 10 3 2 -1.</_>
-                <_>9 10 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.7360111279413104e-004</threshold>
-            <left_val>0.4423226118087769</left_val>
-            <right_val>0.5495585799217224</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 9 3 2 -1.</_>
-                <_>10 9 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0523450328037143e-003</threshold>
-            <left_val>0.5976396203041077</left_val>
-            <right_val>0.4859583079814911</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 9 3 2 -1.</_>
-                <_>9 9 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.4216238893568516e-004</threshold>
-            <left_val>0.5955939292907715</left_val>
-            <right_val>0.4398930966854096</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 0 3 4 -1.</_>
-                <_>13 0 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1747940443456173e-003</threshold>
-            <left_val>0.5349888205528259</left_val>
-            <right_val>0.4605058133602142</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 0 3 4 -1.</_>
-                <_>6 0 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.2457437850534916e-003</threshold>
-            <left_val>0.5049191117286682</left_val>
-            <right_val>0.2941577136516571</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 14 12 4 -1.</_>
-                <_>10 14 6 2 2.</_>
-                <_>4 16 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0245397202670574</threshold>
-            <left_val>0.2550177872180939</left_val>
-            <right_val>0.5218586921691895</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 13 2 3 -1.</_>
-                <_>8 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.3793041519820690e-004</threshold>
-            <left_val>0.4424861073493958</left_val>
-            <right_val>0.5490816235542297</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 10 3 8 -1.</_>
-                <_>10 14 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4233799884095788e-003</threshold>
-            <left_val>0.5319514274597168</left_val>
-            <right_val>0.4081355929374695</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 10 4 8 -1.</_>
-                <_>8 10 2 4 2.</_>
-                <_>10 14 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4149110540747643e-003</threshold>
-            <left_val>0.4087659120559692</left_val>
-            <right_val>0.5238950252532959</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 8 3 1 -1.</_>
-                <_>11 8 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2165299849584699e-003</threshold>
-            <left_val>0.5674579143524170</left_val>
-            <right_val>0.4908052980899811</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 12 1 6 -1.</_>
-                <_>9 15 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2438809499144554e-003</threshold>
-            <left_val>0.4129425883293152</left_val>
-            <right_val>0.5256118178367615</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 8 3 1 -1.</_>
-                <_>11 8 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.1942739412188530e-003</threshold>
-            <left_val>0.5060194134712219</left_val>
-            <right_val>0.7313653230667114</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 8 3 1 -1.</_>
-                <_>8 8 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.6607169527560472e-003</threshold>
-            <left_val>0.5979632139205933</left_val>
-            <right_val>0.4596369862556458</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 2 15 14 -1.</_>
-                <_>5 9 15 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0273162592202425</threshold>
-            <left_val>0.4174365103244782</left_val>
-            <right_val>0.5308842062950134</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 1 2 10 -1.</_>
-                <_>2 1 1 5 2.</_>
-                <_>3 6 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5845570014789701e-003</threshold>
-            <left_val>0.5615804791450501</left_val>
-            <right_val>0.4519486129283905</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 14 2 3 -1.</_>
-                <_>14 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5514739789068699e-003</threshold>
-            <left_val>0.4076187014579773</left_val>
-            <right_val>0.5360785126686096</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 7 3 3 -1.</_>
-                <_>3 7 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.8446558755822480e-004</threshold>
-            <left_val>0.4347293972969055</left_val>
-            <right_val>0.5430442094802856</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 4 3 3 -1.</_>
-                <_>17 5 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0146722598001361</threshold>
-            <left_val>0.1659304946660996</left_val>
-            <right_val>0.5146093964576721</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 4 3 3 -1.</_>
-                <_>0 5 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.1608882173895836e-003</threshold>
-            <left_val>0.4961819052696228</left_val>
-            <right_val>0.1884745955467224</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 5 6 2 -1.</_>
-                <_>16 5 3 1 2.</_>
-                <_>13 6 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1121659772470593e-003</threshold>
-            <left_val>0.4868263900279999</left_val>
-            <right_val>0.6093816161155701</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 19 12 1 -1.</_>
-                <_>8 19 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.2603770531713963e-003</threshold>
-            <left_val>0.6284325122833252</left_val>
-            <right_val>0.4690375924110413</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 12 2 4 -1.</_>
-                <_>12 14 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4046430189628154e-004</threshold>
-            <left_val>0.5575000047683716</left_val>
-            <right_val>0.4046044051647186</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 15 1 3 -1.</_>
-                <_>3 16 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3348190006799996e-004</threshold>
-            <left_val>0.4115762114524841</left_val>
-            <right_val>0.5252848267555237</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 16 6 4 -1.</_>
-                <_>11 16 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.5736480280756950e-003</threshold>
-            <left_val>0.4730072915554047</left_val>
-            <right_val>0.5690100789070129</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 10 3 10 -1.</_>
-                <_>3 10 1 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0306237693876028</threshold>
-            <left_val>0.4971886873245239</left_val>
-            <right_val>0.1740095019340515</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 8 2 4 -1.</_>
-                <_>12 8 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.2074798885732889e-004</threshold>
-            <left_val>0.5372117757797241</left_val>
-            <right_val>0.4354872107505798</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 8 2 4 -1.</_>
-                <_>7 8 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.3550739064812660e-005</threshold>
-            <left_val>0.5366883873939514</left_val>
-            <right_val>0.4347316920757294</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 14 2 3 -1.</_>
-                <_>10 14 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.6452710889279842e-003</threshold>
-            <left_val>0.3435518145561218</left_val>
-            <right_val>0.5160533189773560</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 1 10 3 -1.</_>
-                <_>10 1 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0432219989597797</threshold>
-            <left_val>0.4766792058944702</left_val>
-            <right_val>0.7293652892112732</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 7 3 2 -1.</_>
-                <_>11 7 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2331769578158855e-003</threshold>
-            <left_val>0.5029315948486328</left_val>
-            <right_val>0.5633171200752258</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 6 9 2 -1.</_>
-                <_>8 6 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1829739455133677e-003</threshold>
-            <left_val>0.4016092121601105</left_val>
-            <right_val>0.5192136764526367</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 8 2 2 -1.</_>
-                <_>9 9 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8027749320026487e-004</threshold>
-            <left_val>0.4088315963745117</left_val>
-            <right_val>0.5417919754981995</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 11 16 6 -1.</_>
-                <_>2 11 8 3 2.</_>
-                <_>10 14 8 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2934689447283745e-003</threshold>
-            <left_val>0.4075677096843720</left_val>
-            <right_val>0.5243561863899231</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 7 2 2 -1.</_>
-                <_>13 7 1 1 2.</_>
-                <_>12 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2750959722325206e-003</threshold>
-            <left_val>0.4913282990455627</left_val>
-            <right_val>0.6387010812759399</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 2 3 -1.</_>
-                <_>9 6 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.3385322205722332e-003</threshold>
-            <left_val>0.5031672120094299</left_val>
-            <right_val>0.2947346866130829</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 3 2 -1.</_>
-                <_>10 7 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.5250744596123695e-003</threshold>
-            <left_val>0.4949789047241211</left_val>
-            <right_val>0.6308869123458862</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 1 8 12 -1.</_>
-                <_>5 7 8 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.4266352243721485e-004</threshold>
-            <left_val>0.5328366756439209</left_val>
-            <right_val>0.4285649955272675</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 5 2 2 -1.</_>
-                <_>13 6 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3609660090878606e-003</threshold>
-            <left_val>0.4991525113582611</left_val>
-            <right_val>0.5941501259803772</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 2 2 -1.</_>
-                <_>5 6 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.4782509212382138e-004</threshold>
-            <left_val>0.4573504030704498</left_val>
-            <right_val>0.5854480862617493</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 4 3 3 -1.</_>
-                <_>12 5 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3360050506889820e-003</threshold>
-            <left_val>0.4604358971118927</left_val>
-            <right_val>0.5849052071571350</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 14 2 3 -1.</_>
-                <_>4 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.0967548051849008e-004</threshold>
-            <left_val>0.3969388902187347</left_val>
-            <right_val>0.5229423046112061</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 4 3 3 -1.</_>
-                <_>12 5 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3656780831515789e-003</threshold>
-            <left_val>0.5808320045471191</left_val>
-            <right_val>0.4898357093334198</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 3 3 -1.</_>
-                <_>5 5 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0734340175986290e-003</threshold>
-            <left_val>0.4351210892200470</left_val>
-            <right_val>0.5470039248466492</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 14 2 6 -1.</_>
-                <_>10 14 1 3 2.</_>
-                <_>9 17 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1923359017819166e-003</threshold>
-            <left_val>0.5355060100555420</left_val>
-            <right_val>0.3842903971672058</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 3 2 -1.</_>
-                <_>9 14 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4968618787825108e-003</threshold>
-            <left_val>0.5018138885498047</left_val>
-            <right_val>0.2827191948890686</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 6 6 -1.</_>
-                <_>11 5 2 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0753688216209412</threshold>
-            <left_val>0.1225076019763947</left_val>
-            <right_val>0.5148826837539673</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 6 6 -1.</_>
-                <_>7 5 2 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0251344703137875</threshold>
-            <left_val>0.4731766879558563</left_val>
-            <right_val>0.7025446295738220</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 13 1 2 -1.</_>
-                <_>13 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9358599931583740e-005</threshold>
-            <left_val>0.5430532097816467</left_val>
-            <right_val>0.4656086862087250</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 10 2 -1.</_>
-                <_>0 3 10 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.8355910005047917e-004</threshold>
-            <left_val>0.4031040072441101</left_val>
-            <right_val>0.5190119743347168</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 13 1 2 -1.</_>
-                <_>13 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6639450807124376e-003</threshold>
-            <left_val>0.4308126866817474</left_val>
-            <right_val>0.5161771178245544</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 2 2 -1.</_>
-                <_>5 7 1 1 2.</_>
-                <_>6 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.3804089976474643e-003</threshold>
-            <left_val>0.6219829916954041</left_val>
-            <right_val>0.4695515930652618</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 5 2 7 -1.</_>
-                <_>13 5 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2313219485804439e-003</threshold>
-            <left_val>0.5379363894462585</left_val>
-            <right_val>0.4425831139087677</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 13 1 2 -1.</_>
-                <_>6 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4644179827882908e-005</threshold>
-            <left_val>0.5281640291213989</left_val>
-            <right_val>0.4222503006458283</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 0 3 7 -1.</_>
-                <_>12 0 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0128188095986843</threshold>
-            <left_val>0.2582092881202698</left_val>
-            <right_val>0.5179932713508606</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 3 2 16 -1.</_>
-                <_>0 3 1 8 2.</_>
-                <_>1 11 1 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0228521898388863</threshold>
-            <left_val>0.4778693020343781</left_val>
-            <right_val>0.7609264254570007</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 0 3 7 -1.</_>
-                <_>12 0 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.2305970136076212e-004</threshold>
-            <left_val>0.5340992212295532</left_val>
-            <right_val>0.4671724140644074</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 0 3 7 -1.</_>
-                <_>7 0 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0127701200544834</threshold>
-            <left_val>0.4965761005878449</left_val>
-            <right_val>0.1472366005182266</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 16 8 4 -1.</_>
-                <_>11 16 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0500515103340149</threshold>
-            <left_val>0.6414994001388550</left_val>
-            <right_val>0.5016592144966126</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 16 8 4 -1.</_>
-                <_>5 16 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0157752707600594</threshold>
-            <left_val>0.4522320032119751</left_val>
-            <right_val>0.5685362219810486</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 5 2 7 -1.</_>
-                <_>13 5 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0185016207396984</threshold>
-            <left_val>0.2764748930931091</left_val>
-            <right_val>0.5137959122657776</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 5 2 7 -1.</_>
-                <_>6 5 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4626250378787518e-003</threshold>
-            <left_val>0.5141941905021668</left_val>
-            <right_val>0.3795408010482788</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 6 2 14 -1.</_>
-                <_>18 13 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0629161670804024</threshold>
-            <left_val>0.5060648918151856</left_val>
-            <right_val>0.6580433845520020</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 10 3 4 -1.</_>
-                <_>6 12 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1648500478477217e-005</threshold>
-            <left_val>0.5195388197898865</left_val>
-            <right_val>0.4019886851310730</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 7 1 2 -1.</_>
-                <_>14 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1180990152060986e-003</threshold>
-            <left_val>0.4962365031242371</left_val>
-            <right_val>0.5954458713531494</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 1 18 6 -1.</_>
-                <_>0 1 9 3 2.</_>
-                <_>9 4 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0166348908096552</threshold>
-            <left_val>0.3757933080196381</left_val>
-            <right_val>0.5175446867942810</right_val></_></_>
-        <_>
-          <!-- tree 135 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 7 1 2 -1.</_>
-                <_>14 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.8899470344185829e-003</threshold>
-            <left_val>0.6624013781547546</left_val>
-            <right_val>0.5057178735733032</right_val></_></_>
-        <_>
-          <!-- tree 136 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 6 2 14 -1.</_>
-                <_>0 13 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0767832621932030</threshold>
-            <left_val>0.4795796871185303</left_val>
-            <right_val>0.8047714829444885</right_val></_></_>
-        <_>
-          <!-- tree 137 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>17 0 3 12 -1.</_>
-                <_>18 0 1 12 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.9170677773654461e-003</threshold>
-            <left_val>0.4937882125377655</left_val>
-            <right_val>0.5719941854476929</right_val></_></_>
-        <_>
-          <!-- tree 138 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 6 18 3 -1.</_>
-                <_>0 7 18 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0726706013083458</threshold>
-            <left_val>0.0538945607841015</left_val>
-            <right_val>0.4943903982639313</right_val></_></_>
-        <_>
-          <!-- tree 139 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 0 14 16 -1.</_>
-                <_>6 8 14 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.5403950214385986</threshold>
-            <left_val>0.5129774212837219</left_val>
-            <right_val>0.1143338978290558</right_val></_></_>
-        <_>
-          <!-- tree 140 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 0 3 12 -1.</_>
-                <_>1 0 1 12 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9510019812732935e-003</threshold>
-            <left_val>0.4528343975543976</left_val>
-            <right_val>0.5698574185371399</right_val></_></_>
-        <_>
-          <!-- tree 141 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 0 3 7 -1.</_>
-                <_>14 0 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4508369863033295e-003</threshold>
-            <left_val>0.5357726812362671</left_val>
-            <right_val>0.4218730926513672</right_val></_></_>
-        <_>
-          <!-- tree 142 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 1 2 -1.</_>
-                <_>5 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.2077939724549651e-004</threshold>
-            <left_val>0.5916172862052918</left_val>
-            <right_val>0.4637925922870636</right_val></_></_>
-        <_>
-          <!-- tree 143 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 4 6 6 -1.</_>
-                <_>14 6 6 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3051050268113613e-003</threshold>
-            <left_val>0.5273385047912598</left_val>
-            <right_val>0.4382042884826660</right_val></_></_>
-        <_>
-          <!-- tree 144 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 7 7 2 -1.</_>
-                <_>5 8 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.7735060798004270e-004</threshold>
-            <left_val>0.4046528041362763</left_val>
-            <right_val>0.5181884765625000</right_val></_></_>
-        <_>
-          <!-- tree 145 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 6 6 9 -1.</_>
-                <_>8 9 6 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0259285103529692</threshold>
-            <left_val>0.7452235817909241</left_val>
-            <right_val>0.5089386105537415</right_val></_></_>
-        <_>
-          <!-- tree 146 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 4 6 1 -1.</_>
-                <_>7 4 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9729790985584259e-003</threshold>
-            <left_val>0.3295435905456543</left_val>
-            <right_val>0.5058795213699341</right_val></_></_>
-        <_>
-          <!-- tree 147 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 0 6 4 -1.</_>
-                <_>16 0 3 2 2.</_>
-                <_>13 2 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.8508329093456268e-003</threshold>
-            <left_val>0.4857144057750702</left_val>
-            <right_val>0.5793024897575378</right_val></_></_>
-        <_>
-          <!-- tree 148 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 2 18 12 -1.</_>
-                <_>1 6 18 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0459675192832947</threshold>
-            <left_val>0.4312731027603149</left_val>
-            <right_val>0.5380653142929077</right_val></_></_>
-        <_>
-          <!-- tree 149 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 2 17 12 -1.</_>
-                <_>3 6 17 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1558596044778824</threshold>
-            <left_val>0.5196170210838318</left_val>
-            <right_val>0.1684713959693909</right_val></_></_>
-        <_>
-          <!-- tree 150 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>5 14 7 3 -1.</_>
-                <_>5 15 7 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0151648297905922</threshold>
-            <left_val>0.4735757112503052</left_val>
-            <right_val>0.6735026836395264</right_val></_></_>
-        <_>
-          <!-- tree 151 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 14 1 3 -1.</_>
-                <_>10 15 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0604249546304345e-003</threshold>
-            <left_val>0.5822926759719849</left_val>
-            <right_val>0.4775702953338623</right_val></_></_>
-        <_>
-          <!-- tree 152 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>3 14 3 3 -1.</_>
-                <_>3 15 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.6476291976869106e-003</threshold>
-            <left_val>0.4999198913574219</left_val>
-            <right_val>0.2319535017013550</right_val></_></_>
-        <_>
-          <!-- tree 153 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>14 4 6 6 -1.</_>
-                <_>14 6 6 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0122311301529408</threshold>
-            <left_val>0.4750893115997315</left_val>
-            <right_val>0.5262982249259949</right_val></_></_>
-        <_>
-          <!-- tree 154 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 4 6 6 -1.</_>
-                <_>0 6 6 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.6528882123529911e-003</threshold>
-            <left_val>0.5069767832756043</left_val>
-            <right_val>0.3561818897724152</right_val></_></_>
-        <_>
-          <!-- tree 155 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>12 5 4 3 -1.</_>
-                <_>12 6 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2977829901501536e-003</threshold>
-            <left_val>0.4875693917274475</left_val>
-            <right_val>0.5619062781333923</right_val></_></_>
-        <_>
-          <!-- tree 156 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 5 4 3 -1.</_>
-                <_>4 6 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0107815898954868</threshold>
-            <left_val>0.4750770032405853</left_val>
-            <right_val>0.6782308220863342</right_val></_></_>
-        <_>
-          <!-- tree 157 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 0 2 6 -1.</_>
-                <_>18 2 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.8654779307544231e-003</threshold>
-            <left_val>0.5305461883544922</left_val>
-            <right_val>0.4290736019611359</right_val></_></_>
-        <_>
-          <!-- tree 158 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 1 4 9 -1.</_>
-                <_>10 1 2 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.8663428965955973e-003</threshold>
-            <left_val>0.4518479108810425</left_val>
-            <right_val>0.5539351105690002</right_val></_></_>
-        <_>
-          <!-- tree 159 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 6 8 2 -1.</_>
-                <_>6 6 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1983320154249668e-003</threshold>
-            <left_val>0.4149119853973389</left_val>
-            <right_val>0.5434188842773438</right_val></_></_>
-        <_>
-          <!-- tree 160 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 5 4 2 -1.</_>
-                <_>6 5 2 1 2.</_>
-                <_>8 6 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.3739990107715130e-003</threshold>
-            <left_val>0.4717896878719330</left_val>
-            <right_val>0.6507657170295715</right_val></_></_>
-        <_>
-          <!-- tree 161 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 5 2 3 -1.</_>
-                <_>10 6 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0146415298804641</threshold>
-            <left_val>0.2172164022922516</left_val>
-            <right_val>0.5161777138710022</right_val></_></_>
-        <_>
-          <!-- tree 162 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 1 3 -1.</_>
-                <_>9 6 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5042580344015732e-005</threshold>
-            <left_val>0.5337383747100830</left_val>
-            <right_val>0.4298836886882782</right_val></_></_>
-        <_>
-          <!-- tree 163 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 10 2 2 -1.</_>
-                <_>9 11 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1875660129589960e-004</threshold>
-            <left_val>0.4604594111442566</left_val>
-            <right_val>0.5582447052001953</right_val></_></_>
-        <_>
-          <!-- tree 164 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 8 4 3 -1.</_>
-                <_>0 9 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0169955305755138</threshold>
-            <left_val>0.4945895075798035</left_val>
-            <right_val>0.0738800764083862</right_val></_></_>
-        <_>
-          <!-- tree 165 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 0 8 6 -1.</_>
-                <_>6 3 8 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0350959412753582</threshold>
-            <left_val>0.7005509138107300</left_val>
-            <right_val>0.4977591037750244</right_val></_></_>
-        <_>
-          <!-- tree 166 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 0 6 4 -1.</_>
-                <_>1 0 3 2 2.</_>
-                <_>4 2 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4217350874096155e-003</threshold>
-            <left_val>0.4466265141963959</left_val>
-            <right_val>0.5477694272994995</right_val></_></_>
-        <_>
-          <!-- tree 167 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 0 3 7 -1.</_>
-                <_>14 0 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.6340337768197060e-004</threshold>
-            <left_val>0.4714098870754242</left_val>
-            <right_val>0.5313338041305542</right_val></_></_>
-        <_>
-          <!-- tree 168 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 16 2 2 -1.</_>
-                <_>9 17 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6391130338888615e-004</threshold>
-            <left_val>0.4331546127796173</left_val>
-            <right_val>0.5342242121696472</right_val></_></_>
-        <_>
-          <!-- tree 169 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 4 6 10 -1.</_>
-                <_>11 9 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0211414601653814</threshold>
-            <left_val>0.2644700109958649</left_val>
-            <right_val>0.5204498767852783</right_val></_></_>
-        <_>
-          <!-- tree 170 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 10 19 2 -1.</_>
-                <_>0 11 19 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.7775202700868249e-004</threshold>
-            <left_val>0.5208349823951721</left_val>
-            <right_val>0.4152742922306061</right_val></_></_>
-        <_>
-          <!-- tree 171 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 8 9 -1.</_>
-                <_>9 8 8 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0279439203441143</threshold>
-            <left_val>0.6344125270843506</left_val>
-            <right_val>0.5018811821937561</right_val></_></_>
-        <_>
-          <!-- tree 172 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 0 3 7 -1.</_>
-                <_>5 0 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.7297378554940224e-003</threshold>
-            <left_val>0.5050438046455383</left_val>
-            <right_val>0.3500863909721375</right_val></_></_>
-        <_>
-          <!-- tree 173 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 6 4 12 -1.</_>
-                <_>10 6 2 6 2.</_>
-                <_>8 12 2 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0232810396701097</threshold>
-            <left_val>0.4966318011283875</left_val>
-            <right_val>0.6968677043914795</right_val></_></_>
-        <_>
-          <!-- tree 174 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 2 6 4 -1.</_>
-                <_>0 4 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0116449799388647</threshold>
-            <left_val>0.3300260007381439</left_val>
-            <right_val>0.5049629807472229</right_val></_></_>
-        <_>
-          <!-- tree 175 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 15 4 3 -1.</_>
-                <_>8 16 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0157643090933561</threshold>
-            <left_val>0.4991598129272461</left_val>
-            <right_val>0.7321153879165649</right_val></_></_>
-        <_>
-          <!-- tree 176 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 0 3 7 -1.</_>
-                <_>9 0 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.3611479662358761e-003</threshold>
-            <left_val>0.3911735117435455</left_val>
-            <right_val>0.5160670876502991</right_val></_></_>
-        <_>
-          <!-- tree 177 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 5 3 4 -1.</_>
-                <_>10 5 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.1522337859496474e-004</threshold>
-            <left_val>0.5628911256790161</left_val>
-            <right_val>0.4949719011783600</right_val></_></_>
-        <_>
-          <!-- tree 178 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 5 3 4 -1.</_>
-                <_>9 5 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.0066272271797061e-004</threshold>
-            <left_val>0.5853595137596130</left_val>
-            <right_val>0.4550595879554749</right_val></_></_>
-        <_>
-          <!-- tree 179 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 6 6 1 -1.</_>
-                <_>9 6 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.9715518252924085e-004</threshold>
-            <left_val>0.4271470010280609</left_val>
-            <right_val>0.5443599224090576</right_val></_></_>
-        <_>
-          <!-- tree 180 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 14 4 4 -1.</_>
-                <_>7 14 2 2 2.</_>
-                <_>9 16 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3475370835512877e-003</threshold>
-            <left_val>0.5143110752105713</left_val>
-            <right_val>0.3887656927108765</right_val></_></_>
-        <_>
-          <!-- tree 181 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>13 14 4 6 -1.</_>
-                <_>15 14 2 3 2.</_>
-                <_>13 17 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.9261569082736969e-003</threshold>
-            <left_val>0.6044502258300781</left_val>
-            <right_val>0.4971720874309540</right_val></_></_>
-        <_>
-          <!-- tree 182 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 8 1 8 -1.</_>
-                <_>7 12 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0139199104160070</threshold>
-            <left_val>0.2583160996437073</left_val>
-            <right_val>0.5000367760658264</right_val></_></_>
-        <_>
-          <!-- tree 183 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>16 0 2 8 -1.</_>
-                <_>17 0 1 4 2.</_>
-                <_>16 4 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0209949687123299e-003</threshold>
-            <left_val>0.4857374131679535</left_val>
-            <right_val>0.5560358166694641</right_val></_></_>
-        <_>
-          <!-- tree 184 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>2 0 2 8 -1.</_>
-                <_>2 0 1 4 2.</_>
-                <_>3 4 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.7441629208624363e-003</threshold>
-            <left_val>0.5936884880065918</left_val>
-            <right_val>0.4645777046680450</right_val></_></_>
-        <_>
-          <!-- tree 185 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>6 1 14 3 -1.</_>
-                <_>6 2 14 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0162001308053732</threshold>
-            <left_val>0.3163014948368073</left_val>
-            <right_val>0.5193495154380798</right_val></_></_>
-        <_>
-          <!-- tree 186 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 9 3 10 -1.</_>
-                <_>7 14 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.3331980705261230e-003</threshold>
-            <left_val>0.5061224102973938</left_val>
-            <right_val>0.3458878993988037</right_val></_></_>
-        <_>
-          <!-- tree 187 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 14 2 2 -1.</_>
-                <_>9 15 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.8497930876910686e-004</threshold>
-            <left_val>0.4779017865657806</left_val>
-            <right_val>0.5870177745819092</right_val></_></_>
-        <_>
-          <!-- tree 188 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 7 6 8 -1.</_>
-                <_>7 11 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2466450463980436e-003</threshold>
-            <left_val>0.4297851026058197</left_val>
-            <right_val>0.5374773144721985</right_val></_></_>
-        <_>
-          <!-- tree 189 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 3 6 -1.</_>
-                <_>9 10 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3146099410951138e-003</threshold>
-            <left_val>0.5438671708106995</left_val>
-            <right_val>0.4640969932079315</right_val></_></_>
-        <_>
-          <!-- tree 190 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 13 3 3 -1.</_>
-                <_>7 14 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.7679121643304825e-003</threshold>
-            <left_val>0.4726893007755280</left_val>
-            <right_val>0.6771789789199829</right_val></_></_>
-        <_>
-          <!-- tree 191 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 9 2 2 -1.</_>
-                <_>9 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2448020172305405e-004</threshold>
-            <left_val>0.4229173064231873</left_val>
-            <right_val>0.5428048968315125</right_val></_></_>
-        <_>
-          <!-- tree 192 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 1 18 2 -1.</_>
-                <_>6 1 6 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.4336021207273006e-003</threshold>
-            <left_val>0.6098880767822266</left_val>
-            <right_val>0.4683673977851868</right_val></_></_>
-        <_>
-          <!-- tree 193 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 1 6 14 -1.</_>
-                <_>7 8 6 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3189240600913763e-003</threshold>
-            <left_val>0.5689436793327332</left_val>
-            <right_val>0.4424242079257965</right_val></_></_>
-        <_>
-          <!-- tree 194 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 9 18 1 -1.</_>
-                <_>7 9 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1042178850620985e-003</threshold>
-            <left_val>0.3762221038341522</left_val>
-            <right_val>0.5187087059020996</right_val></_></_>
-        <_>
-          <!-- tree 195 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 7 2 2 -1.</_>
-                <_>9 7 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.6034841216169298e-004</threshold>
-            <left_val>0.4699405133724213</left_val>
-            <right_val>0.5771207213401794</right_val></_></_>
-        <_>
-          <!-- tree 196 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 3 2 9 -1.</_>
-                <_>10 3 1 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0547629790380597e-003</threshold>
-            <left_val>0.4465216994285584</left_val>
-            <right_val>0.5601701736450195</right_val></_></_>
-        <_>
-          <!-- tree 197 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>18 14 2 3 -1.</_>
-                <_>18 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.7148818420246243e-004</threshold>
-            <left_val>0.5449805259704590</left_val>
-            <right_val>0.3914709091186523</right_val></_></_>
-        <_>
-          <!-- tree 198 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 11 3 1 -1.</_>
-                <_>8 11 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3364820410497487e-004</threshold>
-            <left_val>0.4564009010791779</left_val>
-            <right_val>0.5645738840103149</right_val></_></_>
-        <_>
-          <!-- tree 199 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 8 3 4 -1.</_>
-                <_>11 8 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4853250468149781e-003</threshold>
-            <left_val>0.5747377872467041</left_val>
-            <right_val>0.4692778885364533</right_val></_></_>
-        <_>
-          <!-- tree 200 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 14 3 6 -1.</_>
-                <_>8 14 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.0251620337367058e-003</threshold>
-            <left_val>0.5166196823120117</left_val>
-            <right_val>0.3762814104557037</right_val></_></_>
-        <_>
-          <!-- tree 201 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>10 8 3 4 -1.</_>
-                <_>11 8 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0280741415917873e-003</threshold>
-            <left_val>0.5002111792564392</left_val>
-            <right_val>0.6151527166366577</right_val></_></_>
-        <_>
-          <!-- tree 202 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 8 3 4 -1.</_>
-                <_>8 8 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.8164511574432254e-004</threshold>
-            <left_val>0.5394598245620728</left_val>
-            <right_val>0.4390751123428345</right_val></_></_>
-        <_>
-          <!-- tree 203 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>7 9 6 9 -1.</_>
-                <_>7 12 6 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0451415292918682</threshold>
-            <left_val>0.5188326835632324</left_val>
-            <right_val>0.2063035964965820</right_val></_></_>
-        <_>
-          <!-- tree 204 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 14 2 3 -1.</_>
-                <_>0 15 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0795620037242770e-003</threshold>
-            <left_val>0.3904685080051422</left_val>
-            <right_val>0.5137907266616821</right_val></_></_>
-        <_>
-          <!-- tree 205 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>11 12 1 2 -1.</_>
-                <_>11 13 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5995999274309725e-004</threshold>
-            <left_val>0.4895322918891907</left_val>
-            <right_val>0.5427504181861877</right_val></_></_>
-        <_>
-          <!-- tree 206 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>4 3 8 3 -1.</_>
-                <_>8 3 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0193592701107264</threshold>
-            <left_val>0.6975228786468506</left_val>
-            <right_val>0.4773507118225098</right_val></_></_>
-        <_>
-          <!-- tree 207 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 4 20 6 -1.</_>
-                <_>0 4 10 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2072550952434540</threshold>
-            <left_val>0.5233635902404785</left_val>
-            <right_val>0.3034991919994354</right_val></_></_>
-        <_>
-          <!-- tree 208 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>9 14 1 3 -1.</_>
-                <_>9 15 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.1953290929086506e-004</threshold>
-            <left_val>0.5419396758079529</left_val>
-            <right_val>0.4460186064243317</right_val></_></_>
-        <_>
-          <!-- tree 209 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>8 14 4 3 -1.</_>
-                <_>8 15 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2582069505006075e-003</threshold>
-            <left_val>0.4815764129161835</left_val>
-            <right_val>0.6027408838272095</right_val></_></_>
-        <_>
-          <!-- tree 210 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>0 15 14 4 -1.</_>
-                <_>0 17 14 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.7811207845807076e-003</threshold>
-            <left_val>0.3980278968811035</left_val>
-            <right_val>0.5183305740356445</right_val></_></_>
-        <_>
-          <!-- tree 211 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>1 14 18 6 -1.</_>
-                <_>1 17 18 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0111543098464608</threshold>
-            <left_val>0.5431231856346130</left_val>
-            <right_val>0.4188759922981262</right_val></_></_>
-        <_>
-          <!-- tree 212 -->
-          <_>
-            <!-- 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.0431624315679073</threshold>
-            <left_val>0.4738228023052216</left_val>
-            <right_val>0.6522961258888245</right_val></_></_></trees>
-      <stage_threshold>105.7611007690429700</stage_threshold>
-      <parent>20</parent>
-      <next>-1</next></_></stages></haarcascade_frontalface_alt>
-</opencv_storage>
diff --git a/branches/nota-show-app/haarcascades/haarcascade_mcs_nose.xml b/branches/nota-show-app/haarcascades/haarcascade_mcs_nose.xml
deleted file mode 100644 (file)
index 7ad9fb3..0000000
+++ /dev/null
@@ -1,48433 +0,0 @@
-<?xml version="1.0"?>
-<!----------------------------------------------------------------------------
-  18x15 Nose detector computed with 7000 positive samples
-
-//////////////////////////////////////////////////////////////////////////
-| Contributors License Agreement
-| 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.
-|
-| Copyright (c) 2008, Modesto Castrillon-Santana (IUSIANI, University of
-| Las Palmas de Gran Canaria, Spain).
-|  All rights reserved.
-|
-| Redistribution and use in source and binary forms, with or without
-| modification, are permitted provided that the following conditions are
-| met:
-|
-|    * Redistributions of source code must retain the above copyright
-|       notice, this list of conditions and the following disclaimer.
-|    * Redistributions 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 Contributor may not 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
-| 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.  Back to
-| Top
-//////////////////////////////////////////////////////////////////////////
-
-RESEARCH USE:
-If you are using any of the detectors or involved ideas please cite one of these papers:
-
-@ARTICLE{Castrillon07-jvci,
-  author =       "Castrill\'on Santana, M. and D\'eniz Su\'arez, O. and Hern\'andez Tejera, M. and Guerra Artal, C.",
-  title =        "ENCARA2: Real-time Detection of Multiple Faces at Different Resolutions in Video Streams",
-  journal =      "Journal of Visual Communication and Image Representation",
-  year =         "2007",
-  vol =          "18",
-  issue =        "2",
-  month =        "April",
-  pages =        "130-140"
-}
-
-@INPROCEEDINGS{Castrillon07-swb,
-  author =       "Castrill\'on Santana, M. and D\'eniz Su\'arez, O. and Hern\'andez Sosa, D. and Lorenzo Navarro, J. ",
-  title =        "Using Incremental Principal Component Analysis to Learn a Gender Classifier Automatically",
-  booktitle =    "1st Spanish Workshop on Biometrics",
-  year =         "2007",
-  month =        "June",
-  address =      "Girona, Spain",
-  file = F
-}
-
-A comparison of this and other face related classifiers can be found in:
-
-@InProceedings{Castrillon08a-visapp,
- 'athor =       "Modesto Castrill\'on-Santana and O. D\'eniz-Su\'arez, L. Ant\'on-Canal\'{\i}s and J. Lorenzo-Navarro",
-  title =        "Face and Facial Feature Detection Evaluation"
-  booktitle =    "Third International Conference on Computer Vision Theory and Applications, VISAPP08"
-  year =         "2008",
-  month =        "January"
-}
-
-More information can be found at http://mozart.dis.ulpgc.es/Gias/modesto_eng.html or in the papers.
-
-COMMERCIAL USE:
-If you have any commercial interest in this work please contact 
-mcastrillon@iusiani.ulpgc.es
------------------------------------------------------------------------->
-<opencv_storage>
-<classifier_Nariz_20stages type_id="opencv-haar-classifier">
-  <size>
-    18 15</size>
-  <stages>
-    <_>
-      <!-- stage 0 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 4 4 4 -1.</_>
-                <_>
-                  8 4 4 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0363217890262604</threshold>
-            <left_val>-0.6772649884223938</left_val>
-            <right_val>0.6687346100807190</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 7 -1.</_>
-                <_>
-                  6 0 6 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0544859282672405</threshold>
-            <left_val>-0.4403176903724670</left_val>
-            <right_val>0.4891850948333740</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 5 12 9 -1.</_>
-                <_>
-                  3 8 12 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1508972942829132</threshold>
-            <left_val>0.6370239257812500</left_val>
-            <right_val>-0.2814675867557526</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 6 8 -1.</_>
-                <_>
-                  6 0 3 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0794939175248146</threshold>
-            <left_val>0.6347042918205261</left_val>
-            <right_val>-0.1611918956041336</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 8 12 4 -1.</_>
-                <_>
-                  3 10 12 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0670417398214340</threshold>
-            <left_val>0.5956599712371826</left_val>
-            <right_val>-0.1645421981811523</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 1 3 8 -1.</_>
-                <_>
-                  10 1 3 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1654247045516968</threshold>
-            <left_val>-0.0291650108993053</left_val>
-            <right_val>0.2784962058067322</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 1 8 3 -1.</_>
-                <_>
-                  8 1 4 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1449110060930252</threshold>
-            <left_val>-0.1593054980039597</left_val>
-            <right_val>0.5626019239425659</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 3 -1.</_>
-                <_>
-                  3 1 12 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0126969404518604</threshold>
-            <left_val>-0.6924440860748291</left_val>
-            <right_val>0.1042767018079758</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 3 -1.</_>
-                <_>
-                  8 1 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.2858339622616768e-003</threshold>
-            <left_val>0.0736001133918762</left_val>
-            <right_val>-0.8135973811149597</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 6 11 9 -1.</_>
-                <_>
-                  5 9 11 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1319603025913239</threshold>
-            <left_val>-0.0852369293570518</left_val>
-            <right_val>0.6464285850524902</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 2 1 -1.</_>
-                <_>
-                  8 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6259789592586458e-005</threshold>
-            <left_val>-0.2522526085376740</left_val>
-            <right_val>0.2770084142684937</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 2 1 -1.</_>
-                <_>
-                  9 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.9456392743159086e-005</threshold>
-            <left_val>-0.1598252952098846</left_val>
-            <right_val>0.1796030998229981</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 9 7 -1.</_>
-                <_>
-                  7 0 3 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0181720405817032</threshold>
-            <left_val>0.4662343859672546</left_val>
-            <right_val>-0.1598974019289017</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 7 12 8 -1.</_>
-                <_>
-                  3 9 12 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1194007992744446</threshold>
-            <left_val>0.5828961133956909</left_val>
-            <right_val>-0.1248269975185394</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 14 14 -1.</_>
-                <_>
-                  9 0 7 14 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.4961996078491211</threshold>
-            <left_val>0.7593098878860474</left_val>
-            <right_val>-0.0939436629414558</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 4 12 9 -1.</_>
-                <_>
-                  3 7 12 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1830939948558807</threshold>
-            <left_val>0.5817549228668213</left_val>
-            <right_val>-0.0883935913443565</right_val></_></_></trees>
-      <stage_threshold>-1.8310650587081909</stage_threshold>
-      <parent>-1</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 1 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 3 6 1 -1.</_>
-                <_>
-                  8 3 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0485280007123947</threshold>
-            <left_val>1.5333959890995175e-004</left_val>
-            <right_val>-2.6736979980468750e+003</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 6 4 -1.</_>
-                <_>
-                  9 2 3 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1116186007857323</threshold>
-            <left_val>-0.1391783952713013</left_val>
-            <right_val>0.4706197082996368</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 5 6 -1.</_>
-                <_>
-                  9 2 5 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1409423947334290</threshold>
-            <left_val>-0.4590255022048950</left_val>
-            <right_val>0.6874074935913086</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 4 9 -1.</_>
-                <_>
-                  7 3 4 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1528792977333069</threshold>
-            <left_val>0.2594836950302124</left_val>
-            <right_val>-0.0452645681798458</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 8 4 -1.</_>
-                <_>
-                  10 2 4 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0578792616724968</threshold>
-            <left_val>-0.3745568990707398</left_val>
-            <right_val>0.4699620902538300</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 1 -1.</_>
-                <_>
-                  7 0 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9482799842953682e-003</threshold>
-            <left_val>-0.3329465985298157</left_val>
-            <right_val>0.2753989100456238</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 6 14 9 -1.</_>
-                <_>
-                  2 9 14 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1846064031124115</threshold>
-            <left_val>0.4868184924125671</left_val>
-            <right_val>-0.1640070974826813</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 5 3 -1.</_>
-                <_>
-                  9 1 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.6531449556350708e-003</threshold>
-            <left_val>-0.6523829102516174</left_val>
-            <right_val>0.1116930022835732</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 10 2 -1.</_>
-                <_>
-                  4 0 5 1 2.</_>
-                <_>
-                  9 1 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.0141983926296234e-003</threshold>
-            <left_val>0.1197912991046906</left_val>
-            <right_val>-0.7178090810775757</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 12 14 -1.</_>
-                <_>
-                  9 0 6 14 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1370732933282852</threshold>
-            <left_val>-0.1418797969818115</left_val>
-            <right_val>0.3295237123966217</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 6 3 -1.</_>
-                <_>
-                  5 1 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.0329283848404884e-003</threshold>
-            <left_val>0.1041319966316223</left_val>
-            <right_val>-0.7335981130599976</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 14 -1.</_>
-                <_>
-                  14 7 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1803364008665085</threshold>
-            <left_val>-0.5487949252128601</left_val>
-            <right_val>0.0710614770650864</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 10 2 -1.</_>
-                <_>
-                  4 1 5 1 2.</_>
-                <_>
-                  9 2 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.8154532238841057e-003</threshold>
-            <left_val>-0.6895282268524170</left_val>
-            <right_val>0.1063653975725174</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 9 14 4 -1.</_>
-                <_>
-                  2 11 14 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1088579967617989</threshold>
-            <left_val>0.7059208154678345</left_val>
-            <right_val>-0.1002665981650353</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 4 14 9 -1.</_>
-                <_>
-                  2 7 14 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1726516932249069</threshold>
-            <left_val>0.4895541071891785</left_val>
-            <right_val>-0.1376973986625671</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 12 -1.</_>
-                <_>
-                  14 6 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0574669800698757</threshold>
-            <left_val>0.0478747487068176</left_val>
-            <right_val>-0.3361113071441650</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 4 12 -1.</_>
-                <_>
-                  0 6 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1294801980257034</threshold>
-            <left_val>-0.6789883971214294</left_val>
-            <right_val>0.1097540035843849</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 1 3 3 -1.</_>
-                <_>
-                  11 2 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.8118398301303387e-003</threshold>
-            <left_val>-0.5081049203872681</left_val>
-            <right_val>0.0530205518007278</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 3 4 2 -1.</_>
-                <_>
-                  6 3 2 1 2.</_>
-                <_>
-                  8 4 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2181649953126907e-003</threshold>
-            <left_val>-0.7440345287322998</left_val>
-            <right_val>0.0739578828215599</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 6 4 -1.</_>
-                <_>
-                  8 1 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0141012202948332</threshold>
-            <left_val>-0.5120034217834473</left_val>
-            <right_val>0.0294169094413519</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 1 2 -1.</_>
-                <_>
-                  2 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.3739310563541949e-005</threshold>
-            <left_val>0.2070824950933456</left_val>
-            <right_val>-0.2183579057455063</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 4 3 -1.</_>
-                <_>
-                  7 2 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.6746207885444164e-003</threshold>
-            <left_val>0.0782192721962929</left_val>
-            <right_val>-0.5858296751976013</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 3 3 -1.</_>
-                <_>
-                  4 2 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.5912399441003799e-003</threshold>
-            <left_val>-0.6527547240257263</left_val>
-            <right_val>0.0550902597606182</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 1 8 14 -1.</_>
-                <_>
-                  10 8 8 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2605709135532379</threshold>
-            <left_val>0.0209255293011665</left_val>
-            <right_val>-0.6453688144683838</right_val></_></_></trees>
-      <stage_threshold>-1.7070330381393433</stage_threshold>
-      <parent>0</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 2 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 5 8 6 -1.</_>
-                <_>
-                  5 8 8 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0890733674168587</threshold>
-            <left_val>0.5498613119125366</left_val>
-            <right_val>-0.5031049251556397</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 8 12 -1.</_>
-                <_>
-                  11 0 4 12 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0470851697027683</threshold>
-            <left_val>0.3855659961700440</left_val>
-            <right_val>-0.1619472056627274</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 8 10 -1.</_>
-                <_>
-                  8 0 4 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1344425976276398</threshold>
-            <left_val>-0.3161787092685700</left_val>
-            <right_val>0.5639414191246033</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 2 8 -1.</_>
-                <_>
-                  9 2 2 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.2632790282368660e-003</threshold>
-            <left_val>-0.2234936952590942</left_val>
-            <right_val>0.0977761000394821</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 8 2 -1.</_>
-                <_>
-                  9 3 4 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1214829981327057</threshold>
-            <left_val>-0.1339429020881653</left_val>
-            <right_val>0.5355374813079834</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 1 4 -1.</_>
-                <_>
-                  10 1 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.3225349616259336e-003</threshold>
-            <left_val>-0.6828700900077820</left_val>
-            <right_val>0.0832272768020630</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 10 2 -1.</_>
-                <_>
-                  4 2 5 1 2.</_>
-                <_>
-                  9 3 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.7031590044498444e-003</threshold>
-            <left_val>-0.6824396848678589</left_val>
-            <right_val>0.1067868992686272</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 4 -1.</_>
-                <_>
-                  9 0 9 2 2.</_>
-                <_>
-                  0 2 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0353097803890705</threshold>
-            <left_val>-0.6521000862121582</left_val>
-            <right_val>0.0987162664532661</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 8 14 -1.</_>
-                <_>
-                  3 0 4 14 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0304474700242281</threshold>
-            <left_val>0.2479538023471832</left_val>
-            <right_val>-0.2581886053085327</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 2 -1.</_>
-                <_>
-                  7 1 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8874127678573132e-003</threshold>
-            <left_val>0.0805528536438942</left_val>
-            <right_val>-0.6340317130088806</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 4 12 8 -1.</_>
-                <_>
-                  3 6 12 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1415794938802719</threshold>
-            <left_val>0.6374232172966003</left_val>
-            <right_val>-0.0921661630272865</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 10 9 -1.</_>
-                <_>
-                  4 7 10 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1456591933965683</threshold>
-            <left_val>-0.1032999008893967</left_val>
-            <right_val>0.5838242173194885</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 8 3 -1.</_>
-                <_>
-                  1 1 8 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0116241797804832</threshold>
-            <left_val>-0.6888915896415710</left_val>
-            <right_val>0.0828648507595062</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 6 4 -1.</_>
-                <_>
-                  8 2 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0217475499957800</threshold>
-            <left_val>-0.6213839054107666</left_val>
-            <right_val>0.0476981997489929</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 2 -1.</_>
-                <_>
-                  6 0 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0184830799698830</threshold>
-            <left_val>-0.2010547071695328</left_val>
-            <right_val>0.2679708898067474</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 12 4 -1.</_>
-                <_>
-                  8 0 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0369827300310135</threshold>
-            <left_val>-0.1693059951066971</left_val>
-            <right_val>0.2272700071334839</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 3 2 -1.</_>
-                <_>
-                  7 0 3 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0168901197612286</threshold>
-            <left_val>0.0774174928665161</left_val>
-            <right_val>-0.7618877291679382</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 6 14 9 -1.</_>
-                <_>
-                  2 9 14 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2389906048774719</threshold>
-            <left_val>0.4399172961711884</left_val>
-            <right_val>-0.1319973021745682</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 10 7 -1.</_>
-                <_>
-                  9 0 5 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1849491000175476</threshold>
-            <left_val>0.7312037944793701</left_val>
-            <right_val>-0.0721847563982010</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 3 1 -1.</_>
-                <_>
-                  16 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.1745406389236450e-003</threshold>
-            <left_val>0.0494462810456753</left_val>
-            <right_val>-0.5703629255294800</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 1 3 -1.</_>
-                <_>
-                  2 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.2624902240931988e-003</threshold>
-            <left_val>0.0598880685865879</left_val>
-            <right_val>-0.7028918266296387</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 12 4 -1.</_>
-                <_>
-                  8 0 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0525570586323738</threshold>
-            <left_val>-0.0988772809505463</left_val>
-            <right_val>0.1742382049560547</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 7 -1.</_>
-                <_>
-                  7 0 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0300392601639032</threshold>
-            <left_val>0.4987078011035919</left_val>
-            <right_val>-0.0794838070869446</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 3 2 -1.</_>
-                <_>
-                  10 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0109278596937656</threshold>
-            <left_val>-0.4537245929241180</left_val>
-            <right_val>0.0490351393818855</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 1 3 -1.</_>
-                <_>
-                  8 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-8.5020083934068680e-003</threshold>
-            <left_val>-0.7386950850486755</left_val>
-            <right_val>0.0514139384031296</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 9 16 6 -1.</_>
-                <_>
-                  1 11 16 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0552169494330883</threshold>
-            <left_val>-0.1239347010850906</left_val>
-            <right_val>0.3220806121826172</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 9 14 4 -1.</_>
-                <_>
-                  1 11 14 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0883669406175613</threshold>
-            <left_val>0.4828915894031525</left_val>
-            <right_val>-0.0840416923165321</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 11 8 4 -1.</_>
-                <_>
-                  5 13 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0171657595783472</threshold>
-            <left_val>-0.1314162015914917</left_val>
-            <right_val>0.2680459022521973</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 8 2 -1.</_>
-                <_>
-                  8 0 4 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0905170589685440</threshold>
-            <left_val>-0.0930236876010895</left_val>
-            <right_val>0.4067414999008179</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 12 4 -1.</_>
-                <_>
-                  8 0 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0152978999540210</threshold>
-            <left_val>-0.1135606989264488</left_val>
-            <right_val>0.0976252779364586</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 16 2 -1.</_>
-                <_>
-                  4 1 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0306295193731785</threshold>
-            <left_val>0.4253452122211456</left_val>
-            <right_val>-0.0865394771099091</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 8 -1.</_>
-                <_>
-                  9 0 9 4 2.</_>
-                <_>
-                  0 4 9 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0798880606889725</threshold>
-            <left_val>0.0924375280737877</left_val>
-            <right_val>-0.3989180028438568</right_val></_></_></trees>
-      <stage_threshold>-1.5818140506744385</stage_threshold>
-      <parent>1</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 3 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 8 3 -1.</_>
-                <_>
-                  10 2 4 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0614461190998554</threshold>
-            <left_val>-0.4504989981651306</left_val>
-            <right_val>0.4854202866554260</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 6 7 -1.</_>
-                <_>
-                  10 0 3 7 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1895785927772522</threshold>
-            <left_val>-0.0670469328761101</left_val>
-            <right_val>0.4197702109813690</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 7 6 -1.</_>
-                <_>
-                  8 0 7 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1736567020416260</threshold>
-            <left_val>-0.2891381084918976</left_val>
-            <right_val>0.5291916131973267</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 9 6 4 -1.</_>
-                <_>
-                  12 9 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0164134204387665</threshold>
-            <left_val>0.2862224876880646</left_val>
-            <right_val>-0.1747338026762009</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 6 4 -1.</_>
-                <_>
-                  3 9 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0107280304655433</threshold>
-            <left_val>0.3140093088150024</left_val>
-            <right_val>-0.2830933034420013</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 12 1 -1.</_>
-                <_>
-                  7 1 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.7994461171329021e-003</threshold>
-            <left_val>-0.2857860922813416</left_val>
-            <right_val>0.2250297963619232</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 8 3 -1.</_>
-                <_>
-                  4 2 8 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0113080795854330</threshold>
-            <left_val>0.1045889034867287</left_val>
-            <right_val>-0.7427430152893066</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 4 12 8 -1.</_>
-                <_>
-                  3 6 12 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1032197996973991</threshold>
-            <left_val>-0.1167842000722885</left_val>
-            <right_val>0.4927442073822022</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 6 3 -1.</_>
-                <_>
-                  6 1 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.6132972240447998e-003</threshold>
-            <left_val>0.0890597030520439</left_val>
-            <right_val>-0.5344030857086182</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 5 4 4 -1.</_>
-                <_>
-                  12 6 2 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0606942698359489</threshold>
-            <left_val>0.5584030747413635</left_val>
-            <right_val>-0.0227699298411608</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 1 3 -1.</_>
-                <_>
-                  8 2 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.2487940303981304e-003</threshold>
-            <left_val>0.0758677795529366</left_val>
-            <right_val>-0.5872176289558411</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 5 4 4 -1.</_>
-                <_>
-                  12 6 2 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0400232896208763</threshold>
-            <left_val>0.1412438005208969</left_val>
-            <right_val>-0.0172170307487249</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 5 4 4 -1.</_>
-                <_>
-                  6 6 4 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0412207692861557</threshold>
-            <left_val>0.5134109258651733</left_val>
-            <right_val>-0.0854056328535080</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 2 2 -1.</_>
-                <_>
-                  10 1 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.5766770597547293e-003</threshold>
-            <left_val>-0.6052265167236328</left_val>
-            <right_val>0.0409328490495682</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 3 -1.</_>
-                <_>
-                  7 1 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.9679548293352127e-003</threshold>
-            <left_val>-0.6063398122787476</left_val>
-            <right_val>0.0673605129122734</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 6 1 -1.</_>
-                <_>
-                  6 0 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.7802299745380878e-003</threshold>
-            <left_val>0.2780480086803436</left_val>
-            <right_val>-0.1798703074455261</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 6 3 -1.</_>
-                <_>
-                  9 0 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0207993201911449</threshold>
-            <left_val>0.4816789031028748</left_val>
-            <right_val>-0.1240388005971909</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 6 10 9 -1.</_>
-                <_>
-                  5 9 10 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1391586959362030</threshold>
-            <left_val>-0.0447275117039680</left_val>
-            <right_val>0.5863171219825745</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 8 6 2 -1.</_>
-                <_>
-                  6 9 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3711780346930027e-003</threshold>
-            <left_val>0.2039086967706680</left_val>
-            <right_val>-0.2339323014020920</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 10 3 5 -1.</_>
-                <_>
-                  16 10 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0164771005511284</threshold>
-            <left_val>0.0404451601207256</left_val>
-            <right_val>-0.6250053048133850</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 3 5 -1.</_>
-                <_>
-                  1 10 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0110789798200130</threshold>
-            <left_val>0.0576713494956493</left_val>
-            <right_val>-0.5416951179504395</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 11 16 4 -1.</_>
-                <_>
-                  1 13 16 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0162228699773550</threshold>
-            <left_val>-0.1663480997085571</left_val>
-            <right_val>0.2072461992502213</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 3 3 -1.</_>
-                <_>
-                  0 11 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.1675870567560196e-003</threshold>
-            <left_val>-0.4788069128990173</left_val>
-            <right_val>0.0757727622985840</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 7 12 8 -1.</_>
-                <_>
-                  3 9 12 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0589063800871372</threshold>
-            <left_val>-0.0867818593978882</left_val>
-            <right_val>0.3914811015129089</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 4 14 -1.</_>
-                <_>
-                  0 8 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0931876674294472</threshold>
-            <left_val>0.0619301609694958</left_val>
-            <right_val>-0.5739055871963501</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 11 3 1 -1.</_>
-                <_>
-                  16 12 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.0346969831734896e-003</threshold>
-            <left_val>-0.1360708028078079</left_val>
-            <right_val>0.0450085289776325</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 8 1 -1.</_>
-                <_>
-                  7 0 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.2366578020155430e-003</threshold>
-            <left_val>-0.1827117949724197</left_val>
-            <right_val>0.1689772009849548</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 3 2 -1.</_>
-                <_>
-                  13 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0105886701494455</threshold>
-            <left_val>-0.5542160868644714</left_val>
-            <right_val>0.0492046102881432</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 1 4 -1.</_>
-                <_>
-                  3 1 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0100352102890611</threshold>
-            <left_val>0.0409362092614174</left_val>
-            <right_val>-0.6871048212051392</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 12 4 -1.</_>
-                <_>
-                  7 1 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0344069004058838</threshold>
-            <left_val>0.3516596853733063</left_val>
-            <right_val>-0.0428969487547874</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 1 3 -1.</_>
-                <_>
-                  4 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.4508260004222393e-003</threshold>
-            <left_val>0.0498083718121052</left_val>
-            <right_val>-0.6168934106826782</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 2 12 -1.</_>
-                <_>
-                  12 0 2 6 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0823428034782410</threshold>
-            <left_val>0.0836414918303490</left_val>
-            <right_val>-0.0810145065188408</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 12 5 -1.</_>
-                <_>
-                  4 0 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0617706216871738</threshold>
-            <left_val>0.3232797980308533</left_val>
-            <right_val>-0.0792278200387955</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 12 7 -1.</_>
-                <_>
-                  8 0 6 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0364590808749199</threshold>
-            <left_val>-0.1596114933490753</left_val>
-            <right_val>0.1232450976967812</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 12 7 -1.</_>
-                <_>
-                  4 0 6 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0474974289536476</threshold>
-            <left_val>-0.1659339964389801</left_val>
-            <right_val>0.2966628074645996</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 1 3 -1.</_>
-                <_>
-                  8 2 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.6670873463153839e-003</threshold>
-            <left_val>-0.5881838202476502</left_val>
-            <right_val>0.0336683988571167</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 3 1 -1.</_>
-                <_>
-                  10 2 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.9817090407013893e-003</threshold>
-            <left_val>0.0585361085832119</left_val>
-            <right_val>-0.4767274856567383</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 6 16 8 -1.</_>
-                <_>
-                  1 8 16 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1032517030835152</threshold>
-            <left_val>0.2206470966339111</left_val>
-            <right_val>-0.1236488968133926</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 5 12 8 -1.</_>
-                <_>
-                  3 7 12 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0696480572223663</threshold>
-            <left_val>-0.1025395020842552</left_val>
-            <right_val>0.3714990019798279</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 4 12 4 -1.</_>
-                <_>
-                  3 6 12 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0588895305991173</threshold>
-            <left_val>0.3248862922191620</left_val>
-            <right_val>-0.0962660014629364</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 8 11 -1.</_>
-                <_>
-                  3 0 4 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0299398303031921</threshold>
-            <left_val>0.1798900961875916</left_val>
-            <right_val>-0.1531133055686951</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 1 3 1 -1.</_>
-                <_>
-                  12 2 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.5012055933475494e-003</threshold>
-            <left_val>0.0426186993718147</left_val>
-            <right_val>-0.5119447112083435</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 1 3 -1.</_>
-                <_>
-                  6 2 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.8030229993164539e-003</threshold>
-            <left_val>-0.4962818026542664</left_val>
-            <right_val>0.0598989911377430</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 12 12 2 -1.</_>
-                <_>
-                  5 12 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0227242801338434</threshold>
-            <left_val>-0.0956752821803093</left_val>
-            <right_val>0.2338289022445679</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 12 5 -1.</_>
-                <_>
-                  6 0 4 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0372309498488903</threshold>
-            <left_val>0.3216434121131897</left_val>
-            <right_val>-0.0921498537063599</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 2 17 2 -1.</_>
-                <_>
-                  1 3 17 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0166754201054573</threshold>
-            <left_val>0.0617647506296635</left_val>
-            <right_val>-0.4719795882701874</right_val></_></_></trees>
-      <stage_threshold>-1.5400149822235107</stage_threshold>
-      <parent>2</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 4 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 4 4 4 -1.</_>
-                <_>
-                  8 4 4 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0564467795193195</threshold>
-            <left_val>-0.4791874885559082</left_val>
-            <right_val>0.4913735091686249</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 1 2 11 -1.</_>
-                <_>
-                  10 1 1 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0106428097933531</threshold>
-            <left_val>-0.1448355019092560</left_val>
-            <right_val>0.3184663951396942</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 12 9 -1.</_>
-                <_>
-                  3 4 12 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0598327815532684</threshold>
-            <left_val>-0.3674696981906891</left_val>
-            <right_val>0.2713288962841034</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 4 2 -1.</_>
-                <_>
-                  9 0 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0121322497725487</threshold>
-            <left_val>0.1230909004807472</left_val>
-            <right_val>-0.0897226184606552</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 4 -1.</_>
-                <_>
-                  8 0 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.1117030885070562e-003</threshold>
-            <left_val>-0.3512226045131683</left_val>
-            <right_val>0.2213625013828278</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 8 8 7 -1.</_>
-                <_>
-                  10 8 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0397736988961697</threshold>
-            <left_val>0.2041599005460739</left_val>
-            <right_val>-0.0433022715151310</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 8 5 -1.</_>
-                <_>
-                  4 9 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0183949507772923</threshold>
-            <left_val>0.1936838030815125</left_val>
-            <right_val>-0.2287393063306809</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 1 -1.</_>
-                <_>
-                  7 0 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.2628989368677139e-003</threshold>
-            <left_val>-0.2214957028627396</left_val>
-            <right_val>0.2067804038524628</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 2 -1.</_>
-                <_>
-                  5 1 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.8584238439798355e-003</threshold>
-            <left_val>0.0557319596409798</left_val>
-            <right_val>-0.6437491774559021</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 8 2 -1.</_>
-                <_>
-                  8 1 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.9286862164735794e-003</threshold>
-            <left_val>-0.6289044022560120</left_val>
-            <right_val>0.0527597591280937</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 6 14 6 -1.</_>
-                <_>
-                  2 8 14 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0654434263706207</threshold>
-            <left_val>-0.1031555980443955</left_val>
-            <right_val>0.4465965032577515</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 9 12 4 -1.</_>
-                <_>
-                  3 11 12 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0322746597230434</threshold>
-            <left_val>-0.1719404011964798</left_val>
-            <right_val>0.3662515878677368</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 3 14 -1.</_>
-                <_>
-                  0 8 3 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0480254292488098</threshold>
-            <left_val>0.0847395211458206</left_val>
-            <right_val>-0.5135415196418762</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 14 2 -1.</_>
-                <_>
-                  9 0 7 1 2.</_>
-                <_>
-                  2 1 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0114615103229880</threshold>
-            <left_val>-0.6505548954010010</left_val>
-            <right_val>0.0551190003752708</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 4 -1.</_>
-                <_>
-                  9 0 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4770029596984386e-003</threshold>
-            <left_val>-0.1637386977672577</left_val>
-            <right_val>0.2640801966190338</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 3 6 -1.</_>
-                <_>
-                  9 2 1 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0417843498289585</threshold>
-            <left_val>-0.7496129274368286</left_val>
-            <right_val>0.0373055487871170</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 14 14 -1.</_>
-                <_>
-                  9 1 7 14 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.3199185132980347</threshold>
-            <left_val>0.4014340043067932</left_val>
-            <right_val>-0.1033769026398659</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 2 9 -1.</_>
-                <_>
-                  6 4 2 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1278306990861893</threshold>
-            <left_val>0.2711302936077118</left_val>
-            <right_val>-9.5342872664332390e-003</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 9 2 -1.</_>
-                <_>
-                  12 4 3 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0639397427439690</threshold>
-            <left_val>-0.1355940997600555</left_val>
-            <right_val>0.3188548088073731</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 6 16 9 -1.</_>
-                <_>
-                  1 9 16 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1486892998218536</threshold>
-            <left_val>-0.0747430101037025</left_val>
-            <right_val>0.5065084099769592</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 4 1 -1.</_>
-                <_>
-                  10 2 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0108674801886082</threshold>
-            <left_val>0.0678603425621986</left_val>
-            <right_val>-0.5648670792579651</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 3 8 6 -1.</_>
-                <_>
-                  5 6 8 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1110275015234947</threshold>
-            <left_val>0.3693794012069702</left_val>
-            <right_val>-0.1024053022265434</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 5 14 6 -1.</_>
-                <_>
-                  2 7 14 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0554906614124775</threshold>
-            <left_val>-0.1338842958211899</left_val>
-            <right_val>0.3250921070575714</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 10 -1.</_>
-                <_>
-                  9 0 9 5 2.</_>
-                <_>
-                  0 5 9 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1232120022177696</threshold>
-            <left_val>-0.4476852118968964</left_val>
-            <right_val>0.0736907273530960</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 18 2 -1.</_>
-                <_>
-                  0 4 9 1 2.</_>
-                <_>
-                  9 5 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0203750394284725</threshold>
-            <left_val>-0.6625912785530090</left_val>
-            <right_val>0.0422433987259865</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 10 -1.</_>
-                <_>
-                  16 0 1 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.0578291043639183e-003</threshold>
-            <left_val>0.1829244047403336</left_val>
-            <right_val>-0.1217911988496780</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 2 4 -1.</_>
-                <_>
-                  5 1 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0161957796663046</threshold>
-            <left_val>-0.6317883133888245</left_val>
-            <right_val>0.0402268916368485</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 12 3 -1.</_>
-                <_>
-                  9 0 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0509672202169895</threshold>
-            <left_val>-0.0774049535393715</left_val>
-            <right_val>0.2435534000396729</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 9 9 -1.</_>
-                <_>
-                  6 0 3 9 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0580940917134285</threshold>
-            <left_val>-0.1238128989934921</left_val>
-            <right_val>0.2535600960254669</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 3 1 -1.</_>
-                <_>
-                  10 4 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.2313118465244770e-003</threshold>
-            <left_val>-0.5383070111274719</left_val>
-            <right_val>0.0235711093991995</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 8 -1.</_>
-                <_>
-                  7 0 4 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0187011696398258</threshold>
-            <left_val>0.3781844079494476</left_val>
-            <right_val>-0.0800608471035957</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 12 12 2 -1.</_>
-                <_>
-                  3 13 12 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5685389991849661e-003</threshold>
-            <left_val>-0.1653445959091187</left_val>
-            <right_val>0.1620604991912842</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 2 5 -1.</_>
-                <_>
-                  8 0 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9677819218486547e-003</threshold>
-            <left_val>-0.1756453961133957</left_val>
-            <right_val>0.1530714035034180</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 3 12 -1.</_>
-                <_>
-                  12 0 3 6 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.3548716902732849</threshold>
-            <left_val>-0.0136137595400214</left_val>
-            <right_val>0.3601670861244202</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 12 3 -1.</_>
-                <_>
-                  6 0 6 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.2680880129337311</threshold>
-            <left_val>-0.0809430927038193</left_val>
-            <right_val>0.3691290915012360</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 9 15 6 -1.</_>
-                <_>
-                  2 11 15 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0628807172179222</threshold>
-            <left_val>-0.0913113132119179</left_val>
-            <right_val>0.3295261859893799</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 4 2 -1.</_>
-                <_>
-                  6 7 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0241544693708420</threshold>
-            <left_val>-0.0686313733458519</left_val>
-            <right_val>0.4574730098247528</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 12 2 -1.</_>
-                <_>
-                  9 1 6 1 2.</_>
-                <_>
-                  3 2 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.1738719493150711e-003</threshold>
-            <left_val>0.0545422695577145</left_val>
-            <right_val>-0.5137330889701843</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 1 3 3 -1.</_>
-                <_>
-                  7 2 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0130733698606491</threshold>
-            <left_val>-0.5970230102539063</left_val>
-            <right_val>0.0365914106369019</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 3 2 -1.</_>
-                <_>
-                  11 9 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.8077309988439083e-003</threshold>
-            <left_val>-0.0354327894747257</left_val>
-            <right_val>0.2519941031932831</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 18 4 -1.</_>
-                <_>
-                  0 7 9 2 2.</_>
-                <_>
-                  9 9 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0451491102576256</threshold>
-            <left_val>0.0638899281620979</left_val>
-            <right_val>-0.3836725056171417</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 3 1 -1.</_>
-                <_>
-                  10 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.9950553849339485e-003</threshold>
-            <left_val>0.0132095599547029</left_val>
-            <right_val>-0.4537735879421234</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 1 3 -1.</_>
-                <_>
-                  8 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.9643689095973969e-003</threshold>
-            <left_val>0.0337183102965355</left_val>
-            <right_val>-0.6533402204513550</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 18 14 -1.</_>
-                <_>
-                  9 1 9 7 2.</_>
-                <_>
-                  0 8 9 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3567276895046234</threshold>
-            <left_val>0.0322214402258396</left_val>
-            <right_val>-0.5800313949584961</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 12 3 -1.</_>
-                <_>
-                  3 0 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0362690612673759</threshold>
-            <left_val>0.2469438016414642</left_val>
-            <right_val>-0.1049576029181480</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 3 -1.</_>
-                <_>
-                  5 0 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0427862294018269</threshold>
-            <left_val>-0.0707177072763443</left_val>
-            <right_val>0.3693887889385223</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 1 1 2 -1.</_>
-                <_>
-                  8 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1904439888894558e-003</threshold>
-            <left_val>-0.3828451037406921</left_val>
-            <right_val>0.0615513585507870</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 2 1 12 -1.</_>
-                <_>
-                  17 2 1 6 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1074014976620674</threshold>
-            <left_val>-0.0219720508903265</left_val>
-            <right_val>0.1813759058713913</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 8 -1.</_>
-                <_>
-                  6 0 6 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0774416774511337</threshold>
-            <left_val>-0.2010713070631027</left_val>
-            <right_val>0.1122270971536636</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 2 1 12 -1.</_>
-                <_>
-                  17 2 1 6 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0711435526609421</threshold>
-            <left_val>-0.0310098994523287</left_val>
-            <right_val>0.0730640217661858</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 14 8 -1.</_>
-                <_>
-                  2 3 14 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0573387593030930</threshold>
-            <left_val>0.4086444079875946</left_val>
-            <right_val>-0.0614440515637398</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 5 14 6 -1.</_>
-                <_>
-                  2 7 14 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0721061602234840</threshold>
-            <left_val>0.3398239910602570</left_val>
-            <right_val>-0.0868131667375565</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 2 12 1 -1.</_>
-                <_>
-                  1 2 6 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0585803911089897</threshold>
-            <left_val>-0.4961046874523163</left_val>
-            <right_val>0.0615561902523041</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 5 4 2 -1.</_>
-                <_>
-                  9 5 2 1 2.</_>
-                <_>
-                  7 6 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.4991881586611271e-003</threshold>
-            <left_val>0.0394841395318508</left_val>
-            <right_val>-0.4602204859256744</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 4 16 6 -1.</_>
-                <_>
-                  1 6 16 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0579723715782166</threshold>
-            <left_val>-0.1136581003665924</left_val>
-            <right_val>0.1817841976881027</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 13 12 -1.</_>
-                <_>
-                  5 3 13 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.4121701121330261</threshold>
-            <left_val>0.0172915197908878</left_val>
-            <right_val>-0.8044996857643127</right_val></_></_></trees>
-      <stage_threshold>-1.5587489604949951</stage_threshold>
-      <parent>3</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 5 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 6 8 4 -1.</_>
-                <_>
-                  5 8 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0492322407662869</threshold>
-            <left_val>0.4037728011608124</left_val>
-            <right_val>-0.4236100018024445</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 4 10 -1.</_>
-                <_>
-                  9 0 2 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0273310504853725</threshold>
-            <left_val>-0.1327770054340363</left_val>
-            <right_val>0.2073374986648560</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 9 12 -1.</_>
-                <_>
-                  4 0 3 12 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0451007597148418</threshold>
-            <left_val>0.3161504864692688</left_val>
-            <right_val>-0.4204424023628235</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 14 10 -1.</_>
-                <_>
-                  11 4 7 5 2.</_>
-                <_>
-                  4 9 7 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2528321146965027</threshold>
-            <left_val>-0.5749738812446594</left_val>
-            <right_val>0.0644379332661629</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 12 10 -1.</_>
-                <_>
-                  0 4 6 5 2.</_>
-                <_>
-                  6 9 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0427955314517021</threshold>
-            <left_val>0.1252602040767670</left_val>
-            <right_val>-0.3632065951824188</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 8 -1.</_>
-                <_>
-                  9 0 9 4 2.</_>
-                <_>
-                  0 4 9 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1059911996126175</threshold>
-            <left_val>-0.5933778285980225</left_val>
-            <right_val>0.1167925000190735</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 11 15 2 -1.</_>
-                <_>
-                  1 12 15 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.1173040196299553e-003</threshold>
-            <left_val>-0.2029637992382050</left_val>
-            <right_val>0.2159796953201294</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 14 2 -1.</_>
-                <_>
-                  3 1 14 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0115433102473617</threshold>
-            <left_val>-0.5695471167564392</left_val>
-            <right_val>0.0695127025246620</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 7 4 -1.</_>
-                <_>
-                  3 2 7 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0259417798370123</threshold>
-            <left_val>0.0406758897006512</left_val>
-            <right_val>-0.5966268777847290</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 4 12 8 -1.</_>
-                <_>
-                  3 6 12 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1111780032515526</threshold>
-            <left_val>0.3923074901103973</left_val>
-            <right_val>-0.0852632820606232</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 13 12 -1.</_>
-                <_>
-                  2 5 13 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1398020982742310</threshold>
-            <left_val>-0.2032230049371719</left_val>
-            <right_val>0.2588416934013367</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 4 -1.</_>
-                <_>
-                  6 0 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0223447605967522</threshold>
-            <left_val>-0.2217562943696976</left_val>
-            <right_val>0.1535113006830216</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 7 -1.</_>
-                <_>
-                  9 0 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0356404818594456</threshold>
-            <left_val>-0.1139336973428726</left_val>
-            <right_val>0.2922905087471008</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 4 -1.</_>
-                <_>
-                  7 1 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.0998390913009644e-003</threshold>
-            <left_val>0.0395722091197968</left_val>
-            <right_val>-0.6671259999275208</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 7 14 6 -1.</_>
-                <_>
-                  2 9 14 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0534741394221783</threshold>
-            <left_val>-0.0767945721745491</left_val>
-            <right_val>0.4321976900100708</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 1 7 10 -1.</_>
-                <_>
-                  11 6 7 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0138621004298329</threshold>
-            <left_val>0.0846036896109581</left_val>
-            <right_val>-0.1605919003486633</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 10 3 -1.</_>
-                <_>
-                  9 0 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0770997405052185</threshold>
-            <left_val>0.5477244257926941</left_val>
-            <right_val>-0.0663700029253960</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 18 2 -1.</_>
-                <_>
-                  9 1 9 1 2.</_>
-                <_>
-                  0 2 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0128013696521521</threshold>
-            <left_val>-0.5547736287117004</left_val>
-            <right_val>0.0567846409976482</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 2 2 -1.</_>
-                <_>
-                  1 2 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0235139779979363e-004</threshold>
-            <left_val>0.1450944989919663</left_val>
-            <right_val>-0.1950954049825668</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 3 1 -1.</_>
-                <_>
-                  16 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.0487200282514095e-003</threshold>
-            <left_val>0.0400543101131916</left_val>
-            <right_val>-0.4442957043647766</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 1 3 -1.</_>
-                <_>
-                  2 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.5558041892945766e-003</threshold>
-            <left_val>-0.4354816973209381</left_val>
-            <right_val>0.0606299117207527</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 4 2 7 -1.</_>
-                <_>
-                  14 4 1 7 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0193000100553036</threshold>
-            <left_val>-0.0711913108825684</left_val>
-            <right_val>0.0810695365071297</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 10 16 2 -1.</_>
-                <_>
-                  1 11 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4058600217103958e-003</threshold>
-            <left_val>-0.1416722983121872</left_val>
-            <right_val>0.1968034058809280</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 6 2 6 -1.</_>
-                <_>
-                  13 6 1 6 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-8.6945146322250366e-003</threshold>
-            <left_val>-0.1313387006521225</left_val>
-            <right_val>0.0205014292150736</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 9 8 4 -1.</_>
-                <_>
-                  8 9 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.7174253314733505e-003</threshold>
-            <left_val>-0.1872030943632126</left_val>
-            <right_val>0.1876177042722702</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 8 14 4 -1.</_>
-                <_>
-                  2 10 14 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1115583032369614</threshold>
-            <left_val>0.4086495935916901</left_val>
-            <right_val>-0.0699931830167770</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 9 -1.</_>
-                <_>
-                  3 3 12 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0976407974958420</threshold>
-            <left_val>-0.1244983971118927</left_val>
-            <right_val>0.2161774039268494</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 1 4 12 -1.</_>
-                <_>
-                  14 7 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1506139039993286</threshold>
-            <left_val>-0.3867461979389191</left_val>
-            <right_val>0.0543168187141418</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 6 2 -1.</_>
-                <_>
-                  6 0 3 1 2.</_>
-                <_>
-                  9 1 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.9472171813249588e-003</threshold>
-            <left_val>0.0436532311141491</left_val>
-            <right_val>-0.5155900120735169</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 2 2 2 -1.</_>
-                <_>
-                  10 2 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0204955395311117</threshold>
-            <left_val>-0.5441694855690002</left_val>
-            <right_val>7.6605947688221931e-003</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 6 -1.</_>
-                <_>
-                  7 0 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0272786691784859</threshold>
-            <left_val>0.4267495870590210</left_val>
-            <right_val>-0.0565182790160179</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 4 6 -1.</_>
-                <_>
-                  11 10 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0135246496647596</threshold>
-            <left_val>-0.0507161505520344</left_val>
-            <right_val>0.1838100999593735</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 8 -1.</_>
-                <_>
-                  0 0 9 4 2.</_>
-                <_>
-                  9 4 9 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0949866473674774</threshold>
-            <left_val>-0.4232459962368012</left_val>
-            <right_val>0.0522982999682426</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 1 4 10 -1.</_>
-                <_>
-                  14 6 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1105156019330025</threshold>
-            <left_val>3.5527960862964392e-003</left_val>
-            <right_val>-0.4166136085987091</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 4 10 -1.</_>
-                <_>
-                  0 6 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1319251954555512</threshold>
-            <left_val>-0.6282796859741211</left_val>
-            <right_val>0.0391492694616318</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 2 2 2 -1.</_>
-                <_>
-                  10 2 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0194247197359800</threshold>
-            <left_val>6.5935368184000254e-004</left_val>
-            <right_val>-0.5752815008163452</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 2 2 2 -1.</_>
-                <_>
-                  8 2 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0147077599540353</threshold>
-            <left_val>0.0390244014561176</left_val>
-            <right_val>-0.5651786923408508</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 2 2 1 -1.</_>
-                <_>
-                  10 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9291698592714965e-004</threshold>
-            <left_val>-0.1292673051357269</left_val>
-            <right_val>0.1258907020092011</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 2 3 -1.</_>
-                <_>
-                  8 0 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1614220459014177e-003</threshold>
-            <left_val>-0.1379971951246262</left_val>
-            <right_val>0.1651082038879395</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 12 -1.</_>
-                <_>
-                  3 6 12 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.4875395894050598</threshold>
-            <left_val>0.4380280971527100</left_val>
-            <right_val>-0.0606237016618252</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 5 12 4 -1.</_>
-                <_>
-                  3 7 12 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0505968406796455</threshold>
-            <left_val>-0.0435010008513927</left_val>
-            <right_val>0.5122361779212952</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 1 6 14 -1.</_>
-                <_>
-                  12 8 6 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1982239037752152</threshold>
-            <left_val>0.0168439298868179</left_val>
-            <right_val>-0.4508939981460571</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 13 14 2 -1.</_>
-                <_>
-                  2 14 14 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0525614693760872</threshold>
-            <left_val>0.6191160082817078</left_val>
-            <right_val>-0.0332456789910793</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 18 6 -1.</_>
-                <_>
-                  0 6 18 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0394346490502357</threshold>
-            <left_val>-0.1332457065582275</left_val>
-            <right_val>0.1555656045675278</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 2 4 -1.</_>
-                <_>
-                  0 9 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.2802558317780495e-003</threshold>
-            <left_val>-0.4649186134338379</left_val>
-            <right_val>0.0463778004050255</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 12 10 -1.</_>
-                <_>
-                  10 0 4 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1878169029951096</threshold>
-            <left_val>-0.0738439187407494</left_val>
-            <right_val>0.2035520970821381</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 12 10 -1.</_>
-                <_>
-                  4 0 4 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0592883005738258</threshold>
-            <left_val>-0.1004031971096993</left_val>
-            <right_val>0.2930684983730316</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 13 12 2 -1.</_>
-                <_>
-                  3 14 12 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8330631107091904e-003</threshold>
-            <left_val>-0.1236037984490395</left_val>
-            <right_val>0.1822776049375534</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 8 4 6 -1.</_>
-                <_>
-                  3 10 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0134623004123569</threshold>
-            <left_val>-0.0865014195442200</left_val>
-            <right_val>0.2545304000377655</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 11 4 4 -1.</_>
-                <_>
-                  14 11 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0112787801772356</threshold>
-            <left_val>0.0359535515308380</left_val>
-            <right_val>-0.3637040853500366</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 5 14 -1.</_>
-                <_>
-                  0 8 5 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1112084984779358</threshold>
-            <left_val>0.0411560982465744</left_val>
-            <right_val>-0.4935589134693146</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 5 2 1 -1.</_>
-                <_>
-                  10 5 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.8954879641532898e-003</threshold>
-            <left_val>8.6054708808660507e-003</left_val>
-            <right_val>-0.5774816274642944</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 5 2 1 -1.</_>
-                <_>
-                  7 5 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.0609137765131891e-005</threshold>
-            <left_val>-0.1943852007389069</left_val>
-            <right_val>0.1089660003781319</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 11 17 4 -1.</_>
-                <_>
-                  1 12 17 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0111626898869872</threshold>
-            <left_val>-0.1052400022745132</left_val>
-            <right_val>0.1769991964101791</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 3 3 -1.</_>
-                <_>
-                  8 1 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0147585002705455</threshold>
-            <left_val>0.0338271111249924</left_val>
-            <right_val>-0.5783804059028626</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 2 2 -1.</_>
-                <_>
-                  9 2 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5100449137389660e-003</threshold>
-            <left_val>0.0122224902734160</left_val>
-            <right_val>-0.6832317113876343</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 11 4 4 -1.</_>
-                <_>
-                  2 11 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0132402600720525</threshold>
-            <left_val>0.0317283198237419</left_val>
-            <right_val>-0.4962331950664520</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 10 8 -1.</_>
-                <_>
-                  8 3 5 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2101143002510071</threshold>
-            <left_val>-0.4922251105308533</left_val>
-            <right_val>5.4596872068941593e-003</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 10 8 -1.</_>
-                <_>
-                  5 3 5 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2414025068283081</threshold>
-            <left_val>0.0314619205892086</left_val>
-            <right_val>-0.5690953135490418</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 2 4 -1.</_>
-                <_>
-                  12 7 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.8006789982318878e-003</threshold>
-            <left_val>-0.0650670900940895</left_val>
-            <right_val>0.0376422517001629</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 6 -1.</_>
-                <_>
-                  0 9 9 3 2.</_>
-                <_>
-                  9 12 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1262440979480743</threshold>
-            <left_val>0.0393773987889290</left_val>
-            <right_val>-0.4590097963809967</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 7 6 4 -1.</_>
-                <_>
-                  13 7 3 2 2.</_>
-                <_>
-                  10 9 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0130107998847961</threshold>
-            <left_val>-0.0579108111560345</left_val>
-            <right_val>0.2962261140346527</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 1 3 -1.</_>
-                <_>
-                  2 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.1800998412072659e-003</threshold>
-            <left_val>0.0342495106160641</left_val>
-            <right_val>-0.5636181831359863</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 12 2 -1.</_>
-                <_>
-                  8 0 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0242467503994703</threshold>
-            <left_val>-0.1086483970284462</left_val>
-            <right_val>0.1013154983520508</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 5 16 10 -1.</_>
-                <_>
-                  1 5 8 5 2.</_>
-                <_>
-                  9 10 8 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1696685999631882</threshold>
-            <left_val>-0.3411920964717865</left_val>
-            <right_val>0.0499880090355873</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 6 2 4 -1.</_>
-                <_>
-                  12 6 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0204610601067543</threshold>
-            <left_val>-0.2079558074474335</left_val>
-            <right_val>3.4589329734444618e-003</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 6 4 2 -1.</_>
-                <_>
-                  6 6 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0213081296533346</threshold>
-            <left_val>0.5027093887329102</left_val>
-            <right_val>-0.0400764681398869</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 8 6 4 -1.</_>
-                <_>
-                  13 8 3 2 2.</_>
-                <_>
-                  10 10 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0109308399260044</threshold>
-            <left_val>0.1563555002212524</left_val>
-            <right_val>-0.0751591026782990</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 4 1 -1.</_>
-                <_>
-                  10 1 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.9652167409658432e-003</threshold>
-            <left_val>0.0362863987684250</left_val>
-            <right_val>-0.5052989125251770</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 10 1 3 -1.</_>
-                <_>
-                  17 11 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.3498809207230806e-003</threshold>
-            <left_val>-0.2724232971668243</left_val>
-            <right_val>0.0273806899785995</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 11 2 -1.</_>
-                <_>
-                  3 0 11 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0597393512725830</threshold>
-            <left_val>0.0268720109015703</left_val>
-            <right_val>-0.6388636827468872</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 6 10 8 -1.</_>
-                <_>
-                  13 6 5 4 2.</_>
-                <_>
-                  8 10 5 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1278129965066910</threshold>
-            <left_val>1.4498339733108878e-003</left_val>
-            <right_val>-0.3833698928356171</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 14 2 -1.</_>
-                <_>
-                  2 13 14 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9313340783119202e-003</threshold>
-            <left_val>-0.1309947967529297</left_val>
-            <right_val>0.1298779994249344</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 10 1 3 -1.</_>
-                <_>
-                  17 11 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.1392742209136486e-003</threshold>
-            <left_val>0.0108347898349166</left_val>
-            <right_val>-0.3170185089111328</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 4 8 3 -1.</_>
-                <_>
-                  9 6 4 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0811345130205154</threshold>
-            <left_val>-0.3570674955844879</left_val>
-            <right_val>0.0494775287806988</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 9 3 6 -1.</_>
-                <_>
-                  13 11 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0604430399835110</threshold>
-            <left_val>0.4088949859142304</left_val>
-            <right_val>-0.0221638102084398</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 9 3 6 -1.</_>
-                <_>
-                  2 11 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9390361420810223e-003</threshold>
-            <left_val>-0.1046036034822464</left_val>
-            <right_val>0.1944513022899628</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 10 1 3 -1.</_>
-                <_>
-                  17 11 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.8998396929819137e-005</threshold>
-            <left_val>-0.0479567199945450</left_val>
-            <right_val>0.0571181289851666</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 1 3 -1.</_>
-                <_>
-                  0 11 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8057189881801605e-003</threshold>
-            <left_val>-0.2924138009548187</left_val>
-            <right_val>0.0581192187964916</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 1 6 6 -1.</_>
-                <_>
-                  11 1 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.7375837825238705e-003</threshold>
-            <left_val>-0.0886564627289772</left_val>
-            <right_val>0.0441452711820602</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 6 2 1 -1.</_>
-                <_>
-                  4 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.5221098591573536e-005</threshold>
-            <left_val>-0.1249044984579086</left_val>
-            <right_val>0.1266127973794937</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 3 3 -1.</_>
-                <_>
-                  14 1 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0241630896925926</threshold>
-            <left_val>-0.0133935501798987</left_val>
-            <right_val>0.3467755913734436</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 7 8 4 -1.</_>
-                <_>
-                  1 7 4 2 2.</_>
-                <_>
-                  5 9 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0127861900255084</threshold>
-            <left_val>-0.0568488091230392</left_val>
-            <right_val>0.2727532982826233</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 8 4 2 -1.</_>
-                <_>
-                  8 9 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.3572210446000099e-003</threshold>
-            <left_val>0.0654089972376823</left_val>
-            <right_val>-0.1414448022842407</right_val></_></_></trees>
-      <stage_threshold>-1.5197360515594482</stage_threshold>
-      <parent>4</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 6 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 4 6 -1.</_>
-                <_>
-                  9 2 4 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1201385036110878</threshold>
-            <left_val>-0.3657313883304596</left_val>
-            <right_val>0.3629319071769714</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 6 14 8 -1.</_>
-                <_>
-                  2 8 14 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1462011039257050</threshold>
-            <left_val>0.3965567946434021</left_val>
-            <right_val>-0.1946136951446533</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 3 -1.</_>
-                <_>
-                  7 0 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0123430602252483</threshold>
-            <left_val>-0.2474983036518097</left_val>
-            <right_val>0.2256231009960175</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 1 -1.</_>
-                <_>
-                  16 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.2748850062489510e-003</threshold>
-            <left_val>0.0721044987440109</left_val>
-            <right_val>-0.3896430134773254</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 3 6 -1.</_>
-                <_>
-                  8 3 3 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.2431180030107498</threshold>
-            <left_val>9.4664301723241806e-003</left_val>
-            <right_val>1.0626879882812500e+003</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 12 4 -1.</_>
-                <_>
-                  9 0 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0399235188961029</threshold>
-            <left_val>-0.1290356069803238</left_val>
-            <right_val>0.1935819983482361</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 6 7 -1.</_>
-                <_>
-                  3 8 3 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.0425998419523239e-003</threshold>
-            <left_val>0.1544698029756546</left_val>
-            <right_val>-0.2654632031917572</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 10 2 -1.</_>
-                <_>
-                  9 1 5 1 2.</_>
-                <_>
-                  4 2 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5724221058189869e-003</threshold>
-            <left_val>0.0737086832523346</left_val>
-            <right_val>-0.5816736221313477</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 6 6 -1.</_>
-                <_>
-                  3 3 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0233357399702072</threshold>
-            <left_val>-0.4272454082965851</left_val>
-            <right_val>0.0886551067233086</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 9 12 2 -1.</_>
-                <_>
-                  3 10 12 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0262159798294306</threshold>
-            <left_val>0.3560248017311096</left_val>
-            <right_val>-0.1014178022742271</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 9 16 2 -1.</_>
-                <_>
-                  1 10 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0114004900678992</threshold>
-            <left_val>-0.1101441010832787</left_val>
-            <right_val>0.3644121885299683</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 3 3 -1.</_>
-                <_>
-                  10 4 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0145206097513437</threshold>
-            <left_val>0.0214245207607746</left_val>
-            <right_val>-0.4902862012386322</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 3 8 2 -1.</_>
-                <_>
-                  5 3 4 1 2.</_>
-                <_>
-                  9 4 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.5834655910730362e-003</threshold>
-            <left_val>-0.6525719761848450</left_val>
-            <right_val>0.0546631813049316</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 14 12 -1.</_>
-                <_>
-                  9 0 7 6 2.</_>
-                <_>
-                  2 6 7 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1374545991420746</threshold>
-            <left_val>-0.5049275159835815</left_val>
-            <right_val>0.0527309887111187</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 2 3 -1.</_>
-                <_>
-                  6 1 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0126157002523541</threshold>
-            <left_val>-0.6245530843734741</left_val>
-            <right_val>0.0316158086061478</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 2 2 1 -1.</_>
-                <_>
-                  15 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3604110538144596e-005</threshold>
-            <left_val>0.0987414866685867</left_val>
-            <right_val>-0.0946909487247467</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 2 2 1 -1.</_>
-                <_>
-                  2 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.8249959693057463e-005</threshold>
-            <left_val>0.1445119976997376</left_val>
-            <right_val>-0.1613789051771164</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 4 4 -1.</_>
-                <_>
-                  14 1 2 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0199512392282486</threshold>
-            <left_val>-0.3773136138916016</left_val>
-            <right_val>0.0244714803993702</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 5 4 5 -1.</_>
-                <_>
-                  8 5 2 5 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0549685694277287</threshold>
-            <left_val>-0.4405806958675385</left_val>
-            <right_val>0.0534904003143311</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 4 -1.</_>
-                <_>
-                  5 1 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0169392302632332</threshold>
-            <left_val>-0.6665034890174866</left_val>
-            <right_val>0.0315596312284470</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 2 3 -1.</_>
-                <_>
-                  2 2 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0110901398584247</threshold>
-            <left_val>0.0311973206698895</left_val>
-            <right_val>-0.5475487709045410</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 12 4 -1.</_>
-                <_>
-                  8 0 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0289862100034952</threshold>
-            <left_val>-0.1251084953546524</left_val>
-            <right_val>0.0918823182582855</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 7 -1.</_>
-                <_>
-                  9 0 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1045346036553383</threshold>
-            <left_val>0.4357545971870422</left_val>
-            <right_val>-0.0606762506067753</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 3 1 8 -1.</_>
-                <_>
-                  9 5 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.6273069456219673e-003</threshold>
-            <left_val>0.0973885133862495</left_val>
-            <right_val>-0.0912084132432938</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 12 9 -1.</_>
-                <_>
-                  7 6 4 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.5169839859008789</threshold>
-            <left_val>-0.0609911382198334</left_val>
-            <right_val>0.4879719913005829</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 4 16 6 -1.</_>
-                <_>
-                  1 6 16 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0667436569929123</threshold>
-            <left_val>0.3727416992187500</left_val>
-            <right_val>-0.0635046362876892</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 1 3 2 -1.</_>
-                <_>
-                  6 1 3 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0154703501611948</threshold>
-            <left_val>0.0610504113137722</left_val>
-            <right_val>-0.4871797859668732</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 9 4 2 -1.</_>
-                <_>
-                  7 10 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.5926289856433868e-003</threshold>
-            <left_val>0.1421190947294235</left_val>
-            <right_val>-0.1508843004703522</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 5 14 10 -1.</_>
-                <_>
-                  1 5 7 5 2.</_>
-                <_>
-                  8 10 7 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2056556940078735</threshold>
-            <left_val>-0.4781495928764343</left_val>
-            <right_val>0.0436189286410809</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 9 3 6 -1.</_>
-                <_>
-                  10 11 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0296549908816814</threshold>
-            <left_val>-0.0354740694165230</left_val>
-            <right_val>0.1896422952413559</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 18 10 -1.</_>
-                <_>
-                  0 5 9 5 2.</_>
-                <_>
-                  9 10 9 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1328420042991638</threshold>
-            <left_val>0.0555178187787533</left_val>
-            <right_val>-0.3971447050571442</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 3 2 -1.</_>
-                <_>
-                  8 1 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3759230282157660e-003</threshold>
-            <left_val>0.0415674299001694</left_val>
-            <right_val>-0.3620547950267792</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 1 2 5 -1.</_>
-                <_>
-                  6 1 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4163701133802533e-004</threshold>
-            <left_val>-0.1866434067487717</left_val>
-            <right_val>0.1040982976555824</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 12 7 -1.</_>
-                <_>
-                  8 0 4 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0527310110628605</threshold>
-            <left_val>0.2760218083858490</left_val>
-            <right_val>-0.0270596593618393</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 12 4 -1.</_>
-                <_>
-                  4 0 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0621075518429279</threshold>
-            <left_val>0.3134047091007233</left_val>
-            <right_val>-0.0696556121110916</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 6 14 -1.</_>
-                <_>
-                  12 7 6 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0139620797708631</threshold>
-            <left_val>0.0415851585566998</left_val>
-            <right_val>-0.1057448983192444</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 12 5 -1.</_>
-                <_>
-                  5 0 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0591135807335377</threshold>
-            <left_val>-0.1132714971899986</left_val>
-            <right_val>0.2140036970376968</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 6 14 -1.</_>
-                <_>
-                  12 7 6 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.3247278034687042</threshold>
-            <left_val>-0.2102808952331543</left_val>
-            <right_val>0.0147817200049758</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 6 14 -1.</_>
-                <_>
-                  0 7 6 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.5277121290564537e-003</threshold>
-            <left_val>0.1057813987135887</left_val>
-            <right_val>-0.2166267037391663</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 9 3 6 -1.</_>
-                <_>
-                  10 11 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0557695515453815</threshold>
-            <left_val>0.2719202041625977</left_val>
-            <right_val>-0.0213698092848063</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 9 3 6 -1.</_>
-                <_>
-                  5 11 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0139181502163410</threshold>
-            <left_val>-0.0888932272791862</left_val>
-            <right_val>0.2555867135524750</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 13 6 2 -1.</_>
-                <_>
-                  7 14 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3373179137706757e-003</threshold>
-            <left_val>-0.1157324984669685</left_val>
-            <right_val>0.1542420983314514</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 2 1 3 -1.</_>
-                <_>
-                  7 3 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.1918689645826817e-003</threshold>
-            <left_val>0.0410376191139221</left_val>
-            <right_val>-0.5052363872528076</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 3 3 1 -1.</_>
-                <_>
-                  16 4 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.5471794009208679e-003</threshold>
-            <left_val>0.0143813500180840</left_val>
-            <right_val>-0.2316330969333649</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 11 1 3 -1.</_>
-                <_>
-                  2 12 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.2956521026790142e-003</threshold>
-            <left_val>-0.2828037142753601</left_val>
-            <right_val>0.0618998408317566</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 6 3 4 -1.</_>
-                <_>
-                  11 8 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0220706891268492</threshold>
-            <left_val>0.1489437073469162</left_val>
-            <right_val>-0.0949123501777649</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 5 14 9 -1.</_>
-                <_>
-                  2 8 14 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1664644032716751</threshold>
-            <left_val>-0.0590463504195213</left_val>
-            <right_val>0.4529106020927429</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 10 8 4 -1.</_>
-                <_>
-                  14 10 4 2 2.</_>
-                <_>
-                  10 12 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.9817809164524078e-003</threshold>
-            <left_val>-0.0702360421419144</left_val>
-            <right_val>0.1200437024235725</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 12 4 3 -1.</_>
-                <_>
-                  1 12 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.7218217775225639e-003</threshold>
-            <left_val>0.0476134307682514</left_val>
-            <right_val>-0.4164519906044006</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 8 2 -1.</_>
-                <_>
-                  8 1 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.8179560104035772e-005</threshold>
-            <left_val>-0.1135511025786400</left_val>
-            <right_val>0.0995815470814705</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 2 -1.</_>
-                <_>
-                  0 0 9 1 2.</_>
-                <_>
-                  9 1 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0115354498848319</threshold>
-            <left_val>0.0479713715612888</left_val>
-            <right_val>-0.4701226949691773</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 4 12 -1.</_>
-                <_>
-                  7 1 2 12 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0417897514998913</threshold>
-            <left_val>0.1801664978265762</left_val>
-            <right_val>-0.0923613235354424</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 11 18 4 -1.</_>
-                <_>
-                  0 12 18 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.5845858082175255e-003</threshold>
-            <left_val>-0.1170279979705811</left_val>
-            <right_val>0.1517726927995682</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 2 4 -1.</_>
-                <_>
-                  12 7 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0117145096883178</threshold>
-            <left_val>-0.0399577096104622</left_val>
-            <right_val>0.0563791207969189</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 18 6 -1.</_>
-                <_>
-                  0 10 18 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0809042006731033</threshold>
-            <left_val>-0.0586656406521797</left_val>
-            <right_val>0.3254713118076325</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 0 6 6 -1.</_>
-                <_>
-                  11 0 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0111858202144504</threshold>
-            <left_val>-0.1569270044565201</left_val>
-            <right_val>0.1074031963944435</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 4 2 -1.</_>
-                <_>
-                  6 7 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0207462906837463</threshold>
-            <left_val>-0.0727149471640587</left_val>
-            <right_val>0.2988258004188538</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 6 6 2 -1.</_>
-                <_>
-                  9 6 3 1 2.</_>
-                <_>
-                  6 7 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.1547999978065491e-003</threshold>
-            <left_val>0.0502206012606621</left_val>
-            <right_val>-0.3892965018749237</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 5 2 -1.</_>
-                <_>
-                  6 8 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.7662649303674698e-003</threshold>
-            <left_val>0.1062309965491295</left_val>
-            <right_val>-0.1640899926424027</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 6 3 4 -1.</_>
-                <_>
-                  11 8 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0132446801289916</threshold>
-            <left_val>-0.0340634994208813</left_val>
-            <right_val>0.3189088106155396</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 1 2 -1.</_>
-                <_>
-                  7 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0384900271892548e-003</threshold>
-            <left_val>0.0399366803467274</left_val>
-            <right_val>-0.4656496047973633</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 13 6 2 -1.</_>
-                <_>
-                  11 13 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0223837792873383</threshold>
-            <left_val>0.0195741802453995</left_val>
-            <right_val>-0.3179920017719269</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 2 2 6 -1.</_>
-                <_>
-                  8 2 1 3 2.</_>
-                <_>
-                  9 5 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.0196588747203350e-003</threshold>
-            <left_val>-0.4005850851535797</left_val>
-            <right_val>0.0411118082702160</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 8 2 3 -1.</_>
-                <_>
-                  16 9 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0133403996005654</threshold>
-            <left_val>7.2229830548167229e-003</left_val>
-            <right_val>-0.3585583865642548</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 1 10 4 -1.</_>
-                <_>
-                  6 1 10 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1654804944992065</threshold>
-            <left_val>0.0360200293362141</left_val>
-            <right_val>-0.4420441091060638</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 10 8 4 -1.</_>
-                <_>
-                  14 10 4 2 2.</_>
-                <_>
-                  10 12 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0172677896916866</threshold>
-            <left_val>0.0957728773355484</left_val>
-            <right_val>-0.0303796809166670</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 8 4 -1.</_>
-                <_>
-                  0 10 4 2 2.</_>
-                <_>
-                  4 12 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.7873580586165190e-003</threshold>
-            <left_val>-0.1340985000133514</left_val>
-            <right_val>0.1292660981416702</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 6 3 4 -1.</_>
-                <_>
-                  14 7 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.5727548897266388e-003</threshold>
-            <left_val>-0.0669078826904297</left_val>
-            <right_val>0.1738217025995255</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 2 3 -1.</_>
-                <_>
-                  0 9 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.5729602724313736e-003</threshold>
-            <left_val>0.0307218804955482</left_val>
-            <right_val>-0.5853425860404968</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 6 3 4 -1.</_>
-                <_>
-                  14 7 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0263858195394278</threshold>
-            <left_val>0.1778002977371216</left_val>
-            <right_val>-0.0393683984875679</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 6 4 3 -1.</_>
-                <_>
-                  4 7 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0118999304249883</threshold>
-            <left_val>-0.0571489408612251</left_val>
-            <right_val>0.3010109961032867</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 3 8 3 -1.</_>
-                <_>
-                  10 3 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0683530792593956</threshold>
-            <left_val>0.0291851498186588</left_val>
-            <right_val>-0.1551367044448853</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 8 3 -1.</_>
-                <_>
-                  4 3 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0108240302652121</threshold>
-            <left_val>-0.1347029060125351</left_val>
-            <right_val>0.1385277062654495</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 14 2 -1.</_>
-                <_>
-                  4 2 7 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0880321934819222</threshold>
-            <left_val>-0.0365363508462906</left_val>
-            <right_val>0.2360302060842514</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 12 4 -1.</_>
-                <_>
-                  3 1 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0257761701941490</threshold>
-            <left_val>0.1835854053497315</left_val>
-            <right_val>-0.1334383934736252</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 1 4 10 -1.</_>
-                <_>
-                  13 6 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0820100232958794</threshold>
-            <left_val>0.0118177495896816</left_val>
-            <right_val>-0.3187808990478516</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 14 2 -1.</_>
-                <_>
-                  7 2 7 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0203707292675972</threshold>
-            <left_val>0.2503522932529450</left_val>
-            <right_val>-0.0702304020524025</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 12 12 3 -1.</_>
-                <_>
-                  8 12 4 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0784170925617218</threshold>
-            <left_val>0.0254040490835905</left_val>
-            <right_val>-0.2163347005844116</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 2 3 -1.</_>
-                <_>
-                  0 10 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4000681266188622e-003</threshold>
-            <left_val>0.0398776307702065</left_val>
-            <right_val>-0.3819760978221893</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 6 2 2 -1.</_>
-                <_>
-                  10 6 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0116557897999883</threshold>
-            <left_val>8.5724918171763420e-003</left_val>
-            <right_val>-0.4681785106658936</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 6 2 2 -1.</_>
-                <_>
-                  7 6 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.1775790527462959e-005</threshold>
-            <left_val>-0.1735416948795319</left_val>
-            <right_val>0.0904209986329079</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 2 3 1 -1.</_>
-                <_>
-                  16 3 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0180264692753553</threshold>
-            <left_val>-0.7927592992782593</left_val>
-            <right_val>9.2333797365427017e-003</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 7 3 3 -1.</_>
-                <_>
-                  4 8 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1709210705012083e-003</threshold>
-            <left_val>-0.0846288874745369</left_val>
-            <right_val>0.1654430031776428</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 5 12 4 -1.</_>
-                <_>
-                  3 7 12 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0822796970605850</threshold>
-            <left_val>0.2155113965272903</left_val>
-            <right_val>-0.0919006466865540</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 1 3 -1.</_>
-                <_>
-                  2 3 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0102933598682284</threshold>
-            <left_val>0.0234903004020453</left_val>
-            <right_val>-0.6768108010292053</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 6 -1.</_>
-                <_>
-                  0 11 18 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2188197970390320</threshold>
-            <left_val>0.5047866702079773</left_val>
-            <right_val>-0.0318927802145481</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 18 2 -1.</_>
-                <_>
-                  0 4 9 1 2.</_>
-                <_>
-                  9 5 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0221189390867949</threshold>
-            <left_val>-0.6315932273864746</left_val>
-            <right_val>0.0259883198887110</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 3 3 3 -1.</_>
-                <_>
-                  14 4 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0229423604905605</threshold>
-            <left_val>-0.0406722798943520</left_val>
-            <right_val>0.3567295074462891</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 2 14 6 -1.</_>
-                <_>
-                  2 4 14 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0567631609737873</threshold>
-            <left_val>0.3552303910255432</left_val>
-            <right_val>-0.0383039787411690</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 1 3 -1.</_>
-                <_>
-                  8 3 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-7.5660292059183121e-003</threshold>
-            <left_val>-0.3711034953594208</left_val>
-            <right_val>0.0192387793213129</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 6 10 -1.</_>
-                <_>
-                  0 6 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1234833970665932</threshold>
-            <left_val>0.0215323101729155</left_val>
-            <right_val>-0.6329115033149719</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 6 2 -1.</_>
-                <_>
-                  9 4 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7259990019956604e-005</threshold>
-            <left_val>-0.1203657016158104</left_val>
-            <right_val>0.1052009984850884</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 6 -1.</_>
-                <_>
-                  0 0 9 3 2.</_>
-                <_>
-                  9 3 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0855550765991211</threshold>
-            <left_val>0.0342116691172123</left_val>
-            <right_val>-0.4872741997241974</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 10 6 -1.</_>
-                <_>
-                  4 5 10 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1498104035854340</threshold>
-            <left_val>0.4256885051727295</left_val>
-            <right_val>-0.0406881310045719</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 9 3 -1.</_>
-                <_>
-                  3 5 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0249004401266575</threshold>
-            <left_val>-0.0469012595713139</left_val>
-            <right_val>0.2806226015090942</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 2 1 -1.</_>
-                <_>
-                  9 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.8607350587844849e-003</threshold>
-            <left_val>5.2375709637999535e-003</left_val>
-            <right_val>-0.9763677716255188</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 3 2 1 -1.</_>
-                <_>
-                  8 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.3002476710826159e-005</threshold>
-            <left_val>-0.1668099015951157</left_val>
-            <right_val>0.1061896979808807</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 6 4 -1.</_>
-                <_>
-                  9 2 3 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1778886020183563</threshold>
-            <left_val>-0.0167296305298805</left_val>
-            <right_val>0.1779063045978546</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 2 3 3 -1.</_>
-                <_>
-                  8 3 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0129577601328492</threshold>
-            <left_val>0.0327777788043022</left_val>
-            <right_val>-0.4429670870304108</right_val></_></_></trees>
-      <stage_threshold>-1.5084979534149170</stage_threshold>
-      <parent>5</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 7 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 4 4 6 -1.</_>
-                <_>
-                  5 6 4 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0671501830220222</threshold>
-            <left_val>0.3957724869251251</left_val>
-            <right_val>-0.3151094019412994</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 14 8 -1.</_>
-                <_>
-                  4 4 14 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0489628501236439</threshold>
-            <left_val>-0.2696126103401184</left_val>
-            <right_val>0.1686976999044418</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 1 4 -1.</_>
-                <_>
-                  9 0 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.7194418944418430e-003</threshold>
-            <left_val>-0.3519599139690399</left_val>
-            <right_val>0.2283660024404526</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 6 7 -1.</_>
-                <_>
-                  12 7 3 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1611121743917465e-003</threshold>
-            <left_val>0.2407678067684174</left_val>
-            <right_val>-0.2207496017217636</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 9 8 4 -1.</_>
-                <_>
-                  2 11 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2363017052412033</threshold>
-            <left_val>-0.0165349505841732</left_val>
-            <right_val>-791.9063110351562500</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 6 1 6 -1.</_>
-                <_>
-                  13 8 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0192054994404316</threshold>
-            <left_val>0.3679260015487671</left_val>
-            <right_val>-0.0511916503310204</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 6 1 6 -1.</_>
-                <_>
-                  4 8 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.8221171125769615e-003</threshold>
-            <left_val>-0.1451342999935150</left_val>
-            <right_val>0.3284528851509094</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 6 4 -1.</_>
-                <_>
-                  8 2 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0114400796592236</threshold>
-            <left_val>-0.3580412864685059</left_val>
-            <right_val>0.1191418990492821</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 6 1 -1.</_>
-                <_>
-                  9 0 3 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.8761039078235626e-003</threshold>
-            <left_val>-0.2145037949085236</left_val>
-            <right_val>0.1795787960290909</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 12 1 -1.</_>
-                <_>
-                  9 0 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.4572024643421173e-003</threshold>
-            <left_val>-0.0697467327117920</left_val>
-            <right_val>0.1636779010295868</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 7 14 8 -1.</_>
-                <_>
-                  2 9 14 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1268958002328873</threshold>
-            <left_val>0.2483236044645309</left_val>
-            <right_val>-0.1216669976711273</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 3 2 -1.</_>
-                <_>
-                  11 9 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.6295030042529106e-003</threshold>
-            <left_val>-0.0560571514070034</left_val>
-            <right_val>0.3574368059635162</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 2 3 -1.</_>
-                <_>
-                  1 0 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.5959236710332334e-005</threshold>
-            <left_val>0.1490119993686676</left_val>
-            <right_val>-0.1852703988552094</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 6 8 -1.</_>
-                <_>
-                  10 4 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1317930966615677</threshold>
-            <left_val>0.0314710587263107</left_val>
-            <right_val>-0.6502394080162048</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 3 2 -1.</_>
-                <_>
-                  6 0 3 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0135068297386169</threshold>
-            <left_val>0.0498555004596710</left_val>
-            <right_val>-0.5204489827156067</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 5 4 10 -1.</_>
-                <_>
-                  14 10 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1392281949520111</threshold>
-            <left_val>-0.4274164140224457</left_val>
-            <right_val>0.0221896991133690</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 4 10 -1.</_>
-                <_>
-                  0 10 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0602215304970741</threshold>
-            <left_val>0.0557326711714268</left_val>
-            <right_val>-0.4318253099918366</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 8 6 6 -1.</_>
-                <_>
-                  12 8 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1349826008081436</threshold>
-            <left_val>-0.7194260954856873</left_val>
-            <right_val>6.5442471532151103e-004</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 6 6 -1.</_>
-                <_>
-                  3 8 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.9722030051052570e-003</threshold>
-            <left_val>0.1110355034470558</left_val>
-            <right_val>-0.2065491974353790</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 6 6 -1.</_>
-                <_>
-                  10 3 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0218843296170235</threshold>
-            <left_val>-0.2502841055393219</left_val>
-            <right_val>0.0452274195849895</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 6 6 -1.</_>
-                <_>
-                  2 3 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0562942214310169</threshold>
-            <left_val>0.0373776294291019</left_val>
-            <right_val>-0.6217880249023438</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 4 -1.</_>
-                <_>
-                  9 0 9 2 2.</_>
-                <_>
-                  0 2 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0416125096380711</threshold>
-            <left_val>-0.5870987176895142</left_val>
-            <right_val>0.0327165089547634</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 10 14 2 -1.</_>
-                <_>
-                  2 11 14 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.3085748590528965e-003</threshold>
-            <left_val>-0.1344400942325592</left_val>
-            <right_val>0.1841892004013062</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 5 3 6 -1.</_>
-                <_>
-                  9 7 3 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0391575917601585</threshold>
-            <left_val>-0.0723762214183807</left_val>
-            <right_val>0.0374199710786343</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 4 16 1 -1.</_>
-                <_>
-                  5 4 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.2146301865577698e-003</threshold>
-            <left_val>-0.2051306068897247</left_val>
-            <right_val>0.1153298020362854</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 8 4 4 -1.</_>
-                <_>
-                  10 9 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.4585020039230585e-003</threshold>
-            <left_val>0.0500501617789268</left_val>
-            <right_val>-0.0578955002129078</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 8 4 4 -1.</_>
-                <_>
-                  4 9 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.0681189857423306e-003</threshold>
-            <left_val>-0.0944659411907196</left_val>
-            <right_val>0.2920725941658020</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 6 12 8 -1.</_>
-                <_>
-                  9 6 6 4 2.</_>
-                <_>
-                  3 10 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0549114495515823</threshold>
-            <left_val>-0.3530954122543335</left_val>
-            <right_val>0.0700343772768974</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 12 9 3 -1.</_>
-                <_>
-                  6 12 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0693727433681488</threshold>
-            <left_val>0.0222254004329443</left_val>
-            <right_val>-0.7192028760910034</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 4 6 4 -1.</_>
-                <_>
-                  13 6 2 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0795855373144150</threshold>
-            <left_val>-0.0380740091204643</left_val>
-            <right_val>0.3033491075038910</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 3 12 -1.</_>
-                <_>
-                  0 6 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0544063299894333</threshold>
-            <left_val>0.0448827184736729</left_val>
-            <right_val>-0.4495294094085693</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 10 9 -1.</_>
-                <_>
-                  4 0 5 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2690613865852356</threshold>
-            <left_val>-0.0360089801251888</left_val>
-            <right_val>0.5307660102844238</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 1 -1.</_>
-                <_>
-                  9 0 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.1156299412250519e-003</threshold>
-            <left_val>-0.1003653034567833</left_val>
-            <right_val>0.1804340034723282</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 9 8 5 -1.</_>
-                <_>
-                  6 9 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1438598036766052</threshold>
-            <left_val>-0.6201289892196655</left_val>
-            <right_val>0.0115139102563262</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 3 3 5 -1.</_>
-                <_>
-                  6 4 1 5 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0144033199176192</threshold>
-            <left_val>-0.0768772587180138</left_val>
-            <right_val>0.2608672082424164</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 4 -1.</_>
-                <_>
-                  8 1 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.9774607867002487e-003</threshold>
-            <left_val>0.0425334200263023</left_val>
-            <right_val>-0.4616906940937042</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 13 18 2 -1.</_>
-                <_>
-                  0 14 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0468562692403793</threshold>
-            <left_val>0.4875024855136871</left_val>
-            <right_val>-0.0433990210294724</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 8 6 2 -1.</_>
-                <_>
-                  6 9 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2139908075332642e-003</threshold>
-            <left_val>0.1103964000940323</left_val>
-            <right_val>-0.1807391047477722</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 6 2 -1.</_>
-                <_>
-                  4 1 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.7679318599402905e-003</threshold>
-            <left_val>-0.5230370759963989</left_val>
-            <right_val>0.0307772196829319</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 4 3 3 -1.</_>
-                <_>
-                  14 5 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-7.1862619370222092e-003</threshold>
-            <left_val>0.1832828968763351</left_val>
-            <right_val>-0.0569993406534195</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 2 2 -1.</_>
-                <_>
-                  1 8 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.6733449026942253e-004</threshold>
-            <left_val>0.1535539031028748</left_val>
-            <right_val>-0.1083194985985756</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 4 6 4 -1.</_>
-                <_>
-                  13 6 2 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0292031392455101</threshold>
-            <left_val>-0.0377766303718090</left_val>
-            <right_val>0.1093320026993752</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 12 1 -1.</_>
-                <_>
-                  5 0 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.8407091572880745e-003</threshold>
-            <left_val>-0.1092616990208626</left_val>
-            <right_val>0.1679567992687225</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 1 16 11 -1.</_>
-                <_>
-                  5 1 8 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.4450520873069763</threshold>
-            <left_val>0.0268258899450302</left_val>
-            <right_val>-0.7806378006935120</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 1 3 -1.</_>
-                <_>
-                  3 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.1639058403670788e-003</threshold>
-            <left_val>-0.4938404858112335</left_val>
-            <right_val>0.0311304796487093</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 3 10 8 -1.</_>
-                <_>
-                  9 3 5 4 2.</_>
-                <_>
-                  4 7 5 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0491834394633770</threshold>
-            <left_val>-0.3231860101222992</left_val>
-            <right_val>0.0469044297933578</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 8 2 2 -1.</_>
-                <_>
-                  5 8 1 1 2.</_>
-                <_>
-                  6 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6128649551537819e-005</threshold>
-            <left_val>-0.1063510999083519</left_val>
-            <right_val>0.1544602960348129</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 8 3 3 -1.</_>
-                <_>
-                  13 9 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0368313007056713</threshold>
-            <left_val>0.2820610105991364</left_val>
-            <right_val>-0.0126016000285745</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 5 16 6 -1.</_>
-                <_>
-                  1 7 16 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0718847513198853</threshold>
-            <left_val>0.2314046025276184</left_val>
-            <right_val>-0.0733308866620064</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 18 6 -1.</_>
-                <_>
-                  0 7 18 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0574985891580582</threshold>
-            <left_val>-0.0964356362819672</left_val>
-            <right_val>0.2050749957561493</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 1 3 -1.</_>
-                <_>
-                  0 8 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.9720349013805389e-003</threshold>
-            <left_val>0.0360010303556919</left_val>
-            <right_val>-0.5457249283790588</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 8 3 3 -1.</_>
-                <_>
-                  13 9 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.6467780116945505e-003</threshold>
-            <left_val>-0.0441318899393082</left_val>
-            <right_val>0.0756502225995064</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 6 3 1 -1.</_>
-                <_>
-                  9 7 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-8.8836792856454849e-003</threshold>
-            <left_val>-0.4610821902751923</left_val>
-            <right_val>0.0327687896788120</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 8 3 3 -1.</_>
-                <_>
-                  13 9 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0128562701866031</threshold>
-            <left_val>0.0721951574087143</left_val>
-            <right_val>-0.0297321807593107</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 8 3 3 -1.</_>
-                <_>
-                  5 9 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0120727699249983</threshold>
-            <left_val>-0.0505888797342777</left_val>
-            <right_val>0.2905586063861847</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 13 1 2 -1.</_>
-                <_>
-                  11 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.8108480435330421e-004</threshold>
-            <left_val>-0.0714614391326904</left_val>
-            <right_val>0.0798238515853882</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 13 16 2 -1.</_>
-                <_>
-                  1 13 8 1 2.</_>
-                <_>
-                  9 14 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0160763803869486</threshold>
-            <left_val>0.0476631112396717</left_val>
-            <right_val>-0.3275910019874573</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 12 2 1 -1.</_>
-                <_>
-                  16 12 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.5250606536865234e-003</threshold>
-            <left_val>-0.1898842006921768</left_val>
-            <right_val>7.0858187973499298e-003</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 1 2 -1.</_>
-                <_>
-                  2 12 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.2362798489630222e-003</threshold>
-            <left_val>-0.4283688962459564</left_val>
-            <right_val>0.0339706018567085</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 9 2 2 -1.</_>
-                <_>
-                  13 9 1 1 2.</_>
-                <_>
-                  12 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4684870368218981e-005</threshold>
-            <left_val>-0.0803086981177330</left_val>
-            <right_val>0.1108464002609253</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 9 2 2 -1.</_>
-                <_>
-                  4 9 1 1 2.</_>
-                <_>
-                  5 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1949270265176892e-003</threshold>
-            <left_val>0.2256557047367096</left_val>
-            <right_val>-0.0626343935728073</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 2 2 1 -1.</_>
-                <_>
-                  11 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.5406976975500584e-005</threshold>
-            <left_val>-0.1237920969724655</left_val>
-            <right_val>0.0894999876618385</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 9 -1.</_>
-                <_>
-                  7 0 4 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0155067397281528</threshold>
-            <left_val>0.3100227117538452</left_val>
-            <right_val>-0.0654744282364845</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 2 2 1 -1.</_>
-                <_>
-                  11 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1327929832041264e-003</threshold>
-            <left_val>0.0204462595283985</left_val>
-            <right_val>-0.4915933012962341</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 2 2 1 -1.</_>
-                <_>
-                  6 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8783698730403557e-005</threshold>
-            <left_val>-0.1722901016473770</left_val>
-            <right_val>0.1088512986898422</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 1 3 -1.</_>
-                <_>
-                  8 2 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.1788759194314480e-003</threshold>
-            <left_val>0.0195190999656916</left_val>
-            <right_val>-0.3139770925045013</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 9 8 6 -1.</_>
-                <_>
-                  8 9 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1713061034679413</threshold>
-            <left_val>0.0172466896474361</left_val>
-            <right_val>-0.7726063132286072</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 1 4 10 -1.</_>
-                <_>
-                  8 1 2 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0429867096245289</threshold>
-            <left_val>0.1577536016702652</left_val>
-            <right_val>-0.0482686497271061</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 3 1 -1.</_>
-                <_>
-                  10 2 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.2703949622809887e-003</threshold>
-            <left_val>-0.4624505937099457</left_val>
-            <right_val>0.0392020307481289</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 18 10 -1.</_>
-                <_>
-                  9 5 9 5 2.</_>
-                <_>
-                  0 10 9 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2032378017902374</threshold>
-            <left_val>0.0357716716825962</left_val>
-            <right_val>-0.3940019011497498</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 3 3 -1.</_>
-                <_>
-                  4 3 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0182179491966963</threshold>
-            <left_val>-0.0407346189022064</left_val>
-            <right_val>0.3741911053657532</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 4 1 2 -1.</_>
-                <_>
-                  17 5 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0606779687805101e-004</threshold>
-            <left_val>0.1012326031923294</left_val>
-            <right_val>-0.0911243632435799</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 10 1 -1.</_>
-                <_>
-                  5 6 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.8906659465283155e-003</threshold>
-            <left_val>-0.1520171016454697</left_val>
-            <right_val>0.0934790223836899</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 4 -1.</_>
-                <_>
-                  7 0 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0125372298061848</threshold>
-            <left_val>-0.0601580515503883</left_val>
-            <right_val>0.2558326125144959</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 5 6 5 -1.</_>
-                <_>
-                  5 5 2 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.9574513733386993e-003</threshold>
-            <left_val>0.1379802972078323</left_val>
-            <right_val>-0.1249634027481079</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 1 -1.</_>
-                <_>
-                  16 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.6789269652217627e-003</threshold>
-            <left_val>0.0427718199789524</left_val>
-            <right_val>-0.3063034117221832</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 1 2 -1.</_>
-                <_>
-                  2 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.7803261075168848e-003</threshold>
-            <left_val>0.0323704518377781</left_val>
-            <right_val>-0.4138380885124207</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 2 2 2 -1.</_>
-                <_>
-                  17 2 1 1 2.</_>
-                <_>
-                  16 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.8372930400073528e-005</threshold>
-            <left_val>-0.0645466670393944</left_val>
-            <right_val>0.0794665068387985</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 2 2 -1.</_>
-                <_>
-                  0 2 1 1 2.</_>
-                <_>
-                  1 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3996631070040166e-005</threshold>
-            <left_val>0.1355656981468201</left_val>
-            <right_val>-0.1101491004228592</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 2 2 2 -1.</_>
-                <_>
-                  17 2 1 1 2.</_>
-                <_>
-                  16 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.3484519564080983e-005</threshold>
-            <left_val>0.1285773962736130</left_val>
-            <right_val>-0.0937314331531525</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 3 4 4 -1.</_>
-                <_>
-                  7 3 2 2 2.</_>
-                <_>
-                  9 5 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0100723998621106</threshold>
-            <left_val>-0.3828028142452240</left_val>
-            <right_val>0.0345466099679470</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 6 8 2 -1.</_>
-                <_>
-                  5 7 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0103168003261089</threshold>
-            <left_val>0.1297149956226349</left_val>
-            <right_val>-0.1024452969431877</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 4 5 4 -1.</_>
-                <_>
-                  6 5 5 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0107137700542808</threshold>
-            <left_val>-0.0704529136419296</left_val>
-            <right_val>0.2358826994895935</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 12 4 -1.</_>
-                <_>
-                  8 0 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0262797605246305</threshold>
-            <left_val>-0.1242780014872551</left_val>
-            <right_val>0.0811929032206535</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 2 -1.</_>
-                <_>
-                  5 1 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.5222269147634506e-003</threshold>
-            <left_val>0.0614674314856529</left_val>
-            <right_val>-0.2642698884010315</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 12 18 3 -1.</_>
-                <_>
-                  0 13 18 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.4345488101243973e-003</threshold>
-            <left_val>-0.0884712487459183</left_val>
-            <right_val>0.1474142968654633</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 4 2 6 -1.</_>
-                <_>
-                  8 4 1 3 2.</_>
-                <_>
-                  9 7 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.8172550052404404e-003</threshold>
-            <left_val>-0.3130440115928650</left_val>
-            <right_val>0.0437002405524254</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 9 4 -1.</_>
-                <_>
-                  8 0 3 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0365137197077274</threshold>
-            <left_val>0.3251106142997742</left_val>
-            <right_val>-0.0333890803158283</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 12 15 3 -1.</_>
-                <_>
-                  1 13 15 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0463338792324066</threshold>
-            <left_val>0.5042893290519714</left_val>
-            <right_val>-0.0255471803247929</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 9 1 3 -1.</_>
-                <_>
-                  17 10 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5593919670209289e-004</threshold>
-            <left_val>-0.0568273402750492</left_val>
-            <right_val>0.0776609331369400</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 11 3 1 -1.</_>
-                <_>
-                  2 12 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.2058515399694443e-003</threshold>
-            <left_val>0.0321849994361401</left_val>
-            <right_val>-0.4203890860080719</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 6 1 -1.</_>
-                <_>
-                  12 7 3 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0442854613065720</threshold>
-            <left_val>-0.3896655142307282</left_val>
-            <right_val>0.0119123402982950</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 1 6 -1.</_>
-                <_>
-                  6 7 1 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0258340202271938</threshold>
-            <left_val>0.0417318902909756</left_val>
-            <right_val>-0.3318280875682831</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 4 6 -1.</_>
-                <_>
-                  8 7 2 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0309912301599979</threshold>
-            <left_val>0.0173530708998442</left_val>
-            <right_val>-0.6654608249664307</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 8 16 3 -1.</_>
-                <_>
-                  1 9 16 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0112233497202396</threshold>
-            <left_val>-0.0643179565668106</left_val>
-            <right_val>0.2175581008195877</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 7 2 2 -1.</_>
-                <_>
-                  9 8 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0795110138133168e-003</threshold>
-            <left_val>0.0604902096092701</left_val>
-            <right_val>-0.1258077025413513</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 10 4 -1.</_>
-                <_>
-                  5 0 10 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1591577976942062</threshold>
-            <left_val>0.0323631800711155</left_val>
-            <right_val>-0.4079827964305878</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 2 2 2 -1.</_>
-                <_>
-                  17 2 1 1 2.</_>
-                <_>
-                  16 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5649809686001390e-005</threshold>
-            <left_val>-0.0744273290038109</left_val>
-            <right_val>0.0895882174372673</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 2 2 -1.</_>
-                <_>
-                  0 2 1 1 2.</_>
-                <_>
-                  1 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3739310563541949e-005</threshold>
-            <left_val>-0.0930083170533180</left_val>
-            <right_val>0.1334387063980103</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 4 4 -1.</_>
-                <_>
-                  9 1 2 2 2.</_>
-                <_>
-                  7 3 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0146180903539062</threshold>
-            <left_val>0.0191540997475386</left_val>
-            <right_val>-0.6415231823921204</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 9 4 6 -1.</_>
-                <_>
-                  4 11 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0235322006046772</threshold>
-            <left_val>-0.0603582113981247</left_val>
-            <right_val>0.2178262025117874</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 12 9 2 -1.</_>
-                <_>
-                  5 13 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5804159920662642e-003</threshold>
-            <left_val>-0.1072172001004219</left_val>
-            <right_val>0.0938933715224266</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 10 2 -1.</_>
-                <_>
-                  2 1 5 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1098610013723373</threshold>
-            <left_val>0.0602713786065578</left_val>
-            <right_val>-0.2347172051668167</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 3 1 -1.</_>
-                <_>
-                  16 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.9525712430477142e-003</threshold>
-            <left_val>-0.5963038802146912</left_val>
-            <right_val>0.0226748306304216</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 1 3 -1.</_>
-                <_>
-                  0 10 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.7224500663578510e-003</threshold>
-            <left_val>-0.3436203002929688</left_val>
-            <right_val>0.0317178517580032</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 18 2 -1.</_>
-                <_>
-                  0 9 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0325947701931000</threshold>
-            <left_val>0.2031549960374832</left_val>
-            <right_val>-0.0711073279380798</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 1 4 -1.</_>
-                <_>
-                  0 6 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1989789567887783e-003</threshold>
-            <left_val>0.0400660485029221</left_val>
-            <right_val>-0.3138445019721985</right_val></_></_></trees>
-      <stage_threshold>-1.4449690580368042</stage_threshold>
-      <parent>6</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 8 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 8 3 -1.</_>
-                <_>
-                  10 2 4 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0778383314609528</threshold>
-            <left_val>-0.2895457148551941</left_val>
-            <right_val>0.3359082937240601</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 9 7 -1.</_>
-                <_>
-                  11 7 3 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0189563706517220</threshold>
-            <left_val>0.1371102929115295</left_val>
-            <right_val>-0.1191558018326759</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 12 4 -1.</_>
-                <_>
-                  3 8 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0290122292935848</threshold>
-            <left_val>0.2680377066135407</left_val>
-            <right_val>-0.2818816900253296</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 2 1 -1.</_>
-                <_>
-                  10 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.8552741110324860e-004</threshold>
-            <left_val>-0.0815313234925270</left_val>
-            <right_val>0.1528104990720749</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 1 2 -1.</_>
-                <_>
-                  8 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>1.0328469943488017e-004</threshold>
-            <left_val>-0.2466157972812653</left_val>
-            <right_val>0.1760915964841843</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 7 2 -1.</_>
-                <_>
-                  6 1 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.5671691186726093e-003</threshold>
-            <left_val>-0.4800229966640472</left_val>
-            <right_val>0.0658785030245781</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 10 15 4 -1.</_>
-                <_>
-                  1 12 15 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0235463008284569</threshold>
-            <left_val>-0.1611980050802231</left_val>
-            <right_val>0.1770496964454651</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 8 -1.</_>
-                <_>
-                  9 0 9 4 2.</_>
-                <_>
-                  0 4 9 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1016383990645409</threshold>
-            <left_val>0.0247533395886421</left_val>
-            <right_val>-0.5653517246246338</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 2 12 -1.</_>
-                <_>
-                  8 9 2 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0117649501189590</threshold>
-            <left_val>0.0577937401831150</left_val>
-            <right_val>-0.3604769110679627</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 8 2 2 -1.</_>
-                <_>
-                  12 9 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9407900292426348e-003</threshold>
-            <left_val>-0.0568644516170025</left_val>
-            <right_val>0.3267062902450562</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 3 3 -1.</_>
-                <_>
-                  8 1 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0120360003784299</threshold>
-            <left_val>0.0500290505588055</left_val>
-            <right_val>-0.4304682016372681</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 1 2 1 -1.</_>
-                <_>
-                  15 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.2945342506282032e-005</threshold>
-            <left_val>0.1441446989774704</left_val>
-            <right_val>-0.1231764033436775</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 4 10 -1.</_>
-                <_>
-                  0 6 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1006926968693733</threshold>
-            <left_val>-0.4235703051090241</left_val>
-            <right_val>0.0498026795685291</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 10 2 -1.</_>
-                <_>
-                  4 1 10 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0145817296579480</threshold>
-            <left_val>0.0301772207021713</left_val>
-            <right_val>-0.6640638709068298</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 1 2 -1.</_>
-                <_>
-                  3 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.5432410337962210e-005</threshold>
-            <left_val>0.1250696033239365</left_val>
-            <right_val>-0.1638363003730774</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 3 2 -1.</_>
-                <_>
-                  16 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.9888555705547333e-003</threshold>
-            <left_val>-0.3976281881332398</left_val>
-            <right_val>0.0317412391304970</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 3 4 -1.</_>
-                <_>
-                  5 3 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0145155703648925</threshold>
-            <left_val>-0.0675602331757545</left_val>
-            <right_val>0.3204439878463745</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 6 1 -1.</_>
-                <_>
-                  10 0 3 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.4144429266452789e-003</threshold>
-            <left_val>-0.1101045012474060</left_val>
-            <right_val>0.1062017008662224</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 3 3 -1.</_>
-                <_>
-                  4 4 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0190477203577757</threshold>
-            <left_val>0.4359183013439179</left_val>
-            <right_val>-0.0567054599523544</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 3 2 -1.</_>
-                <_>
-                  16 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0119225401431322</threshold>
-            <left_val>0.0226012095808983</left_val>
-            <right_val>-0.3463886082172394</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 9 2 -1.</_>
-                <_>
-                  9 0 9 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0316638201475143</threshold>
-            <left_val>-0.0697475075721741</left_val>
-            <right_val>0.3346034884452820</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 1 4 2 -1.</_>
-                <_>
-                  8 2 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.0487637743353844e-003</threshold>
-            <left_val>-0.3777567148208618</left_val>
-            <right_val>0.0412449985742569</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 2 3 -1.</_>
-                <_>
-                  2 1 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.5836304351687431e-003</threshold>
-            <left_val>0.0405867286026478</left_val>
-            <right_val>-0.4659684896469116</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 18 10 -1.</_>
-                <_>
-                  9 5 9 5 2.</_>
-                <_>
-                  0 10 9 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2546002864837647</threshold>
-            <left_val>0.0292705502361059</left_val>
-            <right_val>-0.6189153790473938</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 2 6 -1.</_>
-                <_>
-                  0 3 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.7734090108424425e-003</threshold>
-            <left_val>0.1460099071264267</left_val>
-            <right_val>-0.1248235031962395</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 2 2 3 -1.</_>
-                <_>
-                  15 3 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.1764237731695175e-003</threshold>
-            <left_val>0.2481728941202164</left_val>
-            <right_val>-0.0557485483586788</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 6 1 -1.</_>
-                <_>
-                  9 0 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.4874111451208591e-003</threshold>
-            <left_val>-0.1071233004331589</left_val>
-            <right_val>0.1664687991142273</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 3 8 -1.</_>
-                <_>
-                  8 2 3 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0503873117268085</threshold>
-            <left_val>-0.0504896901547909</left_val>
-            <right_val>0.1267845034599304</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 8 3 -1.</_>
-                <_>
-                  10 2 4 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0775756686925888</threshold>
-            <left_val>0.1210061982274056</left_val>
-            <right_val>-0.1771831065416336</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 2 2 3 -1.</_>
-                <_>
-                  15 3 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0104536600410938</threshold>
-            <left_val>-0.0304590705782175</left_val>
-            <right_val>0.2466717064380646</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 8 8 2 -1.</_>
-                <_>
-                  5 9 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0119400899857283</threshold>
-            <left_val>0.1431301981210709</left_val>
-            <right_val>-0.1400607973337174</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 3 2 -1.</_>
-                <_>
-                  11 9 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1164349745959044e-003</threshold>
-            <left_val>0.0545042082667351</left_val>
-            <right_val>-0.0924128219485283</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 8 3 2 -1.</_>
-                <_>
-                  4 9 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8259901814162731e-003</threshold>
-            <left_val>-0.0795849785208702</left_val>
-            <right_val>0.4222005903720856</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 2 3 2 -1.</_>
-                <_>
-                  10 3 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.0155059695243835e-003</threshold>
-            <left_val>0.0197146795690060</left_val>
-            <right_val>-0.4795632958412170</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 8 2 -1.</_>
-                <_>
-                  2 1 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.2104120627045631e-003</threshold>
-            <left_val>-0.4671449959278107</left_val>
-            <right_val>0.0325505807995796</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 2 2 3 -1.</_>
-                <_>
-                  15 3 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0316700302064419</threshold>
-            <left_val>0.3755325078964233</left_val>
-            <right_val>-0.0109495399519801</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 2 3 2 -1.</_>
-                <_>
-                  3 3 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.3463337719440460e-003</threshold>
-            <left_val>-0.0652034804224968</left_val>
-            <right_val>0.2462629973888397</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 8 1 4 -1.</_>
-                <_>
-                  17 9 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.6191360559314489e-003</threshold>
-            <left_val>-0.1709388941526413</left_val>
-            <right_val>0.0311141796410084</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 1 4 -1.</_>
-                <_>
-                  0 9 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.3581780046224594e-003</threshold>
-            <left_val>0.0366473011672497</left_val>
-            <right_val>-0.4237492978572846</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 2 -1.</_>
-                <_>
-                  9 0 6 1 2.</_>
-                <_>
-                  3 1 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.1306470781564713e-003</threshold>
-            <left_val>0.0361863411962986</left_val>
-            <right_val>-0.3581345081329346</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 8 3 -1.</_>
-                <_>
-                  9 1 4 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.2027395069599152</threshold>
-            <left_val>-0.0464575290679932</left_val>
-            <right_val>0.3237068057060242</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 6 -1.</_>
-                <_>
-                  8 0 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.8010999821126461e-003</threshold>
-            <left_val>0.1703307926654816</left_val>
-            <right_val>-0.0903682932257652</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 3 2 -1.</_>
-                <_>
-                  8 0 3 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0198947098106146</threshold>
-            <left_val>0.0316714681684971</left_val>
-            <right_val>-0.6259496808052063</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 8 6 2 -1.</_>
-                <_>
-                  11 8 3 1 2.</_>
-                <_>
-                  8 9 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.2822818765416741e-004</threshold>
-            <left_val>-0.0703171566128731</left_val>
-            <right_val>0.0968886613845825</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 18 12 -1.</_>
-                <_>
-                  0 9 18 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3695923984050751</threshold>
-            <left_val>0.0186286699026823</left_val>
-            <right_val>-0.7744178175926209</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 8 3 6 -1.</_>
-                <_>
-                  14 10 1 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0101259099319577</threshold>
-            <left_val>-0.0668892487883568</left_val>
-            <right_val>0.1524703949689865</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 8 14 4 -1.</_>
-                <_>
-                  2 10 14 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1245594993233681</threshold>
-            <left_val>0.2896308004856110</left_val>
-            <right_val>-0.0485628917813301</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 9 3 1 -1.</_>
-                <_>
-                  14 10 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.5091960560530424e-003</threshold>
-            <left_val>-0.0350436493754387</left_val>
-            <right_val>0.1112501993775368</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 10 15 -1.</_>
-                <_>
-                  9 0 5 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2847513854503632</threshold>
-            <left_val>0.3567419946193695</left_val>
-            <right_val>-0.0428154803812504</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 2 1 -1.</_>
-                <_>
-                  9 0 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.6454169526696205e-003</threshold>
-            <left_val>0.1969088017940521</left_val>
-            <right_val>-0.0439714081585407</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 4 1 -1.</_>
-                <_>
-                  7 0 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5759950038045645e-003</threshold>
-            <left_val>-0.1558419018983841</left_val>
-            <right_val>0.1092967018485069</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 2 3 2 -1.</_>
-                <_>
-                  10 3 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.7018110712524503e-005</threshold>
-            <left_val>-0.0937224030494690</left_val>
-            <right_val>0.0794489830732346</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 2 3 2 -1.</_>
-                <_>
-                  5 3 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5426278375089169e-003</threshold>
-            <left_val>0.0382768400013447</left_val>
-            <right_val>-0.4256854951381683</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 7 1 2 -1.</_>
-                <_>
-                  10 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.8855221141129732e-004</threshold>
-            <left_val>0.0603053607046604</left_val>
-            <right_val>-0.1461576074361801</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 6 6 4 -1.</_>
-                <_>
-                  6 6 3 2 2.</_>
-                <_>
-                  9 8 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0134366303682327</threshold>
-            <left_val>-0.2394652962684631</left_val>
-            <right_val>0.0633801072835922</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 7 4 3 -1.</_>
-                <_>
-                  11 8 2 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.6623498201370239e-003</threshold>
-            <left_val>-0.0411083400249481</left_val>
-            <right_val>0.0386099815368652</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 3 4 -1.</_>
-                <_>
-                  7 8 3 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0196607392281294</threshold>
-            <left_val>-0.0376873910427094</left_val>
-            <right_val>0.3959226906299591</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 9 4 1 -1.</_>
-                <_>
-                  11 9 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-8.2754753530025482e-003</threshold>
-            <left_val>0.1025618016719818</left_val>
-            <right_val>-0.0427510403096676</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 3 3 -1.</_>
-                <_>
-                  6 8 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0317808799445629</threshold>
-            <left_val>0.3626415133476257</left_val>
-            <right_val>-0.0406033694744110</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 13 6 2 -1.</_>
-                <_>
-                  13 13 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0216846503317356</threshold>
-            <left_val>0.0229385606944561</left_val>
-            <right_val>-0.3512454926967621</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 3 3 -1.</_>
-                <_>
-                  4 2 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0154039999470115</threshold>
-            <left_val>0.2934393882751465</left_val>
-            <right_val>-0.0483902990818024</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 14 2 -1.</_>
-                <_>
-                  9 1 7 1 2.</_>
-                <_>
-                  2 2 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.1902230158448219e-003</threshold>
-            <left_val>-0.3277094960212708</left_val>
-            <right_val>0.0413685590028763</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 3 1 -1.</_>
-                <_>
-                  10 3 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-7.9587763175368309e-003</threshold>
-            <left_val>-0.5849394202232361</left_val>
-            <right_val>0.0197221394628286</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 2 8 -1.</_>
-                <_>
-                  7 5 2 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0223498903214931</threshold>
-            <left_val>6.3248360529541969e-003</left_val>
-            <right_val>-0.0670235827565193</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 7 1 4 -1.</_>
-                <_>
-                  5 8 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.8036609981209040e-003</threshold>
-            <left_val>-0.0722102373838425</left_val>
-            <right_val>0.2062937021255493</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 13 6 2 -1.</_>
-                <_>
-                  13 13 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0204626396298409</threshold>
-            <left_val>-0.3445949852466583</left_val>
-            <right_val>0.0262401904910803</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 9 1 3 -1.</_>
-                <_>
-                  4 10 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.1937501565553248e-005</threshold>
-            <left_val>-0.1117258965969086</left_val>
-            <right_val>0.1140339002013207</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 13 6 2 -1.</_>
-                <_>
-                  13 13 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.0170810166746378e-003</threshold>
-            <left_val>0.0586952790617943</left_val>
-            <right_val>-0.0434083491563797</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 11 1 2 -1.</_>
-                <_>
-                  4 11 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>1.6941629583016038e-003</threshold>
-            <left_val>0.0660928636789322</left_val>
-            <right_val>-0.2047823965549469</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 2 8 -1.</_>
-                <_>
-                  7 5 2 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1120911017060280</threshold>
-            <left_val>-3.9467259193770587e-004</left_val>
-            <right_val>-0.5106043815612793</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 8 2 -1.</_>
-                <_>
-                  11 5 4 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0729039311408997</threshold>
-            <left_val>-0.0399064607918262</left_val>
-            <right_val>0.3378052115440369</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 6 4 2 -1.</_>
-                <_>
-                  7 7 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.0249240808188915e-003</threshold>
-            <left_val>0.1124901026487351</left_val>
-            <right_val>-0.1489392966032028</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 6 3 -1.</_>
-                <_>
-                  8 8 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0179907791316509</threshold>
-            <left_val>-0.2489504963159561</left_val>
-            <right_val>0.0522084012627602</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 8 -1.</_>
-                <_>
-                  7 0 4 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0281639993190765</threshold>
-            <left_val>0.3462426960468292</left_val>
-            <right_val>-0.0468134209513664</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 8 -1.</_>
-                <_>
-                  6 0 6 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1455519050359726</threshold>
-            <left_val>-0.1372732967138290</left_val>
-            <right_val>0.0992739796638489</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 9 -1.</_>
-                <_>
-                  14 0 2 9 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1902603954076767</threshold>
-            <left_val>0.0178888794034719</left_val>
-            <right_val>-0.7103316783905029</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 9 4 -1.</_>
-                <_>
-                  4 0 9 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1708780974149704</threshold>
-            <left_val>0.0214544609189034</left_val>
-            <right_val>-0.5676689147949219</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 13 13 2 -1.</_>
-                <_>
-                  3 14 13 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0493922904133797</threshold>
-            <left_val>0.4660165011882782</left_val>
-            <right_val>-0.0284054595977068</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 13 16 2 -1.</_>
-                <_>
-                  1 14 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.9778267964720726e-003</threshold>
-            <left_val>-0.1049709022045136</left_val>
-            <right_val>0.1207138001918793</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 9 6 6 -1.</_>
-                <_>
-                  13 11 2 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1800612956285477</threshold>
-            <left_val>0.3830963969230652</left_val>
-            <right_val>-0.0141020696610212</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 9 6 6 -1.</_>
-                <_>
-                  3 11 2 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3417791128158569e-003</threshold>
-            <left_val>-0.1053301990032196</left_val>
-            <right_val>0.1295598000288010</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 13 6 2 -1.</_>
-                <_>
-                  13 13 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0289579704403877</threshold>
-            <left_val>-0.3280887007713318</left_val>
-            <right_val>8.5954880341887474e-003</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 13 6 2 -1.</_>
-                <_>
-                  3 13 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0129891699180007</threshold>
-            <left_val>0.0406576991081238</left_val>
-            <right_val>-0.3439970016479492</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 3 5 2 -1.</_>
-                <_>
-                  11 4 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.3189179897308350e-003</threshold>
-            <left_val>0.0200005602091551</left_val>
-            <right_val>-0.3093312978744507</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 2 2 -1.</_>
-                <_>
-                  7 0 1 1 2.</_>
-                <_>
-                  8 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2429470088100061e-005</threshold>
-            <left_val>0.1268631070852280</left_val>
-            <right_val>-0.0951527133584023</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 2 2 -1.</_>
-                <_>
-                  10 0 1 1 2.</_>
-                <_>
-                  9 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.6926601246232167e-005</threshold>
-            <left_val>-0.0697774663567543</left_val>
-            <right_val>0.1006100997328758</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 2 1 3 -1.</_>
-                <_>
-                  6 3 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.6324290819466114e-003</threshold>
-            <left_val>-0.3738464117050171</left_val>
-            <right_val>0.0329254008829594</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 3 8 -1.</_>
-                <_>
-                  14 0 1 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8024910241365433e-003</threshold>
-            <left_val>0.0833972916007042</left_val>
-            <right_val>-0.0764525309205055</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 11 16 4 -1.</_>
-                <_>
-                  1 11 8 2 2.</_>
-                <_>
-                  9 13 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0651966035366058</threshold>
-            <left_val>0.0317757390439510</left_val>
-            <right_val>-0.3680531978607178</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 3 8 -1.</_>
-                <_>
-                  14 0 1 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0174991004168987</threshold>
-            <left_val>-0.2574467062950134</left_val>
-            <right_val>0.0206988304853439</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 3 3 -1.</_>
-                <_>
-                  4 1 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.7240803986787796e-003</threshold>
-            <left_val>-0.0517450198531151</left_val>
-            <right_val>0.2264827042818070</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 2 3 13 -1.</_>
-                <_>
-                  13 2 1 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4927619379013777e-003</threshold>
-            <left_val>0.0974271073937416</left_val>
-            <right_val>-0.0842309221625328</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 3 15 -1.</_>
-                <_>
-                  4 0 1 15 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0446004606783390</threshold>
-            <left_val>-0.7686716914176941</left_val>
-            <right_val>0.0147034004330635</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 1 1 14 -1.</_>
-                <_>
-                  17 8 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0325057990849018</threshold>
-            <left_val>0.0300058592110872</left_val>
-            <right_val>-0.4916220009326935</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 2 2 -1.</_>
-                <_>
-                  0 0 1 1 2.</_>
-                <_>
-                  1 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5649809686001390e-005</threshold>
-            <left_val>0.1131459027528763</left_val>
-            <right_val>-0.0940568000078201</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 2 -1.</_>
-                <_>
-                  17 0 1 1 2.</_>
-                <_>
-                  16 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3604110538144596e-005</threshold>
-            <left_val>0.0883647277951241</left_val>
-            <right_val>-0.0680588483810425</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 2 2 -1.</_>
-                <_>
-                  0 0 1 1 2.</_>
-                <_>
-                  1 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6216499463771470e-005</threshold>
-            <left_val>-0.0913942903280258</left_val>
-            <right_val>0.1227736994624138</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 1 5 2 -1.</_>
-                <_>
-                  10 2 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9017529450356960e-003</threshold>
-            <left_val>-0.1515343040227890</left_val>
-            <right_val>0.0306931808590889</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 5 2 -1.</_>
-                <_>
-                  3 2 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.8409377709031105e-003</threshold>
-            <left_val>0.0285490602254868</left_val>
-            <right_val>-0.3703070878982544</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 18 10 -1.</_>
-                <_>
-                  9 5 9 5 2.</_>
-                <_>
-                  0 10 9 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1291435062885284</threshold>
-            <left_val>0.0526567809283733</left_val>
-            <right_val>-0.2027616053819656</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 5 6 -1.</_>
-                <_>
-                  6 5 5 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1138025000691414</threshold>
-            <left_val>0.2225105017423630</left_val>
-            <right_val>-0.0516252294182777</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 4 3 6 -1.</_>
-                <_>
-                  12 6 1 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.2800639793276787e-003</threshold>
-            <left_val>-0.0659309998154640</left_val>
-            <right_val>0.0602529682219028</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 6 1 8 -1.</_>
-                <_>
-                  8 6 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0530367009341717</threshold>
-            <left_val>-0.4665248095989227</left_val>
-            <right_val>0.0276027899235487</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 7 16 6 -1.</_>
-                <_>
-                  1 9 16 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1186264008283615</threshold>
-            <left_val>-0.0335345789790154</left_val>
-            <right_val>0.3798682987689972</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 3 6 -1.</_>
-                <_>
-                  5 6 1 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.0761719681322575e-003</threshold>
-            <left_val>-0.1226020976901054</left_val>
-            <right_val>0.1153718009591103</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 8 2 2 -1.</_>
-                <_>
-                  16 8 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-1.7530350305605680e-004</threshold>
-            <left_val>0.0850380733609200</left_val>
-            <right_val>-0.0923559591174126</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 8 16 4 -1.</_>
-                <_>
-                  1 8 8 2 2.</_>
-                <_>
-                  9 10 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0667972564697266</threshold>
-            <left_val>0.0270407292991877</left_val>
-            <right_val>-0.4598272144794464</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 11 17 4 -1.</_>
-                <_>
-                  1 12 17 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0233794599771500</threshold>
-            <left_val>-0.0620422512292862</left_val>
-            <right_val>0.1758442968130112</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 13 6 2 -1.</_>
-                <_>
-                  0 13 3 1 2.</_>
-                <_>
-                  3 14 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0949910210911185e-004</threshold>
-            <left_val>-0.1238159984350205</left_val>
-            <right_val>0.0968135967850685</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 6 1 4 -1.</_>
-                <_>
-                  12 6 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0338632389903069</threshold>
-            <left_val>0.0139471795409918</left_val>
-            <right_val>-0.1836456954479218</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 3 8 -1.</_>
-                <_>
-                  3 0 1 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0349671207368374</threshold>
-            <left_val>-0.8080993294715881</left_val>
-            <right_val>0.0147994095459580</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 18 6 -1.</_>
-                <_>
-                  6 4 6 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.4552179872989655</threshold>
-            <left_val>0.0136053897440434</left_val>
-            <right_val>-0.6047881841659546</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 6 4 1 -1.</_>
-                <_>
-                  6 6 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0160876307636499</threshold>
-            <left_val>0.0580550096929073</left_val>
-            <right_val>-0.1982652992010117</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 6 10 -1.</_>
-                <_>
-                  10 0 2 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1723546981811523</threshold>
-            <left_val>7.4058459140360355e-003</left_val>
-            <right_val>-0.5189927220344544</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 9 2 2 -1.</_>
-                <_>
-                  6 9 1 1 2.</_>
-                <_>
-                  7 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5957270516082644e-003</threshold>
-            <left_val>-0.0428939200937748</left_val>
-            <right_val>0.2644946873188019</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 9 1 4 -1.</_>
-                <_>
-                  17 10 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.6875099912285805e-003</threshold>
-            <left_val>-0.2731862962245941</left_val>
-            <right_val>0.0131092797964811</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 8 2 2 -1.</_>
-                <_>
-                  5 8 1 1 2.</_>
-                <_>
-                  6 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5951599925756454e-003</threshold>
-            <left_val>0.2096793055534363</left_val>
-            <right_val>-0.0498337894678116</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 9 1 4 -1.</_>
-                <_>
-                  17 10 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0103497896343470</threshold>
-            <left_val>7.2593181394040585e-003</left_val>
-            <right_val>-0.4416640996932983</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 1 3 -1.</_>
-                <_>
-                  2 3 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.9909151643514633e-003</threshold>
-            <left_val>0.0249945204705000</left_val>
-            <right_val>-0.4013820886611939</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 1 3 2 -1.</_>
-                <_>
-                  16 2 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.7854268923401833e-003</threshold>
-            <left_val>0.0235026106238365</left_val>
-            <right_val>-0.0990978032350540</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 1 4 -1.</_>
-                <_>
-                  0 10 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.3787118047475815e-003</threshold>
-            <left_val>-0.3618378043174744</left_val>
-            <right_val>0.0264573395252228</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 3 3 -1.</_>
-                <_>
-                  12 8 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1168339774012566e-003</threshold>
-            <left_val>-0.0457625910639763</left_val>
-            <right_val>0.1117715016007423</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 2 -1.</_>
-                <_>
-                  9 0 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0118435099720955</threshold>
-            <left_val>0.2743585109710693</left_val>
-            <right_val>-0.0350703783333302</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 2 2 -1.</_>
-                <_>
-                  9 0 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5275570331141353e-004</threshold>
-            <left_val>0.0845544487237930</left_val>
-            <right_val>-0.0753161907196045</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 5 15 4 -1.</_>
-                <_>
-                  1 7 15 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0862143188714981</threshold>
-            <left_val>0.1382022053003311</left_val>
-            <right_val>-0.0711062476038933</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 4 8 -1.</_>
-                <_>
-                  9 6 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0363043397665024</threshold>
-            <left_val>-0.0381477884948254</left_val>
-            <right_val>0.1162723004817963</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 2 2 -1.</_>
-                <_>
-                  8 0 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4807139523327351e-003</threshold>
-            <left_val>-0.1041129976511002</left_val>
-            <right_val>0.1122824996709824</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 3 10 2 -1.</_>
-                <_>
-                  9 3 5 1 2.</_>
-                <_>
-                  4 4 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.3545570485293865e-003</threshold>
-            <left_val>0.0333745889365673</left_val>
-            <right_val>-0.3583162128925324</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 6 11 -1.</_>
-                <_>
-                  6 0 2 11 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0344681590795517</threshold>
-            <left_val>-0.0549360811710358</left_val>
-            <right_val>0.2039003074169159</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 11 12 4 -1.</_>
-                <_>
-                  3 12 12 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0592398792505264</threshold>
-            <left_val>0.4322808086872101</left_val>
-            <right_val>-0.0247077196836472</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 7 12 6 -1.</_>
-                <_>
-                  5 9 4 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2427041977643967</threshold>
-            <left_val>0.0220374502241611</left_val>
-            <right_val>-0.5419340133666992</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 1 -1.</_>
-                <_>
-                  15 1 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0122847901657224</threshold>
-            <left_val>-0.3738442957401276</left_val>
-            <right_val>9.2992689460515976e-003</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 1 4 -1.</_>
-                <_>
-                  3 1 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0116195902228355</threshold>
-            <left_val>-0.5875784754753113</left_val>
-            <right_val>0.0175772104412317</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 3 3 -1.</_>
-                <_>
-                  12 8 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0212285108864307</threshold>
-            <left_val>5.6798839941620827e-003</left_val>
-            <right_val>-0.3144912123680115</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 7 3 3 -1.</_>
-                <_>
-                  3 8 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5732479514554143e-003</threshold>
-            <left_val>-0.0799057930707932</left_val>
-            <right_val>0.1397677958011627</right_val></_></_>
-        <_>
-          <!-- tree 135 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 12 15 -1.</_>
-                <_>
-                  5 5 12 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.6112009286880493</threshold>
-            <left_val>0.0133211901411414</left_val>
-            <right_val>-0.5509874224662781</right_val></_></_>
-        <_>
-          <!-- tree 136 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 9 2 2 -1.</_>
-                <_>
-                  6 9 1 1 2.</_>
-                <_>
-                  7 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.0905339624732733e-004</threshold>
-            <left_val>0.1030462011694908</left_val>
-            <right_val>-0.0948901474475861</right_val></_></_>
-        <_>
-          <!-- tree 137 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 3 2 2 -1.</_>
-                <_>
-                  13 4 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.5772361014969647e-005</threshold>
-            <left_val>-0.0856239274144173</left_val>
-            <right_val>0.0874491631984711</right_val></_></_>
-        <_>
-          <!-- tree 138 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 3 15 8 -1.</_>
-                <_>
-                  1 5 15 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0481263995170593</threshold>
-            <left_val>0.2119800001382828</left_val>
-            <right_val>-0.0476449094712734</right_val></_></_>
-        <_>
-          <!-- tree 139 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 6 2 3 -1.</_>
-                <_>
-                  9 7 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.6747817695140839e-003</threshold>
-            <left_val>-0.4238494038581848</left_val>
-            <right_val>0.0213676095008850</right_val></_></_>
-        <_>
-          <!-- tree 140 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 5 4 3 -1.</_>
-                <_>
-                  5 6 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.1669818609952927e-003</threshold>
-            <left_val>-0.0525886192917824</left_val>
-            <right_val>0.2005645930767059</right_val></_></_></trees>
-      <stage_threshold>-1.4003620147705078</stage_threshold>
-      <parent>7</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 9 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 2 4 4 -1.</_>
-                <_>
-                  7 2 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.5009383037686348e-003</threshold>
-            <left_val>-0.4277128875255585</left_val>
-            <right_val>0.2850086092948914</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 4 2 -1.</_>
-                <_>
-                  8 8 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.6675720475614071e-003</threshold>
-            <left_val>0.1830562055110931</left_val>
-            <right_val>-0.4390658140182495</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 3 8 2 -1.</_>
-                <_>
-                  4 3 8 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0154511099681258</threshold>
-            <left_val>-0.2517394125461578</left_val>
-            <right_val>0.1886658966541290</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 3 16 10 -1.</_>
-                <_>
-                  2 3 8 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3004620969295502</threshold>
-            <left_val>-0.0540388301014900</left_val>
-            <right_val>0.4862416088581085</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 2 12 8 -1.</_>
-                <_>
-                  2 4 12 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3677250146865845</threshold>
-            <left_val>0.0251029599457979</left_val>
-            <right_val>-958.7188110351562500</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 2 4 2 -1.</_>
-                <_>
-                  14 2 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.0474338456988335e-003</threshold>
-            <left_val>0.2133570015430450</left_val>
-            <right_val>-0.0978919863700867</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 2 9 -1.</_>
-                <_>
-                  0 7 2 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0533141195774078</threshold>
-            <left_val>-0.6161444187164307</left_val>
-            <right_val>0.0559876188635826</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 3 10 8 -1.</_>
-                <_>
-                  4 7 10 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2791661024093628</threshold>
-            <left_val>0.4078379869461060</left_val>
-            <right_val>-0.1185386031866074</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 4 3 -1.</_>
-                <_>
-                  2 2 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.6125730257481337e-003</threshold>
-            <left_val>0.2325060069561005</left_val>
-            <right_val>-0.1566430926322937</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 1 2 4 -1.</_>
-                <_>
-                  8 1 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6726289652287960e-003</threshold>
-            <left_val>0.1757100969552994</left_val>
-            <right_val>-0.1549381017684937</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 1 4 -1.</_>
-                <_>
-                  6 1 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0118291797116399</threshold>
-            <left_val>-0.6674782037734985</left_val>
-            <right_val>0.0454935915768147</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 1 -1.</_>
-                <_>
-                  6 0 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.4169160537421703e-003</threshold>
-            <left_val>-0.2293940931558609</left_val>
-            <right_val>0.1054278984665871</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 8 14 4 -1.</_>
-                <_>
-                  2 10 14 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1035784035921097</threshold>
-            <left_val>0.3429427146911621</left_val>
-            <right_val>-0.0699092075228691</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 10 16 2 -1.</_>
-                <_>
-                  1 11 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4325949382036924e-003</threshold>
-            <left_val>-0.1846843063831329</left_val>
-            <right_val>0.1679622977972031</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 9 4 2 -1.</_>
-                <_>
-                  2 9 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0220014695078135</threshold>
-            <left_val>-0.4447999894618988</left_val>
-            <right_val>0.0476888418197632</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 8 2 -1.</_>
-                <_>
-                  11 7 4 1 2.</_>
-                <_>
-                  7 8 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4049700479954481e-003</threshold>
-            <left_val>-0.0612011514604092</left_val>
-            <right_val>0.1349342018365860</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 10 -1.</_>
-                <_>
-                  0 0 9 5 2.</_>
-                <_>
-                  9 5 9 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1637541949748993</threshold>
-            <left_val>-0.4972603917121887</left_val>
-            <right_val>0.0431142188608646</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 0 5 10 -1.</_>
-                <_>
-                  11 0 5 5 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0426831394433975</threshold>
-            <left_val>0.1905709058046341</left_val>
-            <right_val>-0.0452457703649998</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 6 6 2 -1.</_>
-                <_>
-                  6 7 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.8941352181136608e-003</threshold>
-            <left_val>0.1255677938461304</left_val>
-            <right_val>-0.1550654023885727</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 3 4 6 -1.</_>
-                <_>
-                  7 6 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0168734900653362</threshold>
-            <left_val>-0.0661193132400513</left_val>
-            <right_val>0.3474495112895966</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 4 14 -1.</_>
-                <_>
-                  0 8 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0430995784699917</threshold>
-            <left_val>0.0575836002826691</left_val>
-            <right_val>-0.3395290076732636</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 11 2 1 -1.</_>
-                <_>
-                  12 11 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0194772295653820</threshold>
-            <left_val>-0.8039277791976929</left_val>
-            <right_val>2.4795620702207088e-003</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 11 1 2 -1.</_>
-                <_>
-                  6 11 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.6851670049363747e-005</threshold>
-            <left_val>0.1161905005574226</left_val>
-            <right_val>-0.1725704073905945</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 4 12 6 -1.</_>
-                <_>
-                  3 6 12 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0618079304695129</threshold>
-            <left_val>0.4056524932384491</left_val>
-            <right_val>-0.0552820302546024</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 4 8 -1.</_>
-                <_>
-                  2 4 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0398896597325802</threshold>
-            <left_val>-0.2851915061473846</left_val>
-            <right_val>0.0710409730672836</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 2 10 -1.</_>
-                <_>
-                  15 0 1 10 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0517902411520481</threshold>
-            <left_val>0.0102649601176381</left_val>
-            <right_val>-0.3324474990367889</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 10 2 -1.</_>
-                <_>
-                  3 0 10 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.5987639352679253e-003</threshold>
-            <left_val>-0.2374172061681747</left_val>
-            <right_val>0.0760814696550369</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 1 4 10 -1.</_>
-                <_>
-                  11 1 4 5 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.3729403018951416</threshold>
-            <left_val>-0.0144576001912355</left_val>
-            <right_val>0.2766433060169220</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 10 4 -1.</_>
-                <_>
-                  7 1 5 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.2840290069580078</threshold>
-            <left_val>-0.0665690526366234</left_val>
-            <right_val>0.3055528998374939</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 9 7 -1.</_>
-                <_>
-                  8 0 3 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0336107090115547</threshold>
-            <left_val>0.3767885863780975</left_val>
-            <right_val>-0.0386321581900120</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 2 2 4 -1.</_>
-                <_>
-                  8 2 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.1422769427299500e-003</threshold>
-            <left_val>-0.1114033982157707</left_val>
-            <right_val>0.1607939004898071</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 12 8 -1.</_>
-                <_>
-                  3 4 12 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0784781575202942</threshold>
-            <left_val>0.5287243723869324</left_val>
-            <right_val>-0.0308714397251606</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 2 -1.</_>
-                <_>
-                  0 10 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.3427408933639526e-003</threshold>
-            <left_val>-0.0886204317212105</left_val>
-            <right_val>0.1757823973894119</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 2 4 -1.</_>
-                <_>
-                  12 7 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.6650819238275290e-003</threshold>
-            <left_val>-0.1401319950819016</left_val>
-            <right_val>0.0889945700764656</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 5 2 -1.</_>
-                <_>
-                  6 7 5 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0249476097524166</threshold>
-            <left_val>-0.0572457909584045</left_val>
-            <right_val>0.2909868061542511</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 13 4 2 -1.</_>
-                <_>
-                  12 13 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.5206424593925476e-003</threshold>
-            <left_val>-0.5074890255928040</left_val>
-            <right_val>0.0299209896475077</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 10 2 -1.</_>
-                <_>
-                  4 0 5 1 2.</_>
-                <_>
-                  9 1 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2697858773171902e-003</threshold>
-            <left_val>-0.3367429077625275</left_val>
-            <right_val>0.0424879901111126</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 2 -1.</_>
-                <_>
-                  9 0 4 1 2.</_>
-                <_>
-                  5 1 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2029830403625965e-003</threshold>
-            <left_val>-0.3872976899147034</left_val>
-            <right_val>0.0390708781778812</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 9 6 6 -1.</_>
-                <_>
-                  3 9 3 3 2.</_>
-                <_>
-                  6 12 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0155430398881435</threshold>
-            <left_val>-0.0815093889832497</left_val>
-            <right_val>0.1808387041091919</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 13 9 2 -1.</_>
-                <_>
-                  9 13 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0524194017052650</threshold>
-            <left_val>-0.5531703829765320</left_val>
-            <right_val>0.0184993594884872</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 1 3 -1.</_>
-                <_>
-                  7 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0111103300005198</threshold>
-            <left_val>-0.7034459114074707</left_val>
-            <right_val>0.0181828700006008</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 10 3 2 -1.</_>
-                <_>
-                  15 11 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.4250999558717012e-003</threshold>
-            <left_val>-0.0457252115011215</left_val>
-            <right_val>0.0519403293728828</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 3 6 -1.</_>
-                <_>
-                  5 3 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.0726835876703262e-003</threshold>
-            <left_val>-0.2230128943920136</left_val>
-            <right_val>0.0591846518218517</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 12 8 -1.</_>
-                <_>
-                  8 0 4 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0830495506525040</threshold>
-            <left_val>-0.0779340714216232</left_val>
-            <right_val>0.0390878692269325</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 12 8 -1.</_>
-                <_>
-                  6 0 4 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0832247883081436</threshold>
-            <left_val>0.2976483106613159</left_val>
-            <right_val>-0.0553525611758232</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 12 5 -1.</_>
-                <_>
-                  8 0 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0287941191345453</threshold>
-            <left_val>0.1785778999328613</left_val>
-            <right_val>-0.0220392197370529</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 12 5 -1.</_>
-                <_>
-                  4 0 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0564895309507847</threshold>
-            <left_val>-0.0698909312486649</left_val>
-            <right_val>0.2107651978731155</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 14 -1.</_>
-                <_>
-                  9 0 2 7 2.</_>
-                <_>
-                  7 7 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0616075918078423</threshold>
-            <left_val>-0.6709880232810974</left_val>
-            <right_val>0.0254087205976248</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 9 2 -1.</_>
-                <_>
-                  9 0 9 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0404302515089512</threshold>
-            <left_val>-0.0430069416761398</left_val>
-            <right_val>0.3612573146820068</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 18 4 -1.</_>
-                <_>
-                  9 6 9 2 2.</_>
-                <_>
-                  0 8 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0816636979579926</threshold>
-            <left_val>0.0371078401803970</left_val>
-            <right_val>-0.4014778137207031</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 4 2 -1.</_>
-                <_>
-                  10 1 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0200602691620588</threshold>
-            <left_val>0.0283941105008125</left_val>
-            <right_val>-0.4509697854518890</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 12 6 -1.</_>
-                <_>
-                  7 5 4 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.4480923116207123</threshold>
-            <left_val>-0.0288634896278381</left_val>
-            <right_val>0.5443242192268372</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 3 4 -1.</_>
-                <_>
-                  5 2 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.4997808337211609e-003</threshold>
-            <left_val>-0.0631850063800812</left_val>
-            <right_val>0.2014364004135132</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 2 2 2 -1.</_>
-                <_>
-                  17 2 1 1 2.</_>
-                <_>
-                  16 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3604110538144596e-005</threshold>
-            <left_val>0.0855014175176620</left_val>
-            <right_val>-0.0625851824879646</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 2 2 -1.</_>
-                <_>
-                  0 2 1 1 2.</_>
-                <_>
-                  1 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.9380017016083002e-005</threshold>
-            <left_val>0.1278081983327866</left_val>
-            <right_val>-0.1021258011460304</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 2 1 2 -1.</_>
-                <_>
-                  17 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.0439419788308442e-004</threshold>
-            <left_val>0.1362383067607880</left_val>
-            <right_val>-0.0963960811495781</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 1 2 -1.</_>
-                <_>
-                  0 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.1386282797902822e-005</threshold>
-            <left_val>0.1202043965458870</left_val>
-            <right_val>-0.1152094006538391</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 7 1 3 -1.</_>
-                <_>
-                  9 8 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-7.4278670363128185e-003</threshold>
-            <left_val>-0.1176512986421585</left_val>
-            <right_val>0.0256468392908573</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 2 1 4 -1.</_>
-                <_>
-                  1 3 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.1655907453969121e-005</threshold>
-            <left_val>-0.1066583022475243</left_val>
-            <right_val>0.1162258014082909</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 1 -1.</_>
-                <_>
-                  16 0 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.8285116362385452e-005</threshold>
-            <left_val>0.1020200997591019</left_val>
-            <right_val>-0.0947737917304039</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 8 6 -1.</_>
-                <_>
-                  9 0 8 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1716001033782959</threshold>
-            <left_val>-0.0963247865438461</left_val>
-            <right_val>0.1393671929836273</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 6 3 4 -1.</_>
-                <_>
-                  13 7 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.1614410951733589e-003</threshold>
-            <left_val>-0.0783397704362869</left_val>
-            <right_val>0.1986435055732727</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 1 3 -1.</_>
-                <_>
-                  2 4 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0104880100116134</threshold>
-            <left_val>0.0224729795008898</left_val>
-            <right_val>-0.5888965725898743</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 7 3 4 -1.</_>
-                <_>
-                  12 8 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0423890985548496</threshold>
-            <left_val>3.2426279503852129e-003</left_val>
-            <right_val>-0.3817951977252960</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 4 3 -1.</_>
-                <_>
-                  6 8 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0189421791583300</threshold>
-            <left_val>-0.0385925881564617</left_val>
-            <right_val>0.3448579013347626</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 8 3 2 -1.</_>
-                <_>
-                  8 9 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8505830084905028e-003</threshold>
-            <left_val>0.0621170587837696</left_val>
-            <right_val>-0.1422298997640610</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 8 8 2 -1.</_>
-                <_>
-                  3 8 4 1 2.</_>
-                <_>
-                  7 9 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4762551076710224e-003</threshold>
-            <left_val>-0.0630814731121063</left_val>
-            <right_val>0.2007206976413727</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 4 6 -1.</_>
-                <_>
-                  11 10 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.2640787586569786e-003</threshold>
-            <left_val>-0.0460104309022427</left_val>
-            <right_val>0.1130814999341965</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 11 14 4 -1.</_>
-                <_>
-                  8 11 7 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0849933773279190</threshold>
-            <left_val>0.2154290974140167</left_val>
-            <right_val>-0.0659862980246544</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 13 6 2 -1.</_>
-                <_>
-                  11 13 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0231807008385658</threshold>
-            <left_val>-0.3427445888519287</left_val>
-            <right_val>0.0235659405589104</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 13 6 2 -1.</_>
-                <_>
-                  5 13 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0172915291041136</threshold>
-            <left_val>0.0314326398074627</left_val>
-            <right_val>-0.3918023109436035</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 11 16 2 -1.</_>
-                <_>
-                  1 12 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1471049878746271e-003</threshold>
-            <left_val>-0.1212544962763786</left_val>
-            <right_val>0.0950881168246269</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 10 16 4 -1.</_>
-                <_>
-                  1 12 16 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0957942008972168</threshold>
-            <left_val>0.3747287988662720</left_val>
-            <right_val>-0.0426806211471558</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 13 6 2 -1.</_>
-                <_>
-                  14 13 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0265573691576719</threshold>
-            <left_val>-0.4792292118072510</left_val>
-            <right_val>0.0261464007198811</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 2 1 -1.</_>
-                <_>
-                  1 0 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.1971433246508241e-005</threshold>
-            <left_val>0.1034777984023094</left_val>
-            <right_val>-0.1175799965858460</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 1 -1.</_>
-                <_>
-                  16 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.4540100283920765e-003</threshold>
-            <left_val>-0.5270028114318848</left_val>
-            <right_val>0.0349571593105793</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 14 12 1 -1.</_>
-                <_>
-                  5 14 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0330873392522335</threshold>
-            <left_val>-0.3979344069957733</left_val>
-            <right_val>0.0254548005759716</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 3 6 6 -1.</_>
-                <_>
-                  6 6 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0701283663511276</threshold>
-            <left_val>-0.0294641107320786</left_val>
-            <right_val>0.4120103120803833</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 12 4 3 -1.</_>
-                <_>
-                  8 12 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.6940301591530442e-004</threshold>
-            <left_val>0.1289426982402802</left_val>
-            <right_val>-0.0847874134778976</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 9 1 2 -1.</_>
-                <_>
-                  9 9 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0186607595533133</threshold>
-            <left_val>-6.2266499735414982e-003</left_val>
-            <right_val>0.3669834136962891</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 9 2 1 -1.</_>
-                <_>
-                  9 9 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0135134300217032</threshold>
-            <left_val>0.0170807391405106</left_val>
-            <right_val>-0.7108424901962280</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 10 2 2 -1.</_>
-                <_>
-                  13 10 1 1 2.</_>
-                <_>
-                  12 11 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.1627681609243155e-004</threshold>
-            <left_val>0.0951879769563675</left_val>
-            <right_val>-0.0463394597172737</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 1 3 -1.</_>
-                <_>
-                  0 7 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4968800395727158e-003</threshold>
-            <left_val>0.0190170500427485</left_val>
-            <right_val>-0.5660678744316101</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 6 16 4 -1.</_>
-                <_>
-                  1 7 16 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0339884310960770</threshold>
-            <left_val>0.2053205966949463</left_val>
-            <right_val>-0.0537301301956177</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 6 3 1 -1.</_>
-                <_>
-                  10 7 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.4949705526232719e-003</threshold>
-            <left_val>-0.4779914915561676</left_val>
-            <right_val>0.0261098798364401</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 10 2 2 -1.</_>
-                <_>
-                  13 10 1 1 2.</_>
-                <_>
-                  12 11 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.8990468066185713e-004</threshold>
-            <left_val>-0.0538782998919487</left_val>
-            <right_val>0.1529861986637116</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 2 2 -1.</_>
-                <_>
-                  5 2 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.1590311815962195e-005</threshold>
-            <left_val>-0.1203349977731705</left_val>
-            <right_val>0.0874421000480652</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 11 -1.</_>
-                <_>
-                  7 0 2 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0583840794861317</threshold>
-            <left_val>0.1957484036684036</left_val>
-            <right_val>-0.0669205635786057</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 5 3 3 -1.</_>
-                <_>
-                  7 6 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>1.6286900499835610e-003</threshold>
-            <left_val>-0.1063129976391792</left_val>
-            <right_val>0.1267475038766861</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 1 2 14 -1.</_>
-                <_>
-                  14 8 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0797880366444588</threshold>
-            <left_val>0.0121673298999667</left_val>
-            <right_val>-0.5167301297187805</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 2 -1.</_>
-                <_>
-                  7 0 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.3892009891569614e-003</threshold>
-            <left_val>-0.1291144043207169</left_val>
-            <right_val>0.0887833982706070</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 3 16 7 -1.</_>
-                <_>
-                  5 3 8 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2509182095527649</threshold>
-            <left_val>0.0321798510849476</left_val>
-            <right_val>-0.3768610954284668</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 9 3 -1.</_>
-                <_>
-                  4 2 9 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0172097105532885</threshold>
-            <left_val>0.0123794004321098</left_val>
-            <right_val>-0.7875345945358276</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 2 8 13 -1.</_>
-                <_>
-                  6 2 4 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1891666054725647</threshold>
-            <left_val>-0.0333567596971989</left_val>
-            <right_val>0.1895112991333008</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 9 1 -1.</_>
-                <_>
-                  7 0 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.8115151003003120e-003</threshold>
-            <left_val>0.2050116956233978</left_val>
-            <right_val>-0.0531618110835552</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 4 3 3 -1.</_>
-                <_>
-                  14 5 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0202697701752186</threshold>
-            <left_val>-0.0289377495646477</left_val>
-            <right_val>0.2185049951076508</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 1 2 -1.</_>
-                <_>
-                  8 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.8484037658199668e-005</threshold>
-            <left_val>0.0575751215219498</left_val>
-            <right_val>-0.1832818984985352</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 3 3 -1.</_>
-                <_>
-                  11 9 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2350680083036423e-003</threshold>
-            <left_val>-0.0324196107685566</left_val>
-            <right_val>0.0866090729832649</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 4 3 3 -1.</_>
-                <_>
-                  4 5 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0169897098094225</threshold>
-            <left_val>0.2827008068561554</left_val>
-            <right_val>-0.0383652187883854</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 3 3 3 -1.</_>
-                <_>
-                  14 4 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.4167408272624016e-003</threshold>
-            <left_val>0.1313406974077225</left_val>
-            <right_val>-0.0436117313802242</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 3 3 -1.</_>
-                <_>
-                  4 4 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.4191158637404442e-003</threshold>
-            <left_val>-0.0706334635615349</left_val>
-            <right_val>0.1760067045688629</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 8 2 -1.</_>
-                <_>
-                  11 0 4 1 2.</_>
-                <_>
-                  7 1 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.3850679434835911e-003</threshold>
-            <left_val>0.0321756713092327</left_val>
-            <right_val>-0.3905653953552246</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 6 6 9 -1.</_>
-                <_>
-                  3 6 2 9 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1251693069934845</threshold>
-            <left_val>-0.8182873725891113</left_val>
-            <right_val>0.0108839897438884</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 5 2 2 -1.</_>
-                <_>
-                  12 5 1 1 2.</_>
-                <_>
-                  11 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.4671529904007912e-003</threshold>
-            <left_val>-0.5034620165824890</left_val>
-            <right_val>4.6763787977397442e-003</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 5 2 2 -1.</_>
-                <_>
-                  5 5 1 1 2.</_>
-                <_>
-                  6 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.7330769272521138e-005</threshold>
-            <left_val>0.1123111024498940</left_val>
-            <right_val>-0.0961181893944740</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 1 3 14 -1.</_>
-                <_>
-                  14 8 3 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0487493798136711</threshold>
-            <left_val>0.0153942899778485</left_val>
-            <right_val>-0.1379497051239014</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 5 6 8 -1.</_>
-                <_>
-                  4 5 2 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0150579595938325</threshold>
-            <left_val>0.0967942178249359</left_val>
-            <right_val>-0.1040832027792931</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 4 2 -1.</_>
-                <_>
-                  10 4 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0128671396523714</threshold>
-            <left_val>-0.5594317913055420</left_val>
-            <right_val>8.0226631835103035e-003</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 8 14 -1.</_>
-                <_>
-                  8 1 4 14 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.4015636146068573</threshold>
-            <left_val>0.0144503097981215</left_val>
-            <right_val>-0.6986814141273499</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 4 2 -1.</_>
-                <_>
-                  10 4 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4811520231887698e-003</threshold>
-            <left_val>-0.0602559782564640</left_val>
-            <right_val>0.0617385916411877</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 7 3 7 -1.</_>
-                <_>
-                  5 7 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0360164083540440</threshold>
-            <left_val>-0.7666615247726440</left_val>
-            <right_val>0.0140148000791669</right_val></_></_></trees>
-      <stage_threshold>-1.4018720388412476</stage_threshold>
-      <parent>8</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 10 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 8 3 -1.</_>
-                <_>
-                  10 2 4 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0917561426758766</threshold>
-            <left_val>-0.2386678010225296</left_val>
-            <right_val>0.4141280055046082</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 10 10 -1.</_>
-                <_>
-                  13 3 5 5 2.</_>
-                <_>
-                  8 8 5 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0639683231711388</threshold>
-            <left_val>0.2354369014501572</left_val>
-            <right_val>-0.2272184938192368</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 8 5 -1.</_>
-                <_>
-                  2 0 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0100612798705697</threshold>
-            <left_val>0.1903312951326370</left_val>
-            <right_val>-0.2668313086032867</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 8 6 6 -1.</_>
-                <_>
-                  12 8 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0135615598410368</threshold>
-            <left_val>0.1492757946252823</left_val>
-            <right_val>-0.1808369010686874</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 6 6 -1.</_>
-                <_>
-                  3 8 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0150768300518394</threshold>
-            <left_val>0.2060939967632294</left_val>
-            <right_val>-0.1853415071964264</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 3 1 -1.</_>
-                <_>
-                  11 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.1514219269156456e-003</threshold>
-            <left_val>-0.5257387757301331</left_val>
-            <right_val>0.0175556205213070</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 11 4 -1.</_>
-                <_>
-                  4 1 11 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.2476930432021618e-004</threshold>
-            <left_val>-0.1458822041749954</left_val>
-            <right_val>0.1516609936952591</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 16 2 -1.</_>
-                <_>
-                  2 13 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4739510845392942e-003</threshold>
-            <left_val>-0.1880511939525604</left_val>
-            <right_val>0.0956946983933449</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 1 3 -1.</_>
-                <_>
-                  7 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.1760678179562092e-003</threshold>
-            <left_val>0.0520320907235146</left_val>
-            <right_val>-0.4938291013240814</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 0 4 2 -1.</_>
-                <_>
-                  11 0 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.1702478453516960e-003</threshold>
-            <left_val>-0.0941429212689400</left_val>
-            <right_val>0.1121701002120972</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 3 4 -1.</_>
-                <_>
-                  7 1 3 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0200577601790428</threshold>
-            <left_val>-0.5945836901664734</left_val>
-            <right_val>0.0365518406033516</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 14 -1.</_>
-                <_>
-                  5 0 4 14 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2099146991968155</threshold>
-            <left_val>0.2629818022251129</left_val>
-            <right_val>-0.1024070009589195</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 3 2 -1.</_>
-                <_>
-                  6 8 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.2166719213128090e-003</threshold>
-            <left_val>0.1322692036628723</left_val>
-            <right_val>-0.1503732055425644</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 3 8 -1.</_>
-                <_>
-                  8 2 3 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0149440001696348</threshold>
-            <left_val>0.0650079399347305</left_val>
-            <right_val>-0.0314821898937225</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 8 3 -1.</_>
-                <_>
-                  10 2 4 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0916189774870873</threshold>
-            <left_val>0.1145974993705750</left_val>
-            <right_val>-0.2158081978559494</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 2 -1.</_>
-                <_>
-                  8 0 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3998460490256548e-003</threshold>
-            <left_val>-0.1513507068157196</left_val>
-            <right_val>0.1351508945226669</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 9 2 -1.</_>
-                <_>
-                  12 4 3 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0627878010272980</threshold>
-            <left_val>-0.1066391989588738</left_val>
-            <right_val>0.2077779024839401</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 6 12 9 -1.</_>
-                <_>
-                  3 6 6 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1603447049856186</threshold>
-            <left_val>-0.0674448832869530</left_val>
-            <right_val>0.3066191077232361</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 5 8 2 -1.</_>
-                <_>
-                  5 6 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0100808003917336</threshold>
-            <left_val>0.2236672937870026</left_val>
-            <right_val>-0.0887190401554108</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 6 2 6 -1.</_>
-                <_>
-                  13 6 1 6 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0218050591647625</threshold>
-            <left_val>-0.0556704215705395</left_val>
-            <right_val>0.1359948962926865</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 6 -1.</_>
-                <_>
-                  0 0 9 3 2.</_>
-                <_>
-                  9 3 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0624005310237408</threshold>
-            <left_val>-0.4434593915939331</left_val>
-            <right_val>0.0315365903079510</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 6 2 6 -1.</_>
-                <_>
-                  13 6 1 6 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0338275581598282</threshold>
-            <left_val>0.2535226047039032</left_val>
-            <right_val>-0.0142370602115989</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 6 6 2 -1.</_>
-                <_>
-                  5 6 6 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0249442607164383</threshold>
-            <left_val>-0.0565281696617603</left_val>
-            <right_val>0.2607103884220123</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 8 4 3 -1.</_>
-                <_>
-                  13 9 2 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0286747291684151</threshold>
-            <left_val>-0.0299342703074217</left_val>
-            <right_val>0.3963845074176788</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 18 8 -1.</_>
-                <_>
-                  0 5 9 4 2.</_>
-                <_>
-                  9 9 9 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0907829701900482</threshold>
-            <left_val>0.0478614382445812</left_val>
-            <right_val>-0.3908458948135376</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 3 1 -1.</_>
-                <_>
-                  15 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.8480619490146637e-003</threshold>
-            <left_val>-0.5313044786453247</left_val>
-            <right_val>0.0151046598330140</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 1 3 -1.</_>
-                <_>
-                  3 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.7331489883363247e-003</threshold>
-            <left_val>0.0242120604962111</left_val>
-            <right_val>-0.5601106882095337</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 5 3 -1.</_>
-                <_>
-                  12 1 5 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.7148418426513672e-003</threshold>
-            <left_val>-0.0773390233516693</left_val>
-            <right_val>0.2003569006919861</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 8 4 2 -1.</_>
-                <_>
-                  7 9 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.8716041017323732e-003</threshold>
-            <left_val>0.0935838297009468</left_val>
-            <right_val>-0.1630876958370209</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 3 3 -1.</_>
-                <_>
-                  13 8 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.5740120112895966e-003</threshold>
-            <left_val>-0.0741003602743149</left_val>
-            <right_val>0.1867326050996780</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 18 2 -1.</_>
-                <_>
-                  0 11 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.5367589443922043e-003</threshold>
-            <left_val>-0.1337856948375702</left_val>
-            <right_val>0.1311887055635452</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 10 2 2 -1.</_>
-                <_>
-                  16 11 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.7387451417744160e-003</threshold>
-            <left_val>0.0191045496612787</left_val>
-            <right_val>-0.2671408951282501</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 2 1 -1.</_>
-                <_>
-                  8 7 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.2638395726680756e-003</threshold>
-            <left_val>0.0389440283179283</left_val>
-            <right_val>-0.3811526894569397</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 4 6 4 -1.</_>
-                <_>
-                  6 6 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0180356502532959</threshold>
-            <left_val>-0.0563138388097286</left_val>
-            <right_val>0.2619901895523071</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 6 3 1 -1.</_>
-                <_>
-                  10 7 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.1390590853989124e-003</threshold>
-            <left_val>0.0667682513594627</left_val>
-            <right_val>-0.2474174052476883</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 3 3 -1.</_>
-                <_>
-                  13 8 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0207422897219658</threshold>
-            <left_val>0.1581667959690094</left_val>
-            <right_val>-0.0370551086962223</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 3 3 -1.</_>
-                <_>
-                  5 8 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.1745091117918491e-003</threshold>
-            <left_val>-0.0627238526940346</left_val>
-            <right_val>0.2400090992450714</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 2 -1.</_>
-                <_>
-                  15 1 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0139801297336817</threshold>
-            <left_val>-0.2568688988685608</left_val>
-            <right_val>0.0244082696735859</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 2 2 -1.</_>
-                <_>
-                  0 11 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0162561237812042e-003</threshold>
-            <left_val>0.0346935093402863</left_val>
-            <right_val>-0.3694097101688385</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 4 2 6 -1.</_>
-                <_>
-                  12 6 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.2731141224503517e-003</threshold>
-            <left_val>-0.0931362733244896</left_val>
-            <right_val>0.0891287103295326</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 1 2 -1.</_>
-                <_>
-                  2 12 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.1432798393070698e-003</threshold>
-            <left_val>-0.3862429857254028</left_val>
-            <right_val>0.0327900089323521</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 3 -1.</_>
-                <_>
-                  13 1 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.4340949282050133e-003</threshold>
-            <left_val>0.1252959072589874</left_val>
-            <right_val>-0.0733088776469231</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 5 3 7 -1.</_>
-                <_>
-                  8 5 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0264763794839382</threshold>
-            <left_val>0.0196925196796656</left_val>
-            <right_val>-0.6520739793777466</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 11 -1.</_>
-                <_>
-                  7 0 2 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0531985610723495</threshold>
-            <left_val>-0.0389075092971325</left_val>
-            <right_val>0.3445923030376434</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 1 2 -1.</_>
-                <_>
-                  9 2 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.8159057991579175e-004</threshold>
-            <left_val>-0.1429661959409714</left_val>
-            <right_val>0.1105147972702980</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 3 -1.</_>
-                <_>
-                  13 1 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0273211896419525</threshold>
-            <left_val>-0.0230135805904865</left_val>
-            <right_val>0.3866828978061676</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 3 3 4 -1.</_>
-                <_>
-                  5 4 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0164375193417072</threshold>
-            <left_val>-0.0503561496734619</left_val>
-            <right_val>0.2543112933635712</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 14 2 -1.</_>
-                <_>
-                  10 0 7 1 2.</_>
-                <_>
-                  3 1 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0113530699163675</threshold>
-            <left_val>-0.3853333890438080</left_val>
-            <right_val>0.0233515705913305</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 4 6 -1.</_>
-                <_>
-                  0 0 2 3 2.</_>
-                <_>
-                  2 3 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.6346738710999489e-003</threshold>
-            <left_val>0.1851262003183365</left_val>
-            <right_val>-0.0785678625106812</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 2 -1.</_>
-                <_>
-                  15 1 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.9470210000872612e-003</threshold>
-            <left_val>0.0369826108217239</left_val>
-            <right_val>-0.1762986034154892</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 2 4 -1.</_>
-                <_>
-                  3 1 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0165615193545818</threshold>
-            <left_val>-0.4984858036041260</left_val>
-            <right_val>0.0288834199309349</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 8 -1.</_>
-                <_>
-                  9 0 9 4 2.</_>
-                <_>
-                  0 4 9 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0768493562936783</threshold>
-            <left_val>-0.3157871961593628</left_val>
-            <right_val>0.0435194000601768</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 4 3 -1.</_>
-                <_>
-                  4 1 2 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0151811297982931</threshold>
-            <left_val>0.2342346012592316</left_val>
-            <right_val>-0.0625914782285690</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 5 6 2 -1.</_>
-                <_>
-                  12 6 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0194898601621389</threshold>
-            <left_val>9.9025378003716469e-003</left_val>
-            <right_val>-0.3876186013221741</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 3 4 -1.</_>
-                <_>
-                  5 1 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0180505998432636</threshold>
-            <left_val>-0.0439307093620300</left_val>
-            <right_val>0.3334142863750458</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 3 15 -1.</_>
-                <_>
-                  16 0 1 15 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9345480725169182e-003</threshold>
-            <left_val>0.0809545367956162</left_val>
-            <right_val>-0.0499147698283196</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 3 15 -1.</_>
-                <_>
-                  1 0 1 15 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0263634100556374</threshold>
-            <left_val>0.0291267596185207</left_val>
-            <right_val>-0.5075094103813171</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 2 2 -1.</_>
-                <_>
-                  9 1 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4248650297522545e-003</threshold>
-            <left_val>0.0349614284932613</left_val>
-            <right_val>-0.2873327136039734</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 2 1 -1.</_>
-                <_>
-                  8 0 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.9459808506071568e-003</threshold>
-            <left_val>0.0231612101197243</left_val>
-            <right_val>-0.5071476101875305</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 1 3 14 -1.</_>
-                <_>
-                  15 8 3 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1527924984693527</threshold>
-            <left_val>-0.3288157880306244</left_val>
-            <right_val>0.0251827891916037</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 4 12 -1.</_>
-                <_>
-                  0 7 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4403219392988831e-004</threshold>
-            <left_val>0.0755192562937737</left_val>
-            <right_val>-0.1817900985479355</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 2 10 7 -1.</_>
-                <_>
-                  8 2 5 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2895443141460419</threshold>
-            <left_val>0.0112048899754882</left_val>
-            <right_val>-0.3839797973632813</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 9 6 -1.</_>
-                <_>
-                  2 3 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0487764589488506</threshold>
-            <left_val>-0.3839943110942841</left_val>
-            <right_val>0.0332496799528599</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 12 6 -1.</_>
-                <_>
-                  3 5 12 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0326264388859272</threshold>
-            <left_val>0.3178147077560425</left_val>
-            <right_val>-0.0470084510743618</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 10 2 -1.</_>
-                <_>
-                  5 5 5 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.5620561838150024e-003</threshold>
-            <left_val>-0.1639129966497421</left_val>
-            <right_val>0.0883946195244789</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 9 3 3 -1.</_>
-                <_>
-                  14 10 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.5116498842835426e-003</threshold>
-            <left_val>-0.0453669391572475</left_val>
-            <right_val>0.1035958006978035</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 11 3 3 -1.</_>
-                <_>
-                  2 11 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.8960359096527100e-003</threshold>
-            <left_val>0.0258352104574442</left_val>
-            <right_val>-0.4117685854434967</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 3 5 12 -1.</_>
-                <_>
-                  13 9 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0255158301442862</threshold>
-            <left_val>0.0233579408377409</left_val>
-            <right_val>-0.1015767008066177</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 4 4 -1.</_>
-                <_>
-                  0 8 2 2 2.</_>
-                <_>
-                  2 10 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7663391083478928e-003</threshold>
-            <left_val>-0.0830834880471230</left_val>
-            <right_val>0.1461292952299118</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 8 6 1 -1.</_>
-                <_>
-                  14 8 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.0674580484628677e-003</threshold>
-            <left_val>0.0921359285712242</left_val>
-            <right_val>-0.0571467913687229</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 1 6 -1.</_>
-                <_>
-                  0 7 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.2945564538240433e-003</threshold>
-            <left_val>0.0387363918125629</left_val>
-            <right_val>-0.3532677888870239</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 5 16 6 -1.</_>
-                <_>
-                  1 7 16 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0674231275916100</threshold>
-            <left_val>-0.0752417668700218</left_val>
-            <right_val>0.1759665012359619</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 6 6 2 -1.</_>
-                <_>
-                  6 7 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.4064600951969624e-003</threshold>
-            <left_val>0.0977936610579491</left_val>
-            <right_val>-0.1518930941820145</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 3 3 6 -1.</_>
-                <_>
-                  11 5 1 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0498286001384258</threshold>
-            <left_val>-0.4579021930694580</left_val>
-            <right_val>6.8976799957454205e-003</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 3 3 6 -1.</_>
-                <_>
-                  6 5 1 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0365433506667614</threshold>
-            <left_val>0.0514394491910934</left_val>
-            <right_val>-0.2690314948558807</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 3 5 12 -1.</_>
-                <_>
-                  13 9 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0641553029417992</threshold>
-            <left_val>-0.0376881808042526</left_val>
-            <right_val>0.0356850884854794</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 8 4 2 -1.</_>
-                <_>
-                  2 8 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6559410141780972e-003</threshold>
-            <left_val>-0.0784540399909019</left_val>
-            <right_val>0.1445766985416412</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 4 3 11 -1.</_>
-                <_>
-                  13 4 1 11 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0435861088335514</threshold>
-            <left_val>-0.6851059794425964</left_val>
-            <right_val>0.0130487699061632</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 5 12 -1.</_>
-                <_>
-                  0 9 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2223066985607147</threshold>
-            <left_val>-0.5776153802871704</left_val>
-            <right_val>0.0171249397099018</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 4 3 11 -1.</_>
-                <_>
-                  13 4 1 11 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0246731601655483</threshold>
-            <left_val>0.0118981599807739</left_val>
-            <right_val>-0.4052211046218872</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 13 4 2 -1.</_>
-                <_>
-                  5 14 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0119292298331857</threshold>
-            <left_val>0.3351877927780151</left_val>
-            <right_val>-0.0336703099310398</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 13 1 2 -1.</_>
-                <_>
-                  11 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2319719826336950e-004</threshold>
-            <left_val>-0.0857188627123833</left_val>
-            <right_val>0.0837130919098854</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 7 2 -1.</_>
-                <_>
-                  0 5 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.3408823013305664e-003</threshold>
-            <left_val>-0.2854315042495728</left_val>
-            <right_val>0.0407378897070885</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 4 3 3 -1.</_>
-                <_>
-                  13 5 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-7.4626510031521320e-003</threshold>
-            <left_val>0.1119131967425346</left_val>
-            <right_val>-0.0340123288333416</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 7 -1.</_>
-                <_>
-                  7 0 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0137237096205354</threshold>
-            <left_val>0.2498622983694077</left_val>
-            <right_val>-0.0450337603688240</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 12 15 -1.</_>
-                <_>
-                  8 0 4 15 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1521987020969391</threshold>
-            <left_val>-0.0910210907459259</left_val>
-            <right_val>0.0909610465168953</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 1 3 -1.</_>
-                <_>
-                  0 1 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.7259603131096810e-005</threshold>
-            <left_val>-0.1059086024761200</left_val>
-            <right_val>0.1105574965476990</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 1 -1.</_>
-                <_>
-                  16 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.9416758120059967e-003</threshold>
-            <left_val>0.0241890698671341</left_val>
-            <right_val>-0.3095433115959168</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 1 2 -1.</_>
-                <_>
-                  2 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-8.4537155926227570e-003</threshold>
-            <left_val>-0.4988319873809815</left_val>
-            <right_val>0.0197901595383883</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 10 2 1 -1.</_>
-                <_>
-                  16 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5807019372005016e-004</threshold>
-            <left_val>0.0810882821679115</left_val>
-            <right_val>-0.0969615131616592</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 3 13 -1.</_>
-                <_>
-                  4 2 1 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0371250584721565</threshold>
-            <left_val>-0.6658145189285278</left_val>
-            <right_val>0.0148829696699977</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 4 3 3 -1.</_>
-                <_>
-                  13 5 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0268303193151951</threshold>
-            <left_val>-0.0143090495839715</left_val>
-            <right_val>0.1894340068101883</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 3 8 4 -1.</_>
-                <_>
-                  5 5 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0502456203103065</threshold>
-            <left_val>0.2932176887989044</left_val>
-            <right_val>-0.0342677310109138</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 3 1 -1.</_>
-                <_>
-                  13 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.9950302131474018e-003</threshold>
-            <left_val>-0.3633973896503449</left_val>
-            <right_val>0.0245582703500986</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 8 13 -1.</_>
-                <_>
-                  6 0 4 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0658775717020035</threshold>
-            <left_val>-0.0696238428354263</left_val>
-            <right_val>0.1689317971467972</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 1 1 4 -1.</_>
-                <_>
-                  10 2 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0134680103510618</threshold>
-            <left_val>-0.5744501948356628</left_val>
-            <right_val>7.6498151756823063e-003</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 4 1 -1.</_>
-                <_>
-                  8 2 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.5795979462563992e-003</threshold>
-            <left_val>0.0468714609742165</left_val>
-            <right_val>-0.2604298889636993</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 4 3 3 -1.</_>
-                <_>
-                  13 5 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0837022736668587</threshold>
-            <left_val>-2.6280758902430534e-003</left_val>
-            <right_val>0.9539653062820435</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 3 3 -1.</_>
-                <_>
-                  5 5 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0269146692007780</threshold>
-            <left_val>0.4341320097446442</left_val>
-            <right_val>-0.0251872204244137</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 2 1 8 -1.</_>
-                <_>
-                  17 2 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0681707710027695</threshold>
-            <left_val>0.0113553795963526</left_val>
-            <right_val>-0.1976965069770813</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 2 8 1 -1.</_>
-                <_>
-                  1 2 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0183866992592812</threshold>
-            <left_val>-0.3016122877597809</left_val>
-            <right_val>0.0400681607425213</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 6 3 4 -1.</_>
-                <_>
-                  12 7 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.8888311721384525e-003</threshold>
-            <left_val>-0.0474995188415051</left_val>
-            <right_val>0.0279497597366571</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 6 4 3 -1.</_>
-                <_>
-                  6 7 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0120319798588753</threshold>
-            <left_val>-0.0417588092386723</left_val>
-            <right_val>0.2567807137966156</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 1 4 3 -1.</_>
-                <_>
-                  13 2 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0452825687825680</threshold>
-            <left_val>-0.0120907295495272</left_val>
-            <right_val>0.5962427258491516</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 8 3 -1.</_>
-                <_>
-                  0 5 8 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0164286494255066</threshold>
-            <left_val>0.0317231491208076</left_val>
-            <right_val>-0.3415141999721527</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 3 6 6 -1.</_>
-                <_>
-                  10 5 6 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0158072896301746</threshold>
-            <left_val>-0.0876926332712173</left_val>
-            <right_val>0.0733993873000145</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 6 8 -1.</_>
-                <_>
-                  4 1 3 4 2.</_>
-                <_>
-                  7 5 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0738655477762222</threshold>
-            <left_val>0.0175666399300098</left_val>
-            <right_val>-0.5859189033508301</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 4 4 2 -1.</_>
-                <_>
-                  10 4 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0817420035600662</threshold>
-            <left_val>-0.0146944299340248</left_val>
-            <right_val>0.3817226886749268</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 13 1 2 -1.</_>
-                <_>
-                  6 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6201290418393910e-004</threshold>
-            <left_val>-0.1015762984752655</left_val>
-            <right_val>0.1007106006145477</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 11 3 4 -1.</_>
-                <_>
-                  9 12 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.6514606848359108e-003</threshold>
-            <left_val>-0.0391967110335827</left_val>
-            <right_val>0.1571251004934311</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 11 10 4 -1.</_>
-                <_>
-                  1 13 10 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1139461994171143</threshold>
-            <left_val>0.0216240193694830</left_val>
-            <right_val>-0.4994927048683167</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 1 4 2 -1.</_>
-                <_>
-                  14 1 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.1548771075904369e-003</threshold>
-            <left_val>0.0503181293606758</left_val>
-            <right_val>-0.0436193607747555</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 12 8 -1.</_>
-                <_>
-                  3 3 12 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0443513505160809</threshold>
-            <left_val>0.3084303140640259</left_val>
-            <right_val>-0.0323894284665585</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 4 2 8 -1.</_>
-                <_>
-                  12 4 1 8 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0593373291194439</threshold>
-            <left_val>8.8634816929697990e-003</left_val>
-            <right_val>-0.4340277016162872</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 4 8 2 -1.</_>
-                <_>
-                  6 4 8 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.4961997345089912e-003</threshold>
-            <left_val>-0.1643534004688263</left_val>
-            <right_val>0.0720200389623642</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 6 1 -1.</_>
-                <_>
-                  7 0 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0126119097694755</threshold>
-            <left_val>-0.0547339096665382</left_val>
-            <right_val>0.2674084901809692</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 5 12 6 -1.</_>
-                <_>
-                  7 7 4 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1005614027380943</threshold>
-            <left_val>0.0964706912636757</left_val>
-            <right_val>-0.1237357035279274</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 3 1 2 -1.</_>
-                <_>
-                  10 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4684870368218981e-005</threshold>
-            <left_val>-0.0654680281877518</left_val>
-            <right_val>0.0757642164826393</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 6 3 -1.</_>
-                <_>
-                  8 1 6 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0173253808170557</threshold>
-            <left_val>0.0493854694068432</left_val>
-            <right_val>-0.2093895971775055</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 5 2 3 -1.</_>
-                <_>
-                  16 6 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.1096980720758438e-003</threshold>
-            <left_val>-0.2312972992658615</left_val>
-            <right_val>0.0138064604252577</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- 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>7.0394109934568405e-003</threshold>
-            <left_val>-0.0485932305455208</left_val>
-            <right_val>0.2104512006044388</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 5 2 3 -1.</_>
-                <_>
-                  16 6 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0678370017558336e-003</threshold>
-            <left_val>0.0985712036490440</left_val>
-            <right_val>-0.0456795394420624</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 2 3 -1.</_>
-                <_>
-                  0 6 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.9888887703418732e-003</threshold>
-            <left_val>0.0227227304130793</left_val>
-            <right_val>-0.4730550050735474</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 6 2 4 -1.</_>
-                <_>
-                  12 6 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.8562550432980061e-003</threshold>
-            <left_val>-0.1266745030879974</left_val>
-            <right_val>0.0263468995690346</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 13 8 2 -1.</_>
-                <_>
-                  6 13 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0282390993088484</threshold>
-            <left_val>-0.4817343056201935</left_val>
-            <right_val>0.0202802792191505</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 3 -1.</_>
-                <_>
-                  8 0 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.5814680159091949e-003</threshold>
-            <left_val>0.1337555944919586</left_val>
-            <right_val>-0.0751768574118614</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 3 10 12 -1.</_>
-                <_>
-                  4 3 5 6 2.</_>
-                <_>
-                  9 9 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1443670988082886</threshold>
-            <left_val>-0.3129830062389374</left_val>
-            <right_val>0.0385885089635849</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 11 8 4 -1.</_>
-                <_>
-                  7 11 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1250455975532532</threshold>
-            <left_val>6.5982979722321033e-003</left_val>
-            <right_val>-0.8157945275306702</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 11 8 4 -1.</_>
-                <_>
-                  7 11 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0130116604268551</threshold>
-            <left_val>0.1292210072278976</left_val>
-            <right_val>-0.0797087624669075</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 6 2 2 -1.</_>
-                <_>
-                  14 6 1 1 2.</_>
-                <_>
-                  13 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7209460493177176e-003</threshold>
-            <left_val>0.1841018050909042</left_val>
-            <right_val>-0.0381583906710148</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 6 2 2 -1.</_>
-                <_>
-                  3 6 1 1 2.</_>
-                <_>
-                  4 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.2962076703552157e-005</threshold>
-            <left_val>-0.0808445066213608</left_val>
-            <right_val>0.1240184977650642</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 3 1 -1.</_>
-                <_>
-                  13 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.5386621281504631e-003</threshold>
-            <left_val>0.0257210507988930</left_val>
-            <right_val>-0.3472849130630493</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 4 6 -1.</_>
-                <_>
-                  4 4 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.6022120192646980e-003</threshold>
-            <left_val>-0.1327951997518539</left_val>
-            <right_val>0.0695039033889771</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 0 1 2 -1.</_>
-                <_>
-                  17 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2741329555865377e-004</threshold>
-            <left_val>0.0734610781073570</left_val>
-            <right_val>-0.0567503012716770</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 7 3 -1.</_>
-                <_>
-                  5 1 7 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.7483227252960205e-003</threshold>
-            <left_val>-0.3874781131744385</left_val>
-            <right_val>0.0252428594976664</right_val></_></_>
-        <_>
-          <!-- tree 135 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 0 1 2 -1.</_>
-                <_>
-                  17 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.8606209778226912e-004</threshold>
-            <left_val>-0.0807940736413002</left_val>
-            <right_val>0.1112494990229607</right_val></_></_>
-        <_>
-          <!-- tree 136 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 1 2 -1.</_>
-                <_>
-                  0 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3457060160581023e-004</threshold>
-            <left_val>0.1357578039169312</left_val>
-            <right_val>-0.0805138573050499</right_val></_></_>
-        <_>
-          <!-- tree 137 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 0 1 6 -1.</_>
-                <_>
-                  17 2 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7333909636363387e-003</threshold>
-            <left_val>-0.0408243499696255</left_val>
-            <right_val>0.0704857334494591</right_val></_></_>
-        <_>
-          <!-- tree 138 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 11 12 2 -1.</_>
-                <_>
-                  3 12 12 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5763779412955046e-003</threshold>
-            <left_val>-0.1058242991566658</left_val>
-            <right_val>0.0882512032985687</right_val></_></_>
-        <_>
-          <!-- tree 139 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 11 1 2 -1.</_>
-                <_>
-                  17 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1439519952982664e-003</threshold>
-            <left_val>0.0228503905236721</left_val>
-            <right_val>-0.2287800014019013</right_val></_></_>
-        <_>
-          <!-- tree 140 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 4 2 -1.</_>
-                <_>
-                  7 2 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.6810711286962032e-003</threshold>
-            <left_val>-0.5519475936889648</left_val>
-            <right_val>0.0166440196335316</right_val></_></_>
-        <_>
-          <!-- tree 141 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 2 3 3 -1.</_>
-                <_>
-                  14 3 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0102156195789576</threshold>
-            <left_val>0.1151650995016098</left_val>
-            <right_val>-0.0309206396341324</right_val></_></_>
-        <_>
-          <!-- tree 142 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 2 -1.</_>
-                <_>
-                  5 1 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.8375351838767529e-003</threshold>
-            <left_val>0.0355978682637215</left_val>
-            <right_val>-0.2579573988914490</right_val></_></_>
-        <_>
-          <!-- tree 143 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 8 2 -1.</_>
-                <_>
-                  9 2 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1667288858443499e-003</threshold>
-            <left_val>-0.1131158992648125</left_val>
-            <right_val>0.0593770816922188</right_val></_></_>
-        <_>
-          <!-- tree 144 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 12 15 -1.</_>
-                <_>
-                  7 0 6 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1784611046314240</threshold>
-            <left_val>-0.0910909771919250</left_val>
-            <right_val>0.1021554023027420</right_val></_></_>
-        <_>
-          <!-- tree 145 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 0 1 6 -1.</_>
-                <_>
-                  17 2 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3922319523990154e-003</threshold>
-            <left_val>0.1054854989051819</left_val>
-            <right_val>-0.0409410186111927</right_val></_></_>
-        <_>
-          <!-- tree 146 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 1 6 -1.</_>
-                <_>
-                  0 2 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.2479801494628191e-004</threshold>
-            <left_val>-0.0925479605793953</left_val>
-            <right_val>0.1070403009653091</right_val></_></_>
-        <_>
-          <!-- tree 147 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 2 -1.</_>
-                <_>
-                  14 0 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.3213559761643410e-003</threshold>
-            <left_val>0.0474837012588978</left_val>
-            <right_val>-0.0448017083108425</right_val></_></_>
-        <_>
-          <!-- tree 148 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 3 5 -1.</_>
-                <_>
-                  6 1 1 5 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.9881906062364578e-003</threshold>
-            <left_val>-0.0531012415885925</left_val>
-            <right_val>0.1893334984779358</right_val></_></_>
-        <_>
-          <!-- tree 149 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 3 4 -1.</_>
-                <_>
-                  14 0 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.2582447901368141e-003</threshold>
-            <left_val>0.0154708195477724</left_val>
-            <right_val>-0.1627379059791565</right_val></_></_>
-        <_>
-          <!-- tree 150 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 4 8 -1.</_>
-                <_>
-                  9 3 2 8 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1220915019512177</threshold>
-            <left_val>-0.6588258147239685</left_val>
-            <right_val>0.0144322402775288</right_val></_></_>
-        <_>
-          <!-- tree 151 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 3 2 3 -1.</_>
-                <_>
-                  14 4 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0429302901029587</threshold>
-            <left_val>-8.9507391676306725e-003</left_val>
-            <right_val>0.7003753781318665</right_val></_></_>
-        <_>
-          <!-- tree 152 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 3 2 -1.</_>
-                <_>
-                  4 4 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0141837401315570</threshold>
-            <left_val>0.2873809039592743</left_val>
-            <right_val>-0.0324238389730453</right_val></_></_>
-        <_>
-          <!-- tree 153 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 3 2 2 -1.</_>
-                <_>
-                  13 3 1 1 2.</_>
-                <_>
-                  12 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5566753619350493e-005</threshold>
-            <left_val>-0.0600121095776558</left_val>
-            <right_val>0.0723430663347244</right_val></_></_>
-        <_>
-          <!-- tree 154 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 3 2 2 -1.</_>
-                <_>
-                  4 3 1 1 2.</_>
-                <_>
-                  5 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.1673799033742398e-005</threshold>
-            <left_val>0.1241253018379211</left_val>
-            <right_val>-0.0886371731758118</right_val></_></_>
-        <_>
-          <!-- tree 155 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 3 3 -1.</_>
-                <_>
-                  16 0 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0104515701532364</threshold>
-            <left_val>0.0198976993560791</left_val>
-            <right_val>-0.5485957860946655</right_val></_></_>
-        <_>
-          <!-- tree 156 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 3 3 -1.</_>
-                <_>
-                  1 0 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.1406508795917034e-003</threshold>
-            <left_val>0.0218714401125908</left_val>
-            <right_val>-0.3995957076549530</right_val></_></_></trees>
-      <stage_threshold>-1.4323190450668335</stage_threshold>
-      <parent>9</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 11 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 6 10 4 -1.</_>
-                <_>
-                  4 8 10 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0790023133158684</threshold>
-            <left_val>0.3242895007133484</left_val>
-            <right_val>-0.2531394064426422</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 4 8 -1.</_>
-                <_>
-                  9 2 2 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0223373007029295</threshold>
-            <left_val>-0.0941315069794655</left_val>
-            <right_val>0.1378436982631683</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 9 12 -1.</_>
-                <_>
-                  4 0 3 12 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0666114836931229</threshold>
-            <left_val>0.1753558069467545</left_val>
-            <right_val>-0.2632693946361542</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 4 12 10 -1.</_>
-                <_>
-                  12 4 6 5 2.</_>
-                <_>
-                  6 9 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0181155707687140</threshold>
-            <left_val>0.1001667976379395</left_val>
-            <right_val>-0.2508405148983002</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 9 2 -1.</_>
-                <_>
-                  9 0 9 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0422082990407944</threshold>
-            <left_val>-0.0464601181447506</left_val>
-            <right_val>0.5075340270996094</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 1 4 3 -1.</_>
-                <_>
-                  13 2 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0219473801553249</threshold>
-            <left_val>-0.0351926311850548</left_val>
-            <right_val>0.2941356897354126</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 10 4 -1.</_>
-                <_>
-                  2 2 10 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0390684790909290</threshold>
-            <left_val>0.0343180112540722</left_val>
-            <right_val>-0.5963727831840515</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 1 4 3 -1.</_>
-                <_>
-                  13 2 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0171588398516178</threshold>
-            <left_val>0.2207123041152954</left_val>
-            <right_val>-0.0628029406070709</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 2 2 -1.</_>
-                <_>
-                  7 1 1 1 2.</_>
-                <_>
-                  8 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.5410808272426948e-005</threshold>
-            <left_val>0.1925067007541657</left_val>
-            <right_val>-0.0979116931557655</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 1 4 3 -1.</_>
-                <_>
-                  13 2 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0577130392193794</threshold>
-            <left_val>-0.0177523493766785</left_val>
-            <right_val>0.3969089984893799</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 6 4 3 -1.</_>
-                <_>
-                  5 7 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0276702996343374</threshold>
-            <left_val>0.2730920016765595</left_val>
-            <right_val>-0.0699228271842003</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 2 4 -1.</_>
-                <_>
-                  12 8 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.1078277863562107e-003</threshold>
-            <left_val>-0.0490987785160542</left_val>
-            <right_val>0.2490742951631546</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 2 2 -1.</_>
-                <_>
-                  7 1 1 1 2.</_>
-                <_>
-                  8 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8231639084406197e-005</threshold>
-            <left_val>-0.1242284029722214</left_val>
-            <right_val>0.1748877018690109</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 8 6 -1.</_>
-                <_>
-                  14 0 4 3 2.</_>
-                <_>
-                  10 3 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4101468995213509e-003</threshold>
-            <left_val>-0.1163510009646416</left_val>
-            <right_val>0.1120261996984482</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 10 -1.</_>
-                <_>
-                  0 0 9 5 2.</_>
-                <_>
-                  9 5 9 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1215678006410599</threshold>
-            <left_val>0.0358167998492718</left_val>
-            <right_val>-0.4239023923873901</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 8 -1.</_>
-                <_>
-                  16 4 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0457986593246460</threshold>
-            <left_val>-0.3961238861083984</left_val>
-            <right_val>0.0269146692007780</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 2 8 -1.</_>
-                <_>
-                  0 4 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.3434510007500648e-003</threshold>
-            <left_val>0.1517422944307327</left_val>
-            <right_val>-0.1524718999862671</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 10 4 1 -1.</_>
-                <_>
-                  15 11 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.4885639110580087e-004</threshold>
-            <left_val>-0.1039891019463539</left_val>
-            <right_val>0.1021101996302605</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 7 2 4 -1.</_>
-                <_>
-                  4 8 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4605579674243927e-003</threshold>
-            <left_val>-0.0920632407069206</left_val>
-            <right_val>0.2008579969406128</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 10 4 1 -1.</_>
-                <_>
-                  15 11 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0204001795500517</threshold>
-            <left_val>0.3931783139705658</left_val>
-            <right_val>5.8226548135280609e-003</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 10 1 4 -1.</_>
-                <_>
-                  3 11 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.3037819482851774e-004</threshold>
-            <left_val>-0.1504732072353363</left_val>
-            <right_val>0.1060613021254540</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 1 4 -1.</_>
-                <_>
-                  13 0 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.2928410694003105e-003</threshold>
-            <left_val>0.0726602599024773</left_val>
-            <right_val>-0.0793565437197685</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 8 6 -1.</_>
-                <_>
-                  9 0 8 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1863780021667481</threshold>
-            <left_val>-0.1124956011772156</left_val>
-            <right_val>0.1569485962390900</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 16 4 -1.</_>
-                <_>
-                  9 0 8 2 2.</_>
-                <_>
-                  1 2 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0264334604144096</threshold>
-            <left_val>-0.3909560143947601</left_val>
-            <right_val>0.0494861491024494</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 3 16 11 -1.</_>
-                <_>
-                  5 3 8 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2413793057203293</threshold>
-            <left_val>-0.6788706183433533</left_val>
-            <right_val>0.0180502496659756</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 4 1 -1.</_>
-                <_>
-                  9 1 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0304666403681040</threshold>
-            <left_val>2.7202309574931860e-003</left_val>
-            <right_val>-0.6389626860618591</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 9 4 4 -1.</_>
-                <_>
-                  3 10 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7874959632754326e-003</threshold>
-            <left_val>-0.0831275731325150</left_val>
-            <right_val>0.1775137037038803</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 3 14 9 -1.</_>
-                <_>
-                  2 6 14 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1282777041196823</threshold>
-            <left_val>-0.0936257764697075</left_val>
-            <right_val>0.1679662019014359</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 5 4 2 -1.</_>
-                <_>
-                  7 6 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.7217219360172749e-003</threshold>
-            <left_val>0.1679864972829819</left_val>
-            <right_val>-0.1074066013097763</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 2 4 -1.</_>
-                <_>
-                  13 0 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0251063294708729</threshold>
-            <left_val>0.0170449391007423</left_val>
-            <right_val>-0.4981293976306915</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 11 4 4 -1.</_>
-                <_>
-                  1 11 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.5740294307470322e-003</threshold>
-            <left_val>0.0389305390417576</left_val>
-            <right_val>-0.3350399136543274</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 2 4 -1.</_>
-                <_>
-                  13 0 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0162992291152477</threshold>
-            <left_val>-0.1772850006818771</left_val>
-            <right_val>5.9367809444665909e-003</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 4 2 -1.</_>
-                <_>
-                  5 0 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0137555897235870</threshold>
-            <left_val>0.0492921508848667</left_val>
-            <right_val>-0.2990570068359375</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 4 1 -1.</_>
-                <_>
-                  14 1 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0101705603301525</threshold>
-            <left_val>0.0125693203881383</left_val>
-            <right_val>-0.3271737098693848</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 4 12 -1.</_>
-                <_>
-                  0 7 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1183888018131256</threshold>
-            <left_val>-0.3064275085926056</left_val>
-            <right_val>0.0404061898589134</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 3 16 12 -1.</_>
-                <_>
-                  10 3 8 6 2.</_>
-                <_>
-                  2 9 8 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2877846062183380</threshold>
-            <left_val>8.6266417056322098e-003</left_val>
-            <right_val>-0.5840386152267456</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 5 8 2 -1.</_>
-                <_>
-                  5 5 4 1 2.</_>
-                <_>
-                  9 6 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0107093695551157</threshold>
-            <left_val>-0.4581218063831329</left_val>
-            <right_val>0.0267107002437115</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 4 1 -1.</_>
-                <_>
-                  14 1 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0168365407735109</threshold>
-            <left_val>-0.4834601879119873</left_val>
-            <right_val>1.4101839624345303e-003</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 3 6 -1.</_>
-                <_>
-                  7 1 1 6 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0268719699233770</threshold>
-            <left_val>0.3023610115051270</left_val>
-            <right_val>-0.0401738695800304</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 4 1 -1.</_>
-                <_>
-                  14 1 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.0822209771722555e-003</threshold>
-            <left_val>0.0263978503644466</left_val>
-            <right_val>-0.0711281672120094</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 8 7 -1.</_>
-                <_>
-                  9 2 4 7 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1830713003873825</threshold>
-            <left_val>0.0315734706819057</left_val>
-            <right_val>-0.4311215877532959</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 4 1 -1.</_>
-                <_>
-                  14 1 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.3969710133969784e-003</threshold>
-            <left_val>-0.0999102368950844</left_val>
-            <right_val>0.0134910000488162</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 1 4 -1.</_>
-                <_>
-                  4 1 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.5924688242375851e-003</threshold>
-            <left_val>0.0344651006162167</left_val>
-            <right_val>-0.4054282009601593</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 2 2 3 -1.</_>
-                <_>
-                  15 3 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.6914830133318901e-003</threshold>
-            <left_val>-0.0393002107739449</left_val>
-            <right_val>0.1681717932224274</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 2 3 2 -1.</_>
-                <_>
-                  3 3 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0134877096861601</threshold>
-            <left_val>0.3188030123710632</left_val>
-            <right_val>-0.0385033711791039</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 3 -1.</_>
-                <_>
-                  13 1 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0132067799568176</threshold>
-            <left_val>0.1150619015097618</left_val>
-            <right_val>-0.0261230692267418</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 3 4 -1.</_>
-                <_>
-                  5 1 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.5766428858041763e-003</threshold>
-            <left_val>-0.0562361218035221</left_val>
-            <right_val>0.2204838991165161</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 13 7 2 -1.</_>
-                <_>
-                  8 14 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.0655260197818279e-003</threshold>
-            <left_val>-0.0801741108298302</left_val>
-            <right_val>0.1032200008630753</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 1 2 -1.</_>
-                <_>
-                  8 3 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.6779087723698467e-005</threshold>
-            <left_val>-0.1722442954778671</left_val>
-            <right_val>0.0690877288579941</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 4 8 -1.</_>
-                <_>
-                  10 1 2 8 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0961858332157135</threshold>
-            <left_val>1.5162150375545025e-003</left_val>
-            <right_val>-0.5543875098228455</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 8 4 -1.</_>
-                <_>
-                  8 1 8 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0381203815340996</threshold>
-            <left_val>0.0515935495495796</left_val>
-            <right_val>-0.2627368867397308</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 12 10 -1.</_>
-                <_>
-                  9 0 4 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.5056834220886231</threshold>
-            <left_val>0.0104669099673629</left_val>
-            <right_val>-0.5157765746116638</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 3 2 -1.</_>
-                <_>
-                  7 7 3 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0121925799176097</threshold>
-            <left_val>0.3058409094810486</left_val>
-            <right_val>-0.0400131605565548</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 5 9 10 -1.</_>
-                <_>
-                  9 10 9 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1282064020633698</threshold>
-            <left_val>0.0224020406603813</left_val>
-            <right_val>-0.2776327133178711</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 12 10 -1.</_>
-                <_>
-                  5 0 4 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1294344961643219</threshold>
-            <left_val>-0.0615348294377327</left_val>
-            <right_val>0.2134552001953125</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 7 -1.</_>
-                <_>
-                  5 0 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0757145211100578</threshold>
-            <left_val>0.1529033929109573</left_val>
-            <right_val>-0.1166701018810272</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 2 2 -1.</_>
-                <_>
-                  6 0 1 1 2.</_>
-                <_>
-                  7 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3732179367216304e-005</threshold>
-            <left_val>0.1280037015676498</left_val>
-            <right_val>-0.0978259593248367</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 11 18 4 -1.</_>
-                <_>
-                  0 12 18 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.5803599320352077e-003</threshold>
-            <left_val>-0.0979151725769043</left_val>
-            <right_val>0.1262035965919495</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 5 10 -1.</_>
-                <_>
-                  0 10 5 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0686360225081444</threshold>
-            <left_val>0.0404322184622288</left_val>
-            <right_val>-0.3132973015308380</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 9 3 3 -1.</_>
-                <_>
-                  9 9 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0114607503637671</threshold>
-            <left_val>0.0253615006804466</left_val>
-            <right_val>-0.4854018986225128</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 13 2 2 -1.</_>
-                <_>
-                  0 13 1 1 2.</_>
-                <_>
-                  1 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6128649551537819e-005</threshold>
-            <left_val>-0.1043203026056290</left_val>
-            <right_val>0.1133332997560501</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 13 2 2 -1.</_>
-                <_>
-                  17 13 1 1 2.</_>
-                <_>
-                  16 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.4630657511297613e-005</threshold>
-            <left_val>-0.1048785969614983</left_val>
-            <right_val>0.1274009943008423</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 13 2 2 -1.</_>
-                <_>
-                  0 13 1 1 2.</_>
-                <_>
-                  1 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3739310563541949e-005</threshold>
-            <left_val>0.1511404961347580</left_val>
-            <right_val>-0.1025215014815331</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 4 1 -1.</_>
-                <_>
-                  10 1 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0116111198440194</threshold>
-            <left_val>0.0148869697004557</left_val>
-            <right_val>-0.2867495119571686</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 2 -1.</_>
-                <_>
-                  0 10 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0124207204207778</threshold>
-            <left_val>-0.0620668604969978</left_val>
-            <right_val>0.1777233928442001</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 5 2 6 -1.</_>
-                <_>
-                  14 5 1 6 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0234262607991695</threshold>
-            <left_val>-0.0847592502832413</left_val>
-            <right_val>0.1441590040922165</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 6 -1.</_>
-                <_>
-                  0 9 9 3 2.</_>
-                <_>
-                  9 12 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1436820030212402</threshold>
-            <left_val>0.0257685091346502</left_val>
-            <right_val>-0.4959807097911835</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 1 4 -1.</_>
-                <_>
-                  9 2 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.6740589421242476e-003</threshold>
-            <left_val>-0.3470003008842468</left_val>
-            <right_val>0.0128000602126122</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 1 4 -1.</_>
-                <_>
-                  1 1 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1495590014383197e-005</threshold>
-            <left_val>-0.1067951023578644</left_val>
-            <right_val>0.0999599397182465</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 16 2 -1.</_>
-                <_>
-                  9 0 8 1 2.</_>
-                <_>
-                  1 1 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.9259437993168831e-003</threshold>
-            <left_val>0.0326209701597691</left_val>
-            <right_val>-0.3536975979804993</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 2 -1.</_>
-                <_>
-                  8 0 1 1 2.</_>
-                <_>
-                  9 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1487040764186531e-005</threshold>
-            <left_val>0.1253120005130768</left_val>
-            <right_val>-0.0952782332897186</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 2 4 -1.</_>
-                <_>
-                  12 7 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0273266006261110</threshold>
-            <left_val>-8.9491289108991623e-003</left_val>
-            <right_val>0.0647247210144997</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 8 3 4 -1.</_>
-                <_>
-                  7 8 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0223257504403591</threshold>
-            <left_val>0.0140139004215598</left_val>
-            <right_val>-0.7404717206954956</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 2 4 -1.</_>
-                <_>
-                  12 7 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0402809605002403</threshold>
-            <left_val>1.0004050564020872e-003</left_val>
-            <right_val>-0.1177709996700287</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 4 2 -1.</_>
-                <_>
-                  6 7 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0218933299183846</threshold>
-            <left_val>-0.0508843213319778</left_val>
-            <right_val>0.2278957962989807</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 8 3 2 -1.</_>
-                <_>
-                  12 9 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.1642571128904819e-003</threshold>
-            <left_val>0.1285706013441086</left_val>
-            <right_val>-0.0535524301230907</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 17 6 -1.</_>
-                <_>
-                  0 7 17 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0808411389589310</threshold>
-            <left_val>0.2065366059541702</left_val>
-            <right_val>-0.0666172280907631</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 6 2 2 -1.</_>
-                <_>
-                  15 6 1 1 2.</_>
-                <_>
-                  14 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1331298891454935e-004</threshold>
-            <left_val>-0.0544428005814552</left_val>
-            <right_val>0.1496316045522690</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 8 3 1 -1.</_>
-                <_>
-                  9 9 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.6274370551109314e-003</threshold>
-            <left_val>0.0308179594576359</left_val>
-            <right_val>-0.3672313988208771</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 6 2 2 -1.</_>
-                <_>
-                  15 6 1 1 2.</_>
-                <_>
-                  14 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.7373692076653242e-004</threshold>
-            <left_val>0.1390278041362763</left_val>
-            <right_val>-0.0632526502013206</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 7 3 1 -1.</_>
-                <_>
-                  10 8 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0117200398817658</threshold>
-            <left_val>-0.4767001867294312</left_val>
-            <right_val>0.0244123209267855</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 1 6 -1.</_>
-                <_>
-                  9 0 1 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0488609895110130</threshold>
-            <left_val>0.0100850900635123</left_val>
-            <right_val>-0.4659259021282196</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 6 1 -1.</_>
-                <_>
-                  9 0 3 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0186931006610394</threshold>
-            <left_val>-0.0719920396804810</left_val>
-            <right_val>0.1769388020038605</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 5 6 10 -1.</_>
-                <_>
-                  6 5 3 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0539086498320103</threshold>
-            <left_val>0.1467525959014893</left_val>
-            <right_val>-0.0904555171728134</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 1 2 -1.</_>
-                <_>
-                  9 1 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.3356387913227081e-003</threshold>
-            <left_val>0.0223987400531769</left_val>
-            <right_val>-0.4941251873970032</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 6 2 2 -1.</_>
-                <_>
-                  15 6 1 1 2.</_>
-                <_>
-                  14 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7100899387733079e-005</threshold>
-            <left_val>-0.0535624101758003</left_val>
-            <right_val>0.0771028995513916</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 6 2 2 -1.</_>
-                <_>
-                  2 6 1 1 2.</_>
-                <_>
-                  3 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.9839400162454695e-005</threshold>
-            <left_val>-0.0879170671105385</left_val>
-            <right_val>0.1276974976062775</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 6 2 2 -1.</_>
-                <_>
-                  15 6 1 1 2.</_>
-                <_>
-                  14 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5873789127217606e-005</threshold>
-            <left_val>0.0862401127815247</left_val>
-            <right_val>-0.0919469594955444</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 6 2 2 -1.</_>
-                <_>
-                  2 6 1 1 2.</_>
-                <_>
-                  3 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.5616321585839614e-005</threshold>
-            <left_val>0.1086385995149612</left_val>
-            <right_val>-0.0997067466378212</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 1 -1.</_>
-                <_>
-                  16 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.4546090755611658e-003</threshold>
-            <left_val>0.0336912795901299</left_val>
-            <right_val>-0.2599461078643799</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 5 -1.</_>
-                <_>
-                  7 0 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0304389707744122</threshold>
-            <left_val>0.3696292936801910</left_val>
-            <right_val>-0.0292082708328962</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 12 6 -1.</_>
-                <_>
-                  7 5 4 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.4395630061626434</threshold>
-            <left_val>-0.0230350792407990</left_val>
-            <right_val>0.4414143860340118</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 6 1 3 -1.</_>
-                <_>
-                  4 7 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.8688350691227242e-005</threshold>
-            <left_val>-0.1096998974680901</left_val>
-            <right_val>0.0987688973546028</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 7 2 6 -1.</_>
-                <_>
-                  13 9 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.4090819582343102e-003</threshold>
-            <left_val>-0.0491456389427185</left_val>
-            <right_val>0.1781875044107437</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 4 16 2 -1.</_>
-                <_>
-                  1 4 8 1 2.</_>
-                <_>
-                  9 5 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0149121098220348</threshold>
-            <left_val>-0.4213177859783173</left_val>
-            <right_val>0.0264007300138474</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 13 6 2 -1.</_>
-                <_>
-                  12 13 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0209064893424511</threshold>
-            <left_val>-0.2946732044219971</left_val>
-            <right_val>0.0150551898404956</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 7 2 2 -1.</_>
-                <_>
-                  3 7 1 1 2.</_>
-                <_>
-                  4 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.3503939852816984e-005</threshold>
-            <left_val>-0.0809751674532890</left_val>
-            <right_val>0.1256861984729767</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 7 2 2 -1.</_>
-                <_>
-                  9 8 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0656829690560699e-003</threshold>
-            <left_val>0.0537998713552952</left_val>
-            <right_val>-0.1491664946079254</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 4 4 4 -1.</_>
-                <_>
-                  7 4 2 2 2.</_>
-                <_>
-                  9 6 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0148796895518899</threshold>
-            <left_val>0.0201143808662891</left_val>
-            <right_val>-0.4714792966842651</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 13 6 2 -1.</_>
-                <_>
-                  12 13 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0184495002031326</threshold>
-            <left_val>0.0162126608192921</left_val>
-            <right_val>-0.2607092857360840</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 6 1 4 -1.</_>
-                <_>
-                  3 8 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1283960193395615e-003</threshold>
-            <left_val>-0.0618423111736774</left_val>
-            <right_val>0.1573618054389954</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 13 6 2 -1.</_>
-                <_>
-                  12 13 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0417683906853199</threshold>
-            <left_val>4.5171868987381458e-003</left_val>
-            <right_val>-0.5230177044868469</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 11 2 -1.</_>
-                <_>
-                  3 1 11 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.6589840203523636e-003</threshold>
-            <left_val>-0.2460370063781738</left_val>
-            <right_val>0.0389899984002113</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 6 2 -1.</_>
-                <_>
-                  6 1 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0121205700561404</threshold>
-            <left_val>0.0129689900204539</left_val>
-            <right_val>-0.6771157979965210</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 1 3 -1.</_>
-                <_>
-                  0 10 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1322788931429386e-003</threshold>
-            <left_val>0.0152305504307151</left_val>
-            <right_val>-0.5588334202766419</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 5 12 4 -1.</_>
-                <_>
-                  12 5 6 2 2.</_>
-                <_>
-                  6 7 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0852644816040993</threshold>
-            <left_val>1.7884389963001013e-003</left_val>
-            <right_val>-0.5704882144927979</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 12 4 -1.</_>
-                <_>
-                  0 5 6 2 2.</_>
-                <_>
-                  6 7 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0277299191802740</threshold>
-            <left_val>-0.0375315397977829</left_val>
-            <right_val>0.3102256953716278</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 3 4 2 -1.</_>
-                <_>
-                  10 3 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.1674780659377575e-003</threshold>
-            <left_val>-0.0953240767121315</left_val>
-            <right_val>0.0961099192500114</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 4 4 -1.</_>
-                <_>
-                  0 6 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0350565910339355</threshold>
-            <left_val>-0.3769027888774872</left_val>
-            <right_val>0.0244747009128332</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 8 2 1 -1.</_>
-                <_>
-                  16 8 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0171847604215145</threshold>
-            <left_val>-7.0347599685192108e-003</left_val>
-            <right_val>0.4858829975128174</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 8 1 2 -1.</_>
-                <_>
-                  2 8 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.7842839956283569e-003</threshold>
-            <left_val>0.0439080595970154</left_val>
-            <right_val>-0.2523730993270874</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 15 -1.</_>
-                <_>
-                  6 0 6 15 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.8206691741943359</threshold>
-            <left_val>0.0151718696579337</left_val>
-            <right_val>-0.5394846200942993</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 2 6 4 -1.</_>
-                <_>
-                  4 2 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0100911604240537</threshold>
-            <left_val>-0.0969208627939224</left_val>
-            <right_val>0.1118957996368408</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 2 2 13 -1.</_>
-                <_>
-                  13 2 1 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0160295106470585</threshold>
-            <left_val>-0.2344131022691727</left_val>
-            <right_val>0.0234555192291737</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 2 13 -1.</_>
-                <_>
-                  4 2 1 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0108496798202395</threshold>
-            <left_val>0.0441476404666901</left_val>
-            <right_val>-0.2696352899074554</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 1 -1.</_>
-                <_>
-                  16 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0130452997982502</threshold>
-            <left_val>2.2153200116008520e-003</left_val>
-            <right_val>-0.7978491783142090</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 3 3 -1.</_>
-                <_>
-                  4 1 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0112366396933794</threshold>
-            <left_val>-0.0430468209087849</left_val>
-            <right_val>0.2401491999626160</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 1 -1.</_>
-                <_>
-                  16 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-7.7543058432638645e-003</threshold>
-            <left_val>-0.3550145030021668</left_val>
-            <right_val>0.0110251400619745</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 1 2 -1.</_>
-                <_>
-                  2 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.3010800834745169e-003</threshold>
-            <left_val>0.0303408205509186</left_val>
-            <right_val>-0.3713628947734833</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 16 2 -1.</_>
-                <_>
-                  2 13 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5340842120349407e-003</threshold>
-            <left_val>-0.0858052521944046</left_val>
-            <right_val>0.0916388481855392</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 13 14 2 -1.</_>
-                <_>
-                  2 14 14 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0476196818053722</threshold>
-            <left_val>0.4086326956748962</left_val>
-            <right_val>-0.0264201592653990</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 1 2 -1.</_>
-                <_>
-                  16 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.8403937621042132e-004</threshold>
-            <left_val>-0.0323128588497639</left_val>
-            <right_val>0.0880808010697365</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 1 2 -1.</_>
-                <_>
-                  1 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.6149452070239931e-005</threshold>
-            <left_val>0.1152559965848923</left_val>
-            <right_val>-0.0890749320387840</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 2 2 -1.</_>
-                <_>
-                  16 0 1 1 2.</_>
-                <_>
-                  15 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4684870368218981e-005</threshold>
-            <left_val>-0.0609943717718124</left_val>
-            <right_val>0.0818466916680336</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 2 2 -1.</_>
-                <_>
-                  1 0 1 1 2.</_>
-                <_>
-                  2 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.2685357483569533e-005</threshold>
-            <left_val>0.1123972982168198</left_val>
-            <right_val>-0.0878406614065170</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 2 2 -1.</_>
-                <_>
-                  16 0 1 1 2.</_>
-                <_>
-                  15 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1181959861423820e-005</threshold>
-            <left_val>0.1241813972592354</left_val>
-            <right_val>-0.0961579829454422</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 1 4 -1.</_>
-                <_>
-                  3 1 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-8.0426130443811417e-003</threshold>
-            <left_val>-0.4060375988483429</left_val>
-            <right_val>0.0250931605696678</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 2 2 -1.</_>
-                <_>
-                  16 0 1 1 2.</_>
-                <_>
-                  15 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4684870368218981e-005</threshold>
-            <left_val>-0.0734931826591492</left_val>
-            <right_val>0.0902145579457283</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 2 2 -1.</_>
-                <_>
-                  1 0 1 1 2.</_>
-                <_>
-                  2 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0119768275180832e-005</threshold>
-            <left_val>-0.0829944536089897</left_val>
-            <right_val>0.1139464974403381</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 8 2 -1.</_>
-                <_>
-                  8 4 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.5925288042053580e-004</threshold>
-            <left_val>-0.0712060630321503</left_val>
-            <right_val>0.0428064316511154</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 1 3 -1.</_>
-                <_>
-                  6 1 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0211040973663330e-003</threshold>
-            <left_val>0.0255169607698917</left_val>
-            <right_val>-0.3551217019557953</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 6 4 4 -1.</_>
-                <_>
-                  10 6 2 2 2.</_>
-                <_>
-                  8 8 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0122425798326731</threshold>
-            <left_val>0.0187698900699615</left_val>
-            <right_val>-0.1980791985988617</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 1 7 6 -1.</_>
-                <_>
-                  5 3 7 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0142810503020883</threshold>
-            <left_val>0.1960750967264175</left_val>
-            <right_val>-0.0502470508217812</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 6 15 -1.</_>
-                <_>
-                  7 5 6 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.4095694124698639</threshold>
-            <left_val>0.0131073901429772</left_val>
-            <right_val>-0.7247236967086792</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 6 4 4 -1.</_>
-                <_>
-                  6 6 2 2 2.</_>
-                <_>
-                  8 8 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6600460842018947e-005</threshold>
-            <left_val>-0.0870764032006264</left_val>
-            <right_val>0.1110621020197868</right_val></_></_>
-        <_>
-          <!-- tree 135 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 6 2 2 -1.</_>
-                <_>
-                  8 7 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1234419653192163e-003</threshold>
-            <left_val>0.0774560794234276</left_val>
-            <right_val>-0.1328455954790115</right_val></_></_>
-        <_>
-          <!-- tree 136 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 2 1 -1.</_>
-                <_>
-                  7 7 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.6427060626447201e-003</threshold>
-            <left_val>0.0484460406005383</left_val>
-            <right_val>-0.2187103033065796</right_val></_></_>
-        <_>
-          <!-- tree 137 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 6 4 3 -1.</_>
-                <_>
-                  12 7 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0135915102437139</threshold>
-            <left_val>0.0825356394052505</left_val>
-            <right_val>-0.0227083601057529</right_val></_></_>
-        <_>
-          <!-- tree 138 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 6 3 4 -1.</_>
-                <_>
-                  6 7 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0115914195775986</threshold>
-            <left_val>-0.0487906895577908</left_val>
-            <right_val>0.1949059069156647</right_val></_></_>
-        <_>
-          <!-- tree 139 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 2 12 -1.</_>
-                <_>
-                  13 6 2 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1260856986045837</threshold>
-            <left_val>0.4181518852710724</left_val>
-            <right_val>-9.5796259120106697e-003</right_val></_></_>
-        <_>
-          <!-- tree 140 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 1 10 -1.</_>
-                <_>
-                  3 6 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0263312608003616</threshold>
-            <left_val>0.0167261492460966</left_val>
-            <right_val>-0.5749161243438721</right_val></_></_>
-        <_>
-          <!-- tree 141 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 3 1 8 -1.</_>
-                <_>
-                  8 5 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0410546697676182</threshold>
-            <left_val>-0.0108851799741387</left_val>
-            <right_val>0.3410010039806366</right_val></_></_>
-        <_>
-          <!-- tree 142 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 8 1 -1.</_>
-                <_>
-                  10 5 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0710404366254807</threshold>
-            <left_val>-0.0139168696478009</left_val>
-            <right_val>0.6054865121841431</right_val></_></_>
-        <_>
-          <!-- tree 143 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 18 2 -1.</_>
-                <_>
-                  9 3 9 1 2.</_>
-                <_>
-                  0 4 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0168137494474649</threshold>
-            <left_val>-0.4152989089488983</left_val>
-            <right_val>0.0231689400970936</right_val></_></_>
-        <_>
-          <!-- tree 144 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 3 4 -1.</_>
-                <_>
-                  5 2 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0169783309102058</threshold>
-            <left_val>0.2203284054994583</left_val>
-            <right_val>-0.0398988015949726</right_val></_></_>
-        <_>
-          <!-- tree 145 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 9 2 6 -1.</_>
-                <_>
-                  15 9 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.5234332547988743e-005</threshold>
-            <left_val>0.0811500027775764</left_val>
-            <right_val>-0.1343881934881210</right_val></_></_>
-        <_>
-          <!-- tree 146 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 9 2 6 -1.</_>
-                <_>
-                  2 9 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0171206202358007</threshold>
-            <left_val>-0.4246828854084015</left_val>
-            <right_val>0.0203172601759434</right_val></_></_>
-        <_>
-          <!-- tree 147 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 9 3 6 -1.</_>
-                <_>
-                  16 9 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0212412606924772</threshold>
-            <left_val>0.0140559002757072</left_val>
-            <right_val>-0.5432608127593994</right_val></_></_>
-        <_>
-          <!-- tree 148 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 12 14 3 -1.</_>
-                <_>
-                  1 13 14 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0468163415789604</threshold>
-            <left_val>0.3992395997047424</left_val>
-            <right_val>-0.0228534191846848</right_val></_></_>
-        <_>
-          <!-- tree 149 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 9 3 6 -1.</_>
-                <_>
-                  16 9 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0220952108502388</threshold>
-            <left_val>-0.4197512865066528</left_val>
-            <right_val>0.0116702402010560</right_val></_></_>
-        <_>
-          <!-- tree 150 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 9 12 -1.</_>
-                <_>
-                  0 6 9 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2213370054960251</threshold>
-            <left_val>0.0133688803762197</left_val>
-            <right_val>-0.5849164724349976</right_val></_></_>
-        <_>
-          <!-- tree 151 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 6 3 4 -1.</_>
-                <_>
-                  12 7 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.7718330062925816e-003</threshold>
-            <left_val>-0.0393010601401329</left_val>
-            <right_val>0.0762483775615692</right_val></_></_>
-        <_>
-          <!-- tree 152 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 6 4 3 -1.</_>
-                <_>
-                  6 7 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.2696389183402061e-003</threshold>
-            <left_val>-0.0408090092241764</left_val>
-            <right_val>0.2058036029338837</right_val></_></_>
-        <_>
-          <!-- tree 153 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 10 8 2 -1.</_>
-                <_>
-                  14 10 4 1 2.</_>
-                <_>
-                  10 11 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6822699690237641e-003</threshold>
-            <left_val>-0.0605597309768200</left_val>
-            <right_val>0.0894235521554947</right_val></_></_>
-        <_>
-          <!-- tree 154 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 6 3 3 -1.</_>
-                <_>
-                  8 7 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0152791002765298</threshold>
-            <left_val>-0.3989386856555939</left_val>
-            <right_val>0.0227994602173567</right_val></_></_>
-        <_>
-          <!-- tree 155 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 2 3 -1.</_>
-                <_>
-                  9 2 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.1749838963150978e-003</threshold>
-            <left_val>0.1322595030069351</left_val>
-            <right_val>-0.0460287705063820</right_val></_></_>
-        <_>
-          <!-- tree 156 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 4 4 -1.</_>
-                <_>
-                  8 1 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.8258180245757103e-003</threshold>
-            <left_val>-0.1063044965267181</left_val>
-            <right_val>0.0968753024935722</right_val></_></_>
-        <_>
-          <!-- tree 157 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 1 4 2 -1.</_>
-                <_>
-                  14 1 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.4384778195526451e-005</threshold>
-            <left_val>0.0512824915349483</left_val>
-            <right_val>-0.0842741429805756</right_val></_></_>
-        <_>
-          <!-- tree 158 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 3 4 -1.</_>
-                <_>
-                  5 3 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0145618002861738</threshold>
-            <left_val>-0.0433528609573841</left_val>
-            <right_val>0.1977739930152893</right_val></_></_>
-        <_>
-          <!-- tree 159 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 11 2 2 -1.</_>
-                <_>
-                  11 11 1 1 2.</_>
-                <_>
-                  10 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.3724558781832457e-004</threshold>
-            <left_val>-0.0508190095424652</left_val>
-            <right_val>0.1038798987865448</right_val></_></_>
-        <_>
-          <!-- tree 160 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 8 16 6 -1.</_>
-                <_>
-                  1 8 8 3 2.</_>
-                <_>
-                  9 11 8 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1090848967432976</threshold>
-            <left_val>-0.3327077925205231</left_val>
-            <right_val>0.0268289800733328</right_val></_></_>
-        <_>
-          <!-- tree 161 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 8 3 7 -1.</_>
-                <_>
-                  16 8 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.0241180947050452e-004</threshold>
-            <left_val>0.0761685222387314</left_val>
-            <right_val>-0.0645192116498947</right_val></_></_>
-        <_>
-          <!-- tree 162 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 3 7 -1.</_>
-                <_>
-                  1 8 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0156365707516670</threshold>
-            <left_val>-0.4480968117713928</left_val>
-            <right_val>0.0202762503176928</right_val></_></_>
-        <_>
-          <!-- tree 163 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 9 2 4 -1.</_>
-                <_>
-                  10 9 1 2 2.</_>
-                <_>
-                  9 11 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0118979997932911</threshold>
-            <left_val>-0.4953711926937103</left_val>
-            <right_val>4.4984170235693455e-003</right_val></_></_>
-        <_>
-          <!-- tree 164 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 9 2 4 -1.</_>
-                <_>
-                  7 9 1 2 2.</_>
-                <_>
-                  8 11 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5789919998496771e-003</threshold>
-            <left_val>0.1295803040266037</left_val>
-            <right_val>-0.0726606398820877</right_val></_></_>
-        <_>
-          <!-- tree 165 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 6 14 9 -1.</_>
-                <_>
-                  3 6 7 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.4996011853218079</threshold>
-            <left_val>-0.6673018932342529</left_val>
-            <right_val>7.9309539869427681e-003</right_val></_></_></trees>
-      <stage_threshold>-1.3140599727630615</stage_threshold>
-      <parent>10</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 12 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 5 3 6 -1.</_>
-                <_>
-                  6 7 3 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0789403170347214</threshold>
-            <left_val>0.3298887908458710</left_val>
-            <right_val>-0.1970188021659851</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 8 3 -1.</_>
-                <_>
-                  11 0 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0173211302608252</threshold>
-            <left_val>0.2198147028684616</left_val>
-            <right_val>-0.0811920836567879</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 8 2 -1.</_>
-                <_>
-                  7 3 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0123552503064275</threshold>
-            <left_val>-0.3098889887332916</left_val>
-            <right_val>0.1442392021417618</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 6 16 8 -1.</_>
-                <_>
-                  1 8 16 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1042677983641625</threshold>
-            <left_val>0.1562684029340744</left_val>
-            <right_val>-0.1835990995168686</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 7 14 8 -1.</_>
-                <_>
-                  2 7 7 4 2.</_>
-                <_>
-                  9 11 7 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0851838812232018</threshold>
-            <left_val>-0.2902274131774902</left_val>
-            <right_val>0.1274231970310211</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 7 4 6 -1.</_>
-                <_>
-                  9 9 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1335712969303131</threshold>
-            <left_val>-0.3019841909408569</left_val>
-            <right_val>-0.0168216507881880</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 6 3 9 -1.</_>
-                <_>
-                  5 9 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2229336053133011</threshold>
-            <left_val>0.0184083096683025</left_val>
-            <right_val>-916.7813110351562500</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 6 8 -1.</_>
-                <_>
-                  12 7 3 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0277230702340603</threshold>
-            <left_val>0.0996664837002754</left_val>
-            <right_val>-0.1188244000077248</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 9 4 -1.</_>
-                <_>
-                  12 5 3 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1818269938230515</threshold>
-            <left_val>-0.0572614409029484</left_val>
-            <right_val>0.4625281095504761</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 6 8 -1.</_>
-                <_>
-                  12 7 3 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0246847905218601</threshold>
-            <left_val>0.0688610523939133</left_val>
-            <right_val>-0.1928416937589645</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 7 3 4 -1.</_>
-                <_>
-                  4 9 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0138146495446563</threshold>
-            <left_val>-0.0780585184693336</left_val>
-            <right_val>0.3078015148639679</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 8 6 -1.</_>
-                <_>
-                  8 3 8 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0245245005935431</threshold>
-            <left_val>-0.2686735093593597</left_val>
-            <right_val>0.0682309865951538</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 1 -1.</_>
-                <_>
-                  6 0 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.0112771354615688e-003</threshold>
-            <left_val>-0.1854297965764999</left_val>
-            <right_val>0.1132294982671738</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 9 6 6 -1.</_>
-                <_>
-                  12 9 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1054819002747536</threshold>
-            <left_val>-0.3402459919452667</left_val>
-            <right_val>0.0109034497290850</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 6 6 -1.</_>
-                <_>
-                  3 9 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3391570001840591e-003</threshold>
-            <left_val>0.1041952967643738</left_val>
-            <right_val>-0.2051645964384079</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 1 3 14 -1.</_>
-                <_>
-                  15 8 3 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0789474770426750</threshold>
-            <left_val>0.0161181092262268</left_val>
-            <right_val>-0.4154053926467896</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 1 8 2 -1.</_>
-                <_>
-                  5 1 4 1 2.</_>
-                <_>
-                  9 2 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8509850166738033e-003</threshold>
-            <left_val>0.0488411597907543</left_val>
-            <right_val>-0.3838480114936829</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 12 5 -1.</_>
-                <_>
-                  8 0 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0458627305924892</threshold>
-            <left_val>-0.1582973003387451</left_val>
-            <right_val>0.1020084023475647</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 4 4 -1.</_>
-                <_>
-                  5 2 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0134294098243117</threshold>
-            <left_val>0.0545731112360954</left_val>
-            <right_val>-0.3658663928508759</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 2 3 -1.</_>
-                <_>
-                  12 0 1 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0191512107849121</threshold>
-            <left_val>0.0119114201515913</left_val>
-            <right_val>-0.4372132122516632</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 10 15 -1.</_>
-                <_>
-                  9 0 5 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2203599959611893</threshold>
-            <left_val>0.3832859992980957</left_val>
-            <right_val>-0.0577213913202286</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 12 3 -1.</_>
-                <_>
-                  8 0 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0423834510147572</threshold>
-            <left_val>-0.0653426200151443</left_val>
-            <right_val>0.0784513726830482</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 2 14 -1.</_>
-                <_>
-                  0 8 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0305247306823730</threshold>
-            <left_val>0.0496221706271172</left_val>
-            <right_val>-0.3494651019573212</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 4 8 4 -1.</_>
-                <_>
-                  5 6 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0195040404796600</threshold>
-            <left_val>-0.0683437287807465</left_val>
-            <right_val>0.2646135091781616</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 9 14 2 -1.</_>
-                <_>
-                  2 10 14 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.8469397053122520e-003</threshold>
-            <left_val>-0.0779279768466949</left_val>
-            <right_val>0.2089402973651886</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 2 -1.</_>
-                <_>
-                  0 10 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0321953706443310</threshold>
-            <left_val>0.2680011987686157</left_val>
-            <right_val>-0.0700547993183136</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 6 8 2 -1.</_>
-                <_>
-                  5 7 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.8907537758350372e-003</threshold>
-            <left_val>0.1219308972358704</left_val>
-            <right_val>-0.1397545933723450</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 5 3 3 -1.</_>
-                <_>
-                  11 6 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0164340194314718</threshold>
-            <left_val>0.0296364594250917</left_val>
-            <right_val>-0.2387409955263138</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 2 1 -1.</_>
-                <_>
-                  1 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.7646512838546187e-005</threshold>
-            <left_val>0.1085129007697105</left_val>
-            <right_val>-0.1371634006500244</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 4 2 -1.</_>
-                <_>
-                  13 1 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0145368697121739</threshold>
-            <left_val>-0.3846626877784729</left_val>
-            <right_val>0.0236762408167124</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 3 2 -1.</_>
-                <_>
-                  6 0 3 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0117109399288893</threshold>
-            <left_val>0.0416956692934036</left_val>
-            <right_val>-0.3195604085922241</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 5 3 3 -1.</_>
-                <_>
-                  11 6 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0116417696699500</threshold>
-            <left_val>-0.2868010997772217</left_val>
-            <right_val>0.0145577499642968</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 5 3 3 -1.</_>
-                <_>
-                  6 6 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0212982799857855</threshold>
-            <left_val>0.0255194008350372</left_val>
-            <right_val>-0.4896689057350159</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 3 1 -1.</_>
-                <_>
-                  11 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.2027969658374786e-003</threshold>
-            <left_val>-0.6225293874740601</left_val>
-            <right_val>8.7586138397455215e-003</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 13 10 2 -1.</_>
-                <_>
-                  4 14 10 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0201745200902224</threshold>
-            <left_val>0.3080742061138153</left_val>
-            <right_val>-0.0395388789474964</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 3 1 -1.</_>
-                <_>
-                  11 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0106579503044486</threshold>
-            <left_val>0.0104256300255656</left_val>
-            <right_val>-0.3719728887081146</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 12 14 2 -1.</_>
-                <_>
-                  1 13 14 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5577301643788815e-003</threshold>
-            <left_val>-0.1160800009965897</left_val>
-            <right_val>0.1050620973110199</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 5 4 6 -1.</_>
-                <_>
-                  8 7 4 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0598958581686020</threshold>
-            <left_val>-8.2911262288689613e-003</left_val>
-            <right_val>0.0757109001278877</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 5 6 4 -1.</_>
-                <_>
-                  10 7 2 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0925180464982986</threshold>
-            <left_val>-0.3972209990024567</left_val>
-            <right_val>0.0354158990085125</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 6 3 6 -1.</_>
-                <_>
-                  15 9 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.3780227899551392e-003</threshold>
-            <left_val>-0.0451698005199432</left_val>
-            <right_val>0.1016537994146347</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 8 3 2 -1.</_>
-                <_>
-                  7 9 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1006090100854635e-003</threshold>
-            <left_val>0.0736289173364639</left_val>
-            <right_val>-0.1836252957582474</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 8 14 2 -1.</_>
-                <_>
-                  2 9 14 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.4413066506385803e-003</threshold>
-            <left_val>-0.0506231300532818</left_val>
-            <right_val>0.2713204920291901</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 3 8 -1.</_>
-                <_>
-                  3 4 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0289131104946136</threshold>
-            <left_val>-0.2333088964223862</left_val>
-            <right_val>0.0561418682336807</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 18 8 -1.</_>
-                <_>
-                  9 1 9 4 2.</_>
-                <_>
-                  0 5 9 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0894289314746857</threshold>
-            <left_val>0.0421395003795624</left_val>
-            <right_val>-0.2966344952583313</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 7 -1.</_>
-                <_>
-                  7 0 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0222117304801941</threshold>
-            <left_val>0.3223718106746674</left_val>
-            <right_val>-0.0411601513624191</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 1 4 1 -1.</_>
-                <_>
-                  10 1 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.7851219531148672e-003</threshold>
-            <left_val>-0.0707370936870575</left_val>
-            <right_val>0.1099132969975472</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 10 2 -1.</_>
-                <_>
-                  2 0 10 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.3305174484848976e-003</threshold>
-            <left_val>-0.1936282962560654</left_val>
-            <right_val>0.0662610232830048</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 10 6 -1.</_>
-                <_>
-                  9 4 5 3 2.</_>
-                <_>
-                  4 7 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0234631896018982</threshold>
-            <left_val>-0.2286916971206665</left_val>
-            <right_val>0.0538989901542664</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 8 4 2 -1.</_>
-                <_>
-                  5 8 2 1 2.</_>
-                <_>
-                  7 9 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0604270501062274e-003</threshold>
-            <left_val>-0.0725375488400459</left_val>
-            <right_val>0.1586951017379761</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 6 3 6 -1.</_>
-                <_>
-                  15 9 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0659593567252159</threshold>
-            <left_val>5.6216111406683922e-003</left_val>
-            <right_val>-0.3923929035663605</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 4 16 6 -1.</_>
-                <_>
-                  1 6 16 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0548790097236633</threshold>
-            <left_val>0.2852548062801361</left_val>
-            <right_val>-0.0444187112152576</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 1 4 -1.</_>
-                <_>
-                  9 1 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4504090435802937e-003</threshold>
-            <left_val>0.0136751402169466</left_val>
-            <right_val>-0.4430586099624634</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 2 3 -1.</_>
-                <_>
-                  0 8 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.9733468592166901e-003</threshold>
-            <left_val>0.0208843499422073</left_val>
-            <right_val>-0.5048171281814575</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 5 3 3 -1.</_>
-                <_>
-                  14 6 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0184303596615791</threshold>
-            <left_val>-0.0379651300609112</left_val>
-            <right_val>0.2141716927289963</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 1 3 -1.</_>
-                <_>
-                  7 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.0115829110145569e-003</threshold>
-            <left_val>-0.3419860005378723</left_val>
-            <right_val>0.0299799200147390</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 1 12 3 -1.</_>
-                <_>
-                  9 1 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0407630987465382</threshold>
-            <left_val>0.2418240010738373</left_val>
-            <right_val>-0.0324762500822544</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 12 3 -1.</_>
-                <_>
-                  3 1 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0456319898366928</threshold>
-            <left_val>0.1947166025638580</left_val>
-            <right_val>-0.0898651406168938</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 5 3 3 -1.</_>
-                <_>
-                  14 6 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0130249597132206</threshold>
-            <left_val>0.1837466955184937</left_val>
-            <right_val>-0.0397638715803623</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 8 7 -1.</_>
-                <_>
-                  4 0 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0353647805750370</threshold>
-            <left_val>-0.0993380174040794</left_val>
-            <right_val>0.1346897035837174</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 4 4 6 -1.</_>
-                <_>
-                  14 4 4 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1877132058143616</threshold>
-            <left_val>0.0116381403058767</left_val>
-            <right_val>-0.3422963023185730</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 6 4 -1.</_>
-                <_>
-                  4 4 3 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-7.5244922190904617e-003</threshold>
-            <left_val>-0.2090182006359100</left_val>
-            <right_val>0.0642698332667351</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 10 8 -1.</_>
-                <_>
-                  4 3 10 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0345222912728786</threshold>
-            <left_val>0.3521693944931030</left_val>
-            <right_val>-0.0368988513946533</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 2 2 -1.</_>
-                <_>
-                  8 8 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1451860191300511e-003</threshold>
-            <left_val>0.0721520334482193</left_val>
-            <right_val>-0.2084126025438309</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 0 3 2 -1.</_>
-                <_>
-                  12 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0108127798885107</threshold>
-            <left_val>-0.3391103148460388</left_val>
-            <right_val>0.0102402996271849</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 2 3 -1.</_>
-                <_>
-                  6 1 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.4051618315279484e-003</threshold>
-            <left_val>0.0448350198566914</left_val>
-            <right_val>-0.2321110069751740</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 2 -1.</_>
-                <_>
-                  9 0 6 1 2.</_>
-                <_>
-                  3 1 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.1400611884891987e-003</threshold>
-            <left_val>-0.2683916091918945</left_val>
-            <right_val>0.0390401408076286</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 2 2 -1.</_>
-                <_>
-                  0 2 1 1 2.</_>
-                <_>
-                  1 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5988669221987948e-005</threshold>
-            <left_val>0.1104065030813217</left_val>
-            <right_val>-0.0973475277423859</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 1 3 3 -1.</_>
-                <_>
-                  14 2 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.7707603126764297e-003</threshold>
-            <left_val>0.1318017989397049</left_val>
-            <right_val>-0.0422173812985420</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 3 3 -1.</_>
-                <_>
-                  4 2 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0146375196054578</threshold>
-            <left_val>-0.0399371199309826</left_val>
-            <right_val>0.2667961120605469</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 14 4 -1.</_>
-                <_>
-                  9 0 7 2 2.</_>
-                <_>
-                  2 2 7 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0173694007098675</threshold>
-            <left_val>0.0430083684623241</left_val>
-            <right_val>-0.2683846950531006</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 1 3 6 -1.</_>
-                <_>
-                  7 2 1 6 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0207157004624605</threshold>
-            <left_val>-0.0441390685737133</left_val>
-            <right_val>0.2528851032257080</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 6 2 4 -1.</_>
-                <_>
-                  16 8 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.4260770082473755e-003</threshold>
-            <left_val>-0.0181482806801796</left_val>
-            <right_val>0.0637400820851326</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 2 4 -1.</_>
-                <_>
-                  0 8 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0218196604400873</threshold>
-            <left_val>-0.4530546069145203</left_val>
-            <right_val>0.0241426993161440</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 3 2 -1.</_>
-                <_>
-                  9 3 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8437709920108318e-003</threshold>
-            <left_val>0.0123435202986002</left_val>
-            <right_val>-0.1561755985021591</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 2 3 2 -1.</_>
-                <_>
-                  6 3 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.7822460979223251e-003</threshold>
-            <left_val>-0.3078184127807617</left_val>
-            <right_val>0.0338872000575066</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 4 4 -1.</_>
-                <_>
-                  14 0 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4766600215807557e-003</threshold>
-            <left_val>0.0376610010862350</left_val>
-            <right_val>-0.0371170900762081</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 4 4 -1.</_>
-                <_>
-                  2 0 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0203950908035040</threshold>
-            <left_val>0.0135211497545242</left_val>
-            <right_val>-0.7287003993988037</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 13 10 2 -1.</_>
-                <_>
-                  13 13 5 1 2.</_>
-                <_>
-                  8 14 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4377470361068845e-003</threshold>
-            <left_val>-0.0554642193019390</left_val>
-            <right_val>0.0552656501531601</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 3 3 -1.</_>
-                <_>
-                  5 5 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0298325493931770</threshold>
-            <left_val>0.4261128008365631</left_val>
-            <right_val>-0.0218381006270647</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 4 6 -1.</_>
-                <_>
-                  8 7 2 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0305558592081070</threshold>
-            <left_val>0.0176318995654583</left_val>
-            <right_val>-0.6095407009124756</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 8 2 -1.</_>
-                <_>
-                  9 3 4 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1229958981275559</threshold>
-            <left_val>-0.0266627203673124</left_val>
-            <right_val>0.3695833981037140</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 11 4 -1.</_>
-                <_>
-                  4 2 11 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0229585207998753</threshold>
-            <left_val>-0.4633212983608246</left_val>
-            <right_val>0.0184264499694109</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 12 4 3 -1.</_>
-                <_>
-                  5 12 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0132682900875807</threshold>
-            <left_val>-0.4380893111228943</left_val>
-            <right_val>0.0190128590911627</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 6 2 -1.</_>
-                <_>
-                  6 8 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0461827516555786</threshold>
-            <left_val>-0.7000507116317749</left_val>
-            <right_val>0.0115271303802729</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 6 -1.</_>
-                <_>
-                  0 11 18 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0263124592602253</threshold>
-            <left_val>-0.0715227574110031</left_val>
-            <right_val>0.1276880055665970</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 13 1 2 -1.</_>
-                <_>
-                  12 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.8344743340276182e-005</threshold>
-            <left_val>-0.0716612488031387</left_val>
-            <right_val>0.0649365931749344</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 5 1 8 -1.</_>
-                <_>
-                  8 5 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0374639108777046</threshold>
-            <left_val>-0.3165304958820343</left_val>
-            <right_val>0.0307877492159605</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 2 4 13 -1.</_>
-                <_>
-                  11 2 2 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0563586615025997</threshold>
-            <left_val>8.4295487031340599e-003</left_val>
-            <right_val>-0.6067206263542175</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 4 13 -1.</_>
-                <_>
-                  5 2 2 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.3837172240018845e-003</threshold>
-            <left_val>0.0977723896503448</left_val>
-            <right_val>-0.0991689264774323</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 3 3 -1.</_>
-                <_>
-                  12 9 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9623919544974342e-005</threshold>
-            <left_val>-0.0549541302025318</left_val>
-            <right_val>0.0757452771067619</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 10 4 -1.</_>
-                <_>
-                  5 0 10 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1653591990470886</threshold>
-            <left_val>0.0260911695659161</left_val>
-            <right_val>-0.3525250852108002</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 18 4 -1.</_>
-                <_>
-                  9 7 9 2 2.</_>
-                <_>
-                  0 9 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0830756202340126</threshold>
-            <left_val>-0.5360965728759766</left_val>
-            <right_val>0.0153222400695086</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 8 2 2 -1.</_>
-                <_>
-                  4 8 1 1 2.</_>
-                <_>
-                  5 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3314849929884076e-003</threshold>
-            <left_val>-0.0434926301240921</left_val>
-            <right_val>0.2146005928516388</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 8 3 -1.</_>
-                <_>
-                  9 0 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0240376498550177</threshold>
-            <left_val>0.3358427882194519</left_val>
-            <right_val>-0.0249130893498659</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 6 3 1 -1.</_>
-                <_>
-                  9 7 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.2097259797155857e-003</threshold>
-            <left_val>0.0491514205932617</left_val>
-            <right_val>-0.1990129053592682</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 3 14 8 -1.</_>
-                <_>
-                  2 5 14 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0736415982246399</threshold>
-            <left_val>-0.0872314572334290</left_val>
-            <right_val>0.1094933003187180</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 6 1 8 -1.</_>
-                <_>
-                  8 6 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0289185196161270</threshold>
-            <left_val>0.0510564483702183</left_val>
-            <right_val>-0.2057587951421738</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 4 4 -1.</_>
-                <_>
-                  11 9 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.7253550253808498e-003</threshold>
-            <left_val>-0.0367016084492207</left_val>
-            <right_val>0.1051134988665581</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 11 4 2 -1.</_>
-                <_>
-                  2 11 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.2107484340667725e-003</threshold>
-            <left_val>0.0238303001970053</left_val>
-            <right_val>-0.3580070137977600</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 8 4 2 -1.</_>
-                <_>
-                  12 8 2 1 2.</_>
-                <_>
-                  10 9 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.8392279744148254e-003</threshold>
-            <left_val>-0.0447077900171280</left_val>
-            <right_val>0.1189830973744392</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 3 3 -1.</_>
-                <_>
-                  8 8 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.8104080855846405e-003</threshold>
-            <left_val>-0.1684007942676544</left_val>
-            <right_val>0.0483481995761395</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 8 4 2 -1.</_>
-                <_>
-                  15 8 2 1 2.</_>
-                <_>
-                  13 9 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3966489136219025e-003</threshold>
-            <left_val>-0.0308044198900461</left_val>
-            <right_val>0.1346226930618286</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 8 4 2 -1.</_>
-                <_>
-                  1 8 2 1 2.</_>
-                <_>
-                  3 9 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.3915819949470460e-004</threshold>
-            <left_val>-0.0775286927819252</left_val>
-            <right_val>0.1130381003022194</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 3 10 12 -1.</_>
-                <_>
-                  5 3 5 12 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1835324019193649</threshold>
-            <left_val>0.0953205227851868</left_val>
-            <right_val>-0.0324969291687012</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 10 12 -1.</_>
-                <_>
-                  8 3 5 12 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.4486036896705627</threshold>
-            <left_val>0.0139211900532246</left_val>
-            <right_val>-0.7289006114006043</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 12 8 -1.</_>
-                <_>
-                  9 0 4 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0888018906116486</threshold>
-            <left_val>-0.0640209093689919</left_val>
-            <right_val>0.0364004485309124</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 12 8 -1.</_>
-                <_>
-                  5 0 4 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1080844029784203</threshold>
-            <left_val>-0.0643229931592941</left_val>
-            <right_val>0.1937687993049622</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 3 1 -1.</_>
-                <_>
-                  16 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.9059031084179878e-003</threshold>
-            <left_val>-0.3109242916107178</left_val>
-            <right_val>0.0205565802752972</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 2 2 -1.</_>
-                <_>
-                  9 0 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.5598949287086725e-003</threshold>
-            <left_val>-0.0915503427386284</left_val>
-            <right_val>0.0920273736119270</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 2 2 -1.</_>
-                <_>
-                  9 1 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.9356167437508702e-004</threshold>
-            <left_val>-0.0242713205516338</left_val>
-            <right_val>0.0657608583569527</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 2 2 -1.</_>
-                <_>
-                  9 1 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0153526701033115</threshold>
-            <left_val>0.0173107199370861</left_val>
-            <right_val>-0.4890041947364807</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 3 1 -1.</_>
-                <_>
-                  16 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.7035951912403107e-003</threshold>
-            <left_val>8.9735705405473709e-003</left_val>
-            <right_val>-0.4127190113067627</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 4 2 -1.</_>
-                <_>
-                  6 1 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1431730128824711e-003</threshold>
-            <left_val>-0.1955125033855438</left_val>
-            <right_val>0.0380251109600067</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 1 2 -1.</_>
-                <_>
-                  9 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3084579121787101e-005</threshold>
-            <left_val>0.0705076232552528</left_val>
-            <right_val>-0.0471289381384850</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 5 2 4 -1.</_>
-                <_>
-                  9 5 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0868036672472954</threshold>
-            <left_val>-0.0163518991321325</left_val>
-            <right_val>0.4782052040100098</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 8 6 4 -1.</_>
-                <_>
-                  11 8 3 2 2.</_>
-                <_>
-                  8 10 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0110789397731423</threshold>
-            <left_val>-0.0255244206637144</left_val>
-            <right_val>0.1099068000912666</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 1 3 -1.</_>
-                <_>
-                  2 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.1349938623607159e-003</threshold>
-            <left_val>-0.3572841882705689</left_val>
-            <right_val>0.0223970897495747</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 1 3 2 -1.</_>
-                <_>
-                  16 2 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.7654299996793270e-003</threshold>
-            <left_val>-0.0850082710385323</left_val>
-            <right_val>0.0223076492547989</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 2 3 -1.</_>
-                <_>
-                  2 2 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0122526502236724</threshold>
-            <left_val>0.0178576093167067</left_val>
-            <right_val>-0.4197686016559601</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 1 2 3 -1.</_>
-                <_>
-                  15 2 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0119714401662350</threshold>
-            <left_val>-0.0210712291300297</left_val>
-            <right_val>0.2378973066806793</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 3 2 -1.</_>
-                <_>
-                  3 2 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.2991201151162386e-003</threshold>
-            <left_val>-0.0615648999810219</left_val>
-            <right_val>0.1329257041215897</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 1 4 2 -1.</_>
-                <_>
-                  14 1 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0184490196406841</threshold>
-            <left_val>0.1429833024740219</left_val>
-            <right_val>-0.0252068098634481</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 2 4 -1.</_>
-                <_>
-                  4 1 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-7.4155619367957115e-003</threshold>
-            <left_val>0.1799412965774536</left_val>
-            <right_val>-0.0498336292803288</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 2 5 6 -1.</_>
-                <_>
-                  13 5 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0482065714895725</threshold>
-            <left_val>0.0272459890693426</left_val>
-            <right_val>-0.3813177943229675</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 1 2 -1.</_>
-                <_>
-                  2 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>1.1687170481309295e-003</threshold>
-            <left_val>0.0469573400914669</left_val>
-            <right_val>-0.1817303001880646</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 14 9 -1.</_>
-                <_>
-                  2 3 14 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1361666023731232</threshold>
-            <left_val>0.4079889953136444</left_val>
-            <right_val>-0.0224768593907356</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 1 2 -1.</_>
-                <_>
-                  2 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3739310563541949e-005</threshold>
-            <left_val>0.1014733985066414</left_val>
-            <right_val>-0.0845235288143158</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 2 5 6 -1.</_>
-                <_>
-                  13 5 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0767729580402374</threshold>
-            <left_val>6.4514591358602047e-003</left_val>
-            <right_val>-0.4604128003120422</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 8 9 -1.</_>
-                <_>
-                  2 0 4 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0634575635194778</threshold>
-            <left_val>-0.0202501695603132</left_val>
-            <right_val>0.3972662985324860</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 5 2 2 -1.</_>
-                <_>
-                  8 6 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.3444589935243130e-003</threshold>
-            <left_val>0.1526169925928116</left_val>
-            <right_val>-0.0526536405086517</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 8 5 -1.</_>
-                <_>
-                  11 2 4 5 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0572412200272083</threshold>
-            <left_val>-0.1344574987888336</left_val>
-            <right_val>0.0807463303208351</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 2 5 6 -1.</_>
-                <_>
-                  13 5 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0416314415633678</threshold>
-            <left_val>-0.1082227975130081</left_val>
-            <right_val>0.0224370695650578</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 5 6 -1.</_>
-                <_>
-                  0 5 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0149030797183514</threshold>
-            <left_val>0.0450070798397064</left_val>
-            <right_val>-0.2200184017419815</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 4 12 10 -1.</_>
-                <_>
-                  9 4 6 5 2.</_>
-                <_>
-                  3 9 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2230342030525208</threshold>
-            <left_val>0.0124958604574203</left_val>
-            <right_val>-0.6004509925842285</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 6 2 3 -1.</_>
-                <_>
-                  7 6 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0169060304760933</threshold>
-            <left_val>0.0127502698451281</left_val>
-            <right_val>-0.5323861837387085</right_val></_></_>
-        <_>
-          <!-- tree 135 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 1 6 6 -1.</_>
-                <_>
-                  13 3 2 6 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.2447734028100967</threshold>
-            <left_val>3.1138889025896788e-003</left_val>
-            <right_val>-0.5712805986404419</right_val></_></_>
-        <_>
-          <!-- tree 136 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 6 6 -1.</_>
-                <_>
-                  5 3 6 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1874004006385803</threshold>
-            <left_val>0.4374476075172424</left_val>
-            <right_val>-0.0196508895605803</right_val></_></_>
-        <_>
-          <!-- tree 137 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 4 1 6 -1.</_>
-                <_>
-                  13 6 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0131231546401978e-003</threshold>
-            <left_val>-0.0674036368727684</left_val>
-            <right_val>0.1013251990079880</right_val></_></_>
-        <_>
-          <!-- tree 138 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 1 2 -1.</_>
-                <_>
-                  8 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2101340107619762e-003</threshold>
-            <left_val>0.0345095582306385</left_val>
-            <right_val>-0.2193517982959747</right_val></_></_>
-        <_>
-          <!-- tree 139 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 13 6 2 -1.</_>
-                <_>
-                  13 13 3 1 2.</_>
-                <_>
-                  10 14 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0109212100505829</threshold>
-            <left_val>-0.1589787006378174</left_val>
-            <right_val>6.7669888958334923e-003</right_val></_></_>
-        <_>
-          <!-- tree 140 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 13 6 2 -1.</_>
-                <_>
-                  2 13 3 1 2.</_>
-                <_>
-                  5 14 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0091220028698444e-003</threshold>
-            <left_val>-0.0808166116476059</left_val>
-            <right_val>0.0902162864804268</right_val></_></_>
-        <_>
-          <!-- tree 141 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 12 9 3 -1.</_>
-                <_>
-                  8 12 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0791598334908485</threshold>
-            <left_val>-0.4955776035785675</left_val>
-            <right_val>9.0577276423573494e-003</right_val></_></_>
-        <_>
-          <!-- tree 142 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 14 12 1 -1.</_>
-                <_>
-                  5 14 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0231257900595665</threshold>
-            <left_val>0.0261550601571798</left_val>
-            <right_val>-0.2640474140644074</right_val></_></_>
-        <_>
-          <!-- tree 143 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 12 15 -1.</_>
-                <_>
-                  8 0 4 15 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2539966106414795</threshold>
-            <left_val>-0.0417557582259178</left_val>
-            <right_val>0.0842676386237144</right_val></_></_>
-        <_>
-          <!-- tree 144 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 8 14 -1.</_>
-                <_>
-                  5 0 4 14 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0413385704159737</threshold>
-            <left_val>-0.0543079786002636</left_val>
-            <right_val>0.1632328033447266</right_val></_></_>
-        <_>
-          <!-- tree 145 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 10 8 4 -1.</_>
-                <_>
-                  14 10 4 2 2.</_>
-                <_>
-                  10 12 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.9801427200436592e-003</threshold>
-            <left_val>-0.0563799887895584</left_val>
-            <right_val>0.0850874036550522</right_val></_></_>
-        <_>
-          <!-- tree 146 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 12 5 -1.</_>
-                <_>
-                  6 0 4 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0221821498125792</threshold>
-            <left_val>0.1568063944578171</left_val>
-            <right_val>-0.0526730790734291</right_val></_></_>
-        <_>
-          <!-- tree 147 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 2 1 -1.</_>
-                <_>
-                  12 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.8383043475914747e-005</threshold>
-            <left_val>-0.1125876978039742</left_val>
-            <right_val>0.0710221901535988</right_val></_></_>
-        <_>
-          <!-- tree 148 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 1 2 -1.</_>
-                <_>
-                  6 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.0613721832633018e-003</threshold>
-            <left_val>-0.3759906888008118</left_val>
-            <right_val>0.0229838006198406</right_val></_></_>
-        <_>
-          <!-- tree 149 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 5 2 8 -1.</_>
-                <_>
-                  12 5 1 8 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0636510029435158</threshold>
-            <left_val>4.1155992075800896e-003</left_val>
-            <right_val>-0.4183712899684906</right_val></_></_>
-        <_>
-          <!-- tree 150 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 5 8 2 -1.</_>
-                <_>
-                  6 5 8 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0198200307786465</threshold>
-            <left_val>-0.0826675072312355</left_val>
-            <right_val>0.0975382328033447</right_val></_></_>
-        <_>
-          <!-- tree 151 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 2 2 -1.</_>
-                <_>
-                  13 7 1 1 2.</_>
-                <_>
-                  12 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2445739703252912e-003</threshold>
-            <left_val>-0.0334467291831970</left_val>
-            <right_val>0.1453846991062164</right_val></_></_>
-        <_>
-          <!-- tree 152 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 4 14 4 -1.</_>
-                <_>
-                  2 6 14 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1117865964770317</threshold>
-            <left_val>0.2502450942993164</left_val>
-            <right_val>-0.0353329405188560</right_val></_></_>
-        <_>
-          <!-- tree 153 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 2 2 -1.</_>
-                <_>
-                  13 7 1 1 2.</_>
-                <_>
-                  12 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4203520733863115e-003</threshold>
-            <left_val>0.1733037978410721</left_val>
-            <right_val>-0.0227931998670101</right_val></_></_>
-        <_>
-          <!-- tree 154 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 7 2 2 -1.</_>
-                <_>
-                  4 7 1 1 2.</_>
-                <_>
-                  5 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2127320223953575e-004</threshold>
-            <left_val>-0.0742904022336006</left_val>
-            <right_val>0.1193578988313675</right_val></_></_>
-        <_>
-          <!-- tree 155 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 5 1 4 -1.</_>
-                <_>
-                  12 6 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.6516663432121277e-003</threshold>
-            <left_val>0.0119632603600621</left_val>
-            <right_val>-0.2848285138607025</right_val></_></_>
-        <_>
-          <!-- tree 156 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 5 1 4 -1.</_>
-                <_>
-                  5 6 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5779709176276810e-005</threshold>
-            <left_val>-0.1187881007790566</left_val>
-            <right_val>0.0836797133088112</right_val></_></_>
-        <_>
-          <!-- tree 157 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 3 2 -1.</_>
-                <_>
-                  13 8 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.6892090253531933e-003</threshold>
-            <left_val>-0.0259499493986368</left_val>
-            <right_val>0.0986363664269447</right_val></_></_>
-        <_>
-          <!-- tree 158 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 9 6 4 -1.</_>
-                <_>
-                  3 9 3 2 2.</_>
-                <_>
-                  6 11 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.3373341001570225e-003</threshold>
-            <left_val>-0.0568680502474308</left_val>
-            <right_val>0.1380600035190582</right_val></_></_>
-        <_>
-          <!-- tree 159 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 12 6 1 -1.</_>
-                <_>
-                  9 12 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.8734410665929317e-003</threshold>
-            <left_val>0.0774335265159607</left_val>
-            <right_val>-0.0352366790175438</right_val></_></_>
-        <_>
-          <!-- tree 160 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 3 4 1 -1.</_>
-                <_>
-                  8 3 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.4124629716388881e-005</threshold>
-            <left_val>-0.1245692968368530</left_val>
-            <right_val>0.0716082230210304</right_val></_></_>
-        <_>
-          <!-- tree 161 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 13 8 2 -1.</_>
-                <_>
-                  6 13 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0303157493472099</threshold>
-            <left_val>-0.1957962065935135</left_val>
-            <right_val>0.0308573506772518</right_val></_></_>
-        <_>
-          <!-- tree 162 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 6 2 -1.</_>
-                <_>
-                  9 0 3 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0350410714745522</threshold>
-            <left_val>0.1788015067577362</left_val>
-            <right_val>-0.0489667803049088</right_val></_></_>
-        <_>
-          <!-- tree 163 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 11 10 4 -1.</_>
-                <_>
-                  7 11 5 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0419709086418152</threshold>
-            <left_val>-0.0401918590068817</left_val>
-            <right_val>0.1294634044170380</right_val></_></_>
-        <_>
-          <!-- tree 164 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 11 15 4 -1.</_>
-                <_>
-                  6 11 5 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0408818498253822</threshold>
-            <left_val>0.1301825046539307</left_val>
-            <right_val>-0.0782763436436653</right_val></_></_>
-        <_>
-          <!-- tree 165 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 6 4 -1.</_>
-                <_>
-                  7 1 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2412762306630611e-003</threshold>
-            <left_val>-0.1829565018415451</left_val>
-            <right_val>0.0371690504252911</right_val></_></_>
-        <_>
-          <!-- tree 166 -->
-          <_>
-            <!-- 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>5.0555911002447829e-005</threshold>
-            <left_val>-0.0837283581495285</left_val>
-            <right_val>0.0939808636903763</right_val></_></_>
-        <_>
-          <!-- tree 167 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 10 3 2 -1.</_>
-                <_>
-                  9 10 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0165926907211542</threshold>
-            <left_val>5.7793757878243923e-003</left_val>
-            <right_val>-0.8148245811462402</right_val></_></_>
-        <_>
-          <!-- tree 168 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 2 3 -1.</_>
-                <_>
-                  0 9 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.3152369111776352e-003</threshold>
-            <left_val>0.0213363692164421</left_val>
-            <right_val>-0.3248454928398132</right_val></_></_>
-        <_>
-          <!-- tree 169 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 4 4 -1.</_>
-                <_>
-                  11 9 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0568882115185261</threshold>
-            <left_val>-0.4159530103206635</left_val>
-            <right_val>3.6880860570818186e-003</right_val></_></_>
-        <_>
-          <!-- tree 170 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 8 4 4 -1.</_>
-                <_>
-                  3 9 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4150490537285805e-003</threshold>
-            <left_val>-0.0535964109003544</left_val>
-            <right_val>0.1404040008783341</right_val></_></_>
-        <_>
-          <!-- tree 171 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 7 16 2 -1.</_>
-                <_>
-                  6 7 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1477995961904526</threshold>
-            <left_val>4.9799410626292229e-003</left_val>
-            <right_val>-0.6226087212562561</right_val></_></_>
-        <_>
-          <!-- tree 172 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 16 2 -1.</_>
-                <_>
-                  4 7 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0695117115974426</threshold>
-            <left_val>-0.4330480098724365</left_val>
-            <right_val>0.0189262200146914</right_val></_></_>
-        <_>
-          <!-- tree 173 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 10 4 2 -1.</_>
-                <_>
-                  14 10 2 1 2.</_>
-                <_>
-                  12 11 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6076939646154642e-003</threshold>
-            <left_val>-0.0367941483855248</left_val>
-            <right_val>0.0683272704482079</right_val></_></_>
-        <_>
-          <!-- tree 174 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 10 4 2 -1.</_>
-                <_>
-                  2 10 2 1 2.</_>
-                <_>
-                  4 11 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5456780092790723e-003</threshold>
-            <left_val>-0.0668036863207817</left_val>
-            <right_val>0.1335151940584183</right_val></_></_>
-        <_>
-          <!-- tree 175 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 9 2 3 -1.</_>
-                <_>
-                  16 10 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0159673895686865</threshold>
-            <left_val>6.9505311548709869e-003</left_val>
-            <right_val>-0.4713656008243561</right_val></_></_>
-        <_>
-          <!-- tree 176 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 4 6 9 -1.</_>
-                <_>
-                  8 7 2 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2871150970458984</threshold>
-            <left_val>-0.0153487697243690</left_val>
-            <right_val>0.4745875895023346</right_val></_></_>
-        <_>
-          <!-- tree 177 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 4 15 -1.</_>
-                <_>
-                  8 5 4 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3409349918365479</threshold>
-            <left_val>5.4452791810035706e-003</left_val>
-            <right_val>-0.7917565107345581</right_val></_></_>
-        <_>
-          <!-- tree 178 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 2 3 -1.</_>
-                <_>
-                  8 8 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.6727129742503166e-003</threshold>
-            <left_val>0.0294574107974768</left_val>
-            <right_val>-0.2547746896743774</right_val></_></_>
-        <_>
-          <!-- tree 179 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 1 7 2 -1.</_>
-                <_>
-                  6 2 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6719029992818832e-003</threshold>
-            <left_val>-0.1707005947828293</left_val>
-            <right_val>0.0357673391699791</right_val></_></_>
-        <_>
-          <!-- tree 180 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 6 2 -1.</_>
-                <_>
-                  0 7 3 1 2.</_>
-                <_>
-                  3 8 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.2617820911109447e-003</threshold>
-            <left_val>-0.0336550511419773</left_val>
-            <right_val>0.2133263945579529</right_val></_></_>
-        <_>
-          <!-- tree 181 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 3 5 3 -1.</_>
-                <_>
-                  11 4 5 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.1078894436359406e-003</threshold>
-            <left_val>0.0301098693162203</left_val>
-            <right_val>-0.0460237488150597</right_val></_></_>
-        <_>
-          <!-- tree 182 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 3 3 5 -1.</_>
-                <_>
-                  7 4 1 5 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0167319998145103</threshold>
-            <left_val>-0.0437199696898460</left_val>
-            <right_val>0.1943642944097519</right_val></_></_>
-        <_>
-          <!-- tree 183 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 8 4 3 -1.</_>
-                <_>
-                  7 9 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0191528107970953</threshold>
-            <left_val>0.0174971204251051</left_val>
-            <right_val>-0.4282760024070740</right_val></_></_>
-        <_>
-          <!-- tree 184 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 6 14 -1.</_>
-                <_>
-                  2 1 3 7 2.</_>
-                <_>
-                  5 8 3 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1417188942432404</threshold>
-            <left_val>-0.3899391889572144</left_val>
-            <right_val>0.0170895904302597</right_val></_></_>
-        <_>
-          <!-- tree 185 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 1 8 9 -1.</_>
-                <_>
-                  10 1 4 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.8122260011732578e-003</threshold>
-            <left_val>-0.1158609017729759</left_val>
-            <right_val>0.0506625697016716</right_val></_></_>
-        <_>
-          <!-- tree 186 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 4 4 -1.</_>
-                <_>
-                  8 7 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0170307997614145</threshold>
-            <left_val>-0.5399131178855896</left_val>
-            <right_val>0.0119414301589131</right_val></_></_>
-        <_>
-          <!-- tree 187 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 9 2 4 -1.</_>
-                <_>
-                  10 9 1 2 2.</_>
-                <_>
-                  9 11 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.8250916451215744e-003</threshold>
-            <left_val>-0.3324021995067596</left_val>
-            <right_val>8.3178747445344925e-003</right_val></_></_>
-        <_>
-          <!-- tree 188 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 9 4 2 -1.</_>
-                <_>
-                  3 9 2 1 2.</_>
-                <_>
-                  5 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.9308991767466068e-003</threshold>
-            <left_val>0.2211183011531830</left_val>
-            <right_val>-0.0314335711300373</right_val></_></_>
-        <_>
-          <!-- tree 189 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 9 2 3 -1.</_>
-                <_>
-                  16 10 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.7457819562405348e-003</threshold>
-            <left_val>-0.1030357033014298</left_val>
-            <right_val>0.0240999702364206</right_val></_></_>
-        <_>
-          <!-- tree 190 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 2 3 -1.</_>
-                <_>
-                  0 10 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8495861701667309e-003</threshold>
-            <left_val>0.0257306694984436</left_val>
-            <right_val>-0.2665663063526154</right_val></_></_>
-        <_>
-          <!-- tree 191 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 16 9 -1.</_>
-                <_>
-                  6 0 8 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3076910078525543</threshold>
-            <left_val>0.0261018890887499</left_val>
-            <right_val>-0.1869533061981201</right_val></_></_>
-        <_>
-          <!-- tree 192 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 1 8 4 -1.</_>
-                <_>
-                  5 1 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0117959501221776</threshold>
-            <left_val>-0.1118796989321709</left_val>
-            <right_val>0.0688933432102203</right_val></_></_>
-        <_>
-          <!-- tree 193 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 2 6 -1.</_>
-                <_>
-                  7 5 2 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1020568981766701</threshold>
-            <left_val>0.1641097962856293</left_val>
-            <right_val>-3.9911000058054924e-003</right_val></_></_>
-        <_>
-          <!-- tree 194 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 6 2 -1.</_>
-                <_>
-                  11 5 2 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1050693020224571</threshold>
-            <left_val>-0.0170984808355570</left_val>
-            <right_val>0.4288966059684753</right_val></_></_>
-        <_>
-          <!-- tree 195 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 1 2 2 -1.</_>
-                <_>
-                  15 1 1 1 2.</_>
-                <_>
-                  14 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8301670176442713e-005</threshold>
-            <left_val>-0.0416239388287067</left_val>
-            <right_val>0.0495718717575073</right_val></_></_>
-        <_>
-          <!-- tree 196 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 3 3 2 -1.</_>
-                <_>
-                  3 4 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.2682799026370049e-003</threshold>
-            <left_val>-0.0688075497746468</left_val>
-            <right_val>0.1021673977375031</right_val></_></_>
-        <_>
-          <!-- tree 197 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 2 2 -1.</_>
-                <_>
-                  15 0 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.0366461984813213e-003</threshold>
-            <left_val>-0.1738830953836441</left_val>
-            <right_val>0.0198664106428623</right_val></_></_>
-        <_>
-          <!-- tree 198 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 2 2 -1.</_>
-                <_>
-                  3 0 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.9747680313885212e-003</threshold>
-            <left_val>0.0331093408167362</left_val>
-            <right_val>-0.2326231002807617</right_val></_></_>
-        <_>
-          <!-- tree 199 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 1 8 -1.</_>
-                <_>
-                  8 2 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0342620797455311</threshold>
-            <left_val>-0.2156396061182022</left_val>
-            <right_val>0.0115074804052711</right_val></_></_></trees>
-      <stage_threshold>-1.2872380018234253</stage_threshold>
-      <parent>11</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 13 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 12 8 -1.</_>
-                <_>
-                  3 4 12 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0882937535643578</threshold>
-            <left_val>-0.2489404976367950</left_val>
-            <right_val>0.2646526992321014</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 9 2 -1.</_>
-                <_>
-                  11 0 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0165174994617701</threshold>
-            <left_val>0.1308764964342117</left_val>
-            <right_val>-0.0483017005026340</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 5 9 6 -1.</_>
-                <_>
-                  4 8 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2429573982954025</threshold>
-            <left_val>2.4608039529994130e-004</left_val>
-            <right_val>-1.2118969726562500e+003</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 9 2 -1.</_>
-                <_>
-                  11 0 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0178556293249130</threshold>
-            <left_val>-0.0218822807073593</left_val>
-            <right_val>0.0629134327173233</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 9 2 -1.</_>
-                <_>
-                  4 0 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0112768700346351</threshold>
-            <left_val>0.1816959977149963</left_val>
-            <right_val>-0.2307166010141373</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 8 4 -1.</_>
-                <_>
-                  7 2 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0232120305299759</threshold>
-            <left_val>0.1088896989822388</left_val>
-            <right_val>-0.2810558974742889</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 6 3 3 -1.</_>
-                <_>
-                  6 7 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0334626212716103</threshold>
-            <left_val>0.4264681041240692</left_val>
-            <right_val>-0.1128323003649712</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 14 6 -1.</_>
-                <_>
-                  9 0 7 3 2.</_>
-                <_>
-                  2 3 7 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0309944301843643</threshold>
-            <left_val>0.0578055083751678</left_val>
-            <right_val>-0.3916975855827332</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 4 14 -1.</_>
-                <_>
-                  0 7 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1508056074380875</threshold>
-            <left_val>-0.4463602006435394</left_val>
-            <right_val>0.0689948424696922</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 18 10 -1.</_>
-                <_>
-                  9 5 9 5 2.</_>
-                <_>
-                  0 10 9 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1966764926910400</threshold>
-            <left_val>0.0504155196249485</left_val>
-            <right_val>-0.5162950158119202</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 7 1 3 -1.</_>
-                <_>
-                  5 8 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2066079545766115e-003</threshold>
-            <left_val>-0.0707260966300964</left_val>
-            <right_val>0.2782576084136963</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 5 12 4 -1.</_>
-                <_>
-                  3 7 12 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1075704991817474</threshold>
-            <left_val>0.2446808069944382</left_val>
-            <right_val>-0.0725844725966454</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 5 14 6 -1.</_>
-                <_>
-                  2 7 14 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0601789988577366</threshold>
-            <left_val>-0.0937738493084908</left_val>
-            <right_val>0.2090716958045960</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 2 6 6 -1.</_>
-                <_>
-                  11 5 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0721643567085266</threshold>
-            <left_val>0.0246197003871202</left_val>
-            <right_val>-0.3774946033954620</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 2 2 -1.</_>
-                <_>
-                  6 1 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.8397889798507094e-003</threshold>
-            <left_val>-0.3659551143646240</left_val>
-            <right_val>0.0356928594410419</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 1 -1.</_>
-                <_>
-                  16 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.3323359675705433e-003</threshold>
-            <left_val>0.0274193398654461</left_val>
-            <right_val>-0.2183060944080353</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 9 15 -1.</_>
-                <_>
-                  3 5 3 5 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2554239928722382</threshold>
-            <left_val>0.0424718111753464</left_val>
-            <right_val>-0.4045555889606476</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 8 5 3 -1.</_>
-                <_>
-                  10 9 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.3238910883665085e-003</threshold>
-            <left_val>-0.0382980890572071</left_val>
-            <right_val>0.1997260004281998</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 3 4 -1.</_>
-                <_>
-                  6 1 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.6837169900536537e-003</threshold>
-            <left_val>0.0516507886350155</left_val>
-            <right_val>-0.3148872852325440</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 9 8 6 -1.</_>
-                <_>
-                  7 9 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1580109000205994</threshold>
-            <left_val>7.9839415848255157e-003</left_val>
-            <right_val>-0.6459161043167114</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 9 8 5 -1.</_>
-                <_>
-                  8 9 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1195484027266502</threshold>
-            <left_val>0.0303646996617317</left_val>
-            <right_val>-0.4835926890373230</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 1 2 1 -1.</_>
-                <_>
-                  16 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.1479396612849087e-005</threshold>
-            <left_val>0.0919145867228508</left_val>
-            <right_val>-0.1064620986580849</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 1 2 -1.</_>
-                <_>
-                  2 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.5267980527132750e-003</threshold>
-            <left_val>0.0452573001384735</left_val>
-            <right_val>-0.3438262939453125</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 6 8 -1.</_>
-                <_>
-                  11 2 2 8 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1789875030517578</threshold>
-            <left_val>0.0144175197929144</left_val>
-            <right_val>-0.5026544928550720</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 8 1 6 -1.</_>
-                <_>
-                  9 8 1 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0395551882684231</threshold>
-            <left_val>-0.3588069081306458</left_val>
-            <right_val>0.0342500805854797</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 18 2 -1.</_>
-                <_>
-                  0 11 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.6789730228483677e-003</threshold>
-            <left_val>-0.1114436984062195</left_val>
-            <right_val>0.1351636946201325</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 8 5 3 -1.</_>
-                <_>
-                  3 9 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0105727799236774</threshold>
-            <left_val>-0.0437579788267612</left_val>
-            <right_val>0.3159857988357544</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 1 16 4 -1.</_>
-                <_>
-                  5 1 8 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0357067584991455</threshold>
-            <left_val>-0.1592438071966171</left_val>
-            <right_val>0.0833674669265747</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 6 2 -1.</_>
-                <_>
-                  9 0 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0151766203343868</threshold>
-            <left_val>-0.1096644029021263</left_val>
-            <right_val>0.1435447037220001</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 4 4 7 -1.</_>
-                <_>
-                  15 5 2 7 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0519099794328213</threshold>
-            <left_val>0.1371318995952606</left_val>
-            <right_val>-0.0289334002882242</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 7 4 -1.</_>
-                <_>
-                  3 5 7 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0249809008091688</threshold>
-            <left_val>0.1281910985708237</left_val>
-            <right_val>-0.1016400977969170</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 2 6 2 -1.</_>
-                <_>
-                  8 3 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1697930321097374e-003</threshold>
-            <left_val>0.0397001393139362</left_val>
-            <right_val>-0.1693688929080963</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 10 2 -1.</_>
-                <_>
-                  4 2 5 1 2.</_>
-                <_>
-                  9 3 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.7851498238742352e-003</threshold>
-            <left_val>-0.2804721891880035</left_val>
-            <right_val>0.0424798987805843</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 11 2 2 -1.</_>
-                <_>
-                  16 11 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0114343902096152</threshold>
-            <left_val>-0.3007369041442871</left_val>
-            <right_val>0.0279115606099367</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 14 3 -1.</_>
-                <_>
-                  2 13 14 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0310384295880795</threshold>
-            <left_val>-0.0384156294167042</left_val>
-            <right_val>0.3191024065017700</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 12 2 2 -1.</_>
-                <_>
-                  16 12 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9539990462362766e-003</threshold>
-            <left_val>0.0490082204341888</left_val>
-            <right_val>-0.2434009015560150</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 12 2 2 -1.</_>
-                <_>
-                  1 12 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5783209819346666e-003</threshold>
-            <left_val>0.0490619093179703</left_val>
-            <right_val>-0.2172895967960358</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 7 6 6 -1.</_>
-                <_>
-                  12 9 2 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1410228013992310</threshold>
-            <left_val>0.1238534972071648</left_val>
-            <right_val>-0.0194560904055834</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 7 6 6 -1.</_>
-                <_>
-                  4 9 2 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0257594697177410</threshold>
-            <left_val>-0.0577305890619755</left_val>
-            <right_val>0.2235246002674103</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 5 1 9 -1.</_>
-                <_>
-                  8 8 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1394301950931549</threshold>
-            <left_val>-0.4331279098987579</left_val>
-            <right_val>5.1124738529324532e-003</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 18 4 -1.</_>
-                <_>
-                  0 5 9 2 2.</_>
-                <_>
-                  9 7 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0970044583082199</threshold>
-            <left_val>-0.5865799188613892</left_val>
-            <right_val>0.0171818397939205</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 3 1 3 -1.</_>
-                <_>
-                  16 4 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.5027927309274673e-003</threshold>
-            <left_val>-0.0287947598844767</left_val>
-            <right_val>0.2973892986774445</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 5 6 4 -1.</_>
-                <_>
-                  4 5 3 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0262469295412302</threshold>
-            <left_val>-0.2123412042856216</left_val>
-            <right_val>0.0494075715541840</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 13 6 2 -1.</_>
-                <_>
-                  13 13 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0285178907215595</threshold>
-            <left_val>-0.4101974964141846</left_val>
-            <right_val>0.0107241403311491</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 3 3 1 -1.</_>
-                <_>
-                  2 4 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-7.9501066356897354e-003</threshold>
-            <left_val>0.2974866032600403</left_val>
-            <right_val>-0.0357652083039284</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 18 4 -1.</_>
-                <_>
-                  9 1 9 2 2.</_>
-                <_>
-                  0 3 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0294742994010448</threshold>
-            <left_val>-0.2744587957859039</left_val>
-            <right_val>0.0378581508994102</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 13 6 2 -1.</_>
-                <_>
-                  3 13 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0197004098445177</threshold>
-            <left_val>-0.3731251060962677</left_val>
-            <right_val>0.0246061906218529</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 5 1 9 -1.</_>
-                <_>
-                  8 8 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0202972404658794</threshold>
-            <left_val>-0.0114561002701521</left_val>
-            <right_val>0.1300147026777268</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 5 9 1 -1.</_>
-                <_>
-                  10 8 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0733654201030731</threshold>
-            <left_val>-0.3339675962924957</left_val>
-            <right_val>0.0288594998419285</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 9 16 2 -1.</_>
-                <_>
-                  1 10 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.3272351399064064e-003</threshold>
-            <left_val>-0.0767316669225693</left_val>
-            <right_val>0.1508390009403229</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 7 16 8 -1.</_>
-                <_>
-                  1 9 16 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1366160064935684</threshold>
-            <left_val>0.1624336987733841</left_val>
-            <right_val>-0.0956437736749649</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 2 -1.</_>
-                <_>
-                  15 1 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0107580302283168</threshold>
-            <left_val>-0.2373815029859543</left_val>
-            <right_val>0.0315589606761932</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 11 2 -1.</_>
-                <_>
-                  3 1 11 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0666851326823235</threshold>
-            <left_val>0.0154138403013349</left_val>
-            <right_val>-0.6251338124275208</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 3 9 6 -1.</_>
-                <_>
-                  8 5 3 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3032520115375519</threshold>
-            <left_val>-0.0291348807513714</left_val>
-            <right_val>0.3611342906951904</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 2 4 -1.</_>
-                <_>
-                  5 1 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0158231593668461</threshold>
-            <left_val>-0.4098587930202484</left_val>
-            <right_val>0.0231184493750334</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 2 3 3 -1.</_>
-                <_>
-                  14 3 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0253745596855879</threshold>
-            <left_val>-0.0204721000045538</left_val>
-            <right_val>0.2705202996730804</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 3 3 -1.</_>
-                <_>
-                  4 3 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0163469407707453</threshold>
-            <left_val>-0.0353308208286762</left_val>
-            <right_val>0.2803629040718079</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 3 4 2 -1.</_>
-                <_>
-                  10 3 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4061360638588667e-003</threshold>
-            <left_val>-0.1116679012775421</left_val>
-            <right_val>0.0920868366956711</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 12 6 -1.</_>
-                <_>
-                  9 1 6 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2318589985370636</threshold>
-            <left_val>-0.0533741116523743</left_val>
-            <right_val>0.2265139967203140</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 5 4 6 -1.</_>
-                <_>
-                  9 5 2 3 2.</_>
-                <_>
-                  7 8 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.7358150631189346e-003</threshold>
-            <left_val>0.0622405707836151</left_val>
-            <right_val>-0.1609788984060288</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 6 12 6 -1.</_>
-                <_>
-                  3 6 6 3 2.</_>
-                <_>
-                  9 9 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0479816384613514</threshold>
-            <left_val>0.0325308404862881</left_val>
-            <right_val>-0.2702659070491791</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 4 4 6 -1.</_>
-                <_>
-                  7 7 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0325526595115662</threshold>
-            <left_val>-0.0267996098846197</left_val>
-            <right_val>0.3613330125808716</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 6 2 2 -1.</_>
-                <_>
-                  8 6 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.2017602138221264e-003</threshold>
-            <left_val>-0.2269695997238159</left_val>
-            <right_val>0.0536908693611622</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 14 2 -1.</_>
-                <_>
-                  2 13 14 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0520097799599171</threshold>
-            <left_val>0.5167415738105774</left_val>
-            <right_val>-0.0205913390964270</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 8 6 7 -1.</_>
-                <_>
-                  4 8 2 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.0841891206800938e-003</threshold>
-            <left_val>0.0838762521743774</left_val>
-            <right_val>-0.1215421035885811</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 2 -1.</_>
-                <_>
-                  15 1 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.3035072050988674e-003</threshold>
-            <left_val>0.0314468108117580</left_val>
-            <right_val>-0.1233906000852585</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 6 3 3 -1.</_>
-                <_>
-                  4 7 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5940061099827290e-003</threshold>
-            <left_val>-0.0627442970871925</left_val>
-            <right_val>0.1418178975582123</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 2 -1.</_>
-                <_>
-                  9 0 6 1 2.</_>
-                <_>
-                  3 1 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.9754808209836483e-003</threshold>
-            <left_val>0.0279876105487347</left_val>
-            <right_val>-0.3049218058586121</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 13 4 2 -1.</_>
-                <_>
-                  1 13 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.3900879789143801e-003</threshold>
-            <left_val>-0.2176389992237091</left_val>
-            <right_val>0.0362194888293743</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 6 3 5 -1.</_>
-                <_>
-                  14 7 1 5 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.5793427899479866e-003</threshold>
-            <left_val>-0.0433258786797524</left_val>
-            <right_val>0.1642747074365616</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 4 6 3 -1.</_>
-                <_>
-                  9 6 2 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0550329610705376</threshold>
-            <left_val>-0.2693688869476318</left_val>
-            <right_val>0.0320559591054916</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 5 16 6 -1.</_>
-                <_>
-                  1 7 16 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0955175980925560</threshold>
-            <left_val>0.2161073982715607</left_val>
-            <right_val>-0.0582397803664207</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 9 2 2 -1.</_>
-                <_>
-                  8 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.8512140791863203e-004</threshold>
-            <left_val>0.0752959027886391</left_val>
-            <right_val>-0.1217793971300125</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 9 8 2 -1.</_>
-                <_>
-                  12 9 4 1 2.</_>
-                <_>
-                  8 10 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.4586488083004951e-003</threshold>
-            <left_val>-0.0455720499157906</left_val>
-            <right_val>0.2856633067131043</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 12 15 -1.</_>
-                <_>
-                  3 0 6 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1383175998926163</threshold>
-            <left_val>-0.0303479190915823</left_val>
-            <right_val>0.2803717851638794</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 3 4 2 -1.</_>
-                <_>
-                  10 3 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.5889035835862160e-003</threshold>
-            <left_val>0.2595542967319489</left_val>
-            <right_val>-0.0248014405369759</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 3 4 2 -1.</_>
-                <_>
-                  6 3 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6830460410565138e-003</threshold>
-            <left_val>-0.1356775015592575</left_val>
-            <right_val>0.0750199928879738</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 9 9 -1.</_>
-                <_>
-                  9 0 3 9 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0561147592961788</threshold>
-            <left_val>-0.1331470012664795</left_val>
-            <right_val>0.0675303786993027</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 8 2 -1.</_>
-                <_>
-                  2 2 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.4768209122121334e-003</threshold>
-            <left_val>-0.0428345091640949</left_val>
-            <right_val>0.2283774018287659</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 2 1 -1.</_>
-                <_>
-                  15 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.5396071188151836e-003</threshold>
-            <left_val>0.0175717808306217</left_val>
-            <right_val>-0.4712331891059876</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 1 2 8 -1.</_>
-                <_>
-                  8 5 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0322765894234180</threshold>
-            <left_val>0.1667342931032181</left_val>
-            <right_val>-0.0572832897305489</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 3 2 2 -1.</_>
-                <_>
-                  16 3 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.1356316804885864e-003</threshold>
-            <left_val>0.0272685103118420</left_val>
-            <right_val>-0.1111190989613533</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 3 2 2 -1.</_>
-                <_>
-                  2 3 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0104770399630070</threshold>
-            <left_val>0.0260039307177067</left_val>
-            <right_val>-0.3676153123378754</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 2 4 3 -1.</_>
-                <_>
-                  13 3 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0309956707060337</threshold>
-            <left_val>-0.0286454297602177</left_val>
-            <right_val>0.3315067887306213</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 3 8 2 -1.</_>
-                <_>
-                  5 3 4 1 2.</_>
-                <_>
-                  9 4 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.0666121318936348e-003</threshold>
-            <left_val>-0.4054433107376099</left_val>
-            <right_val>0.0251925494521856</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 1 5 3 -1.</_>
-                <_>
-                  12 2 5 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.6987180355936289e-003</threshold>
-            <left_val>0.0631407573819160</left_val>
-            <right_val>-0.0327784791588783</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 1 3 5 -1.</_>
-                <_>
-                  6 2 1 5 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0306662693619728</threshold>
-            <left_val>0.3254658877849579</left_val>
-            <right_val>-0.0277023594826460</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 9 6 -1.</_>
-                <_>
-                  7 3 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0788802430033684</threshold>
-            <left_val>0.0153381098061800</left_val>
-            <right_val>-0.2206629961729050</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 9 6 -1.</_>
-                <_>
-                  2 3 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0326623804867268</threshold>
-            <left_val>-0.2611115872859955</left_val>
-            <right_val>0.0396143011748791</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 10 8 -1.</_>
-                <_>
-                  4 4 10 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2029986977577210</threshold>
-            <left_val>0.4685623049736023</left_val>
-            <right_val>-0.0211902894079685</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 8 4 2 -1.</_>
-                <_>
-                  7 9 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.3156479690223932e-003</threshold>
-            <left_val>0.0511390715837479</left_val>
-            <right_val>-0.1778022050857544</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 6 8 -1.</_>
-                <_>
-                  11 2 2 8 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.2458626925945282</threshold>
-            <left_val>2.0771999843418598e-003</left_val>
-            <right_val>-0.7230259180068970</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 6 4 3 -1.</_>
-                <_>
-                  4 7 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.6061620861291885e-003</threshold>
-            <left_val>-0.0438566096127033</left_val>
-            <right_val>0.2025624066591263</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 6 8 -1.</_>
-                <_>
-                  11 2 2 8 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0928886383771896</threshold>
-            <left_val>0.0257623400539160</left_val>
-            <right_val>-0.0818297490477562</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 11 6 4 -1.</_>
-                <_>
-                  1 11 3 2 2.</_>
-                <_>
-                  4 13 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.8360089743509889e-003</threshold>
-            <left_val>-0.1065806970000267</left_val>
-            <right_val>0.0778321474790573</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 6 8 -1.</_>
-                <_>
-                  11 2 2 8 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0101813804358244</threshold>
-            <left_val>-0.0704501271247864</left_val>
-            <right_val>0.0211151205003262</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 8 6 -1.</_>
-                <_>
-                  7 2 8 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.2291380017995834</threshold>
-            <left_val>0.0105785802006722</left_val>
-            <right_val>-0.8155276179313660</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 4 -1.</_>
-                <_>
-                  15 1 2 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0212600603699684</threshold>
-            <left_val>-0.2375449985265732</left_val>
-            <right_val>0.0127379801124334</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 3 4 -1.</_>
-                <_>
-                  4 2 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9725849851965904e-003</threshold>
-            <left_val>0.0572128705680370</left_val>
-            <right_val>-0.1377062946557999</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 3 1 -1.</_>
-                <_>
-                  14 0 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.6411700168391690e-005</threshold>
-            <left_val>0.0502910390496254</left_val>
-            <right_val>-0.0575029999017715</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 11 8 -1.</_>
-                <_>
-                  0 11 11 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.3620679974555969</threshold>
-            <left_val>-0.7733700871467590</left_val>
-            <right_val>0.0101746097207069</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 9 17 4 -1.</_>
-                <_>
-                  1 11 17 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1428683996200562</threshold>
-            <left_val>0.3628562092781067</left_val>
-            <right_val>-0.0296504106372595</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 6 16 6 -1.</_>
-                <_>
-                  1 8 16 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0601753890514374</threshold>
-            <left_val>0.1093005985021591</left_val>
-            <right_val>-0.0907286480069160</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 3 1 -1.</_>
-                <_>
-                  14 0 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.7640471166232601e-005</threshold>
-            <left_val>-0.0555778108537197</left_val>
-            <right_val>0.0779178664088249</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 3 1 -1.</_>
-                <_>
-                  3 0 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.4806099797133356e-005</threshold>
-            <left_val>0.0850946307182312</left_val>
-            <right_val>-0.0902227982878685</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 2 9 6 -1.</_>
-                <_>
-                  5 4 9 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.2555618137121201e-003</threshold>
-            <left_val>0.1677850037813187</left_val>
-            <right_val>-0.0391292311251163</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 3 2 -1.</_>
-                <_>
-                  7 2 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4975580163300037e-003</threshold>
-            <left_val>-0.2542758882045746</left_val>
-            <right_val>0.0310085993260145</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 11 12 4 -1.</_>
-                <_>
-                  6 13 12 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1691354960203171</threshold>
-            <left_val>7.6711731962859631e-003</left_val>
-            <right_val>-0.4777897894382477</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 16 2 -1.</_>
-                <_>
-                  0 0 8 1 2.</_>
-                <_>
-                  8 1 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.0642458051443100e-003</threshold>
-            <left_val>0.0320016816258430</left_val>
-            <right_val>-0.2201628983020783</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 11 2 2 -1.</_>
-                <_>
-                  17 11 1 1 2.</_>
-                <_>
-                  16 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.8364861615700647e-005</threshold>
-            <left_val>-0.0927060320973396</left_val>
-            <right_val>0.0926686972379684</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 3 3 -1.</_>
-                <_>
-                  4 2 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0242639407515526</threshold>
-            <left_val>0.3061330020427704</left_val>
-            <right_val>-0.0236746892333031</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 6 2 -1.</_>
-                <_>
-                  14 2 2 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1245393976569176</threshold>
-            <left_val>-1.1398720089346170e-003</left_val>
-            <right_val>0.6500102877616882</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 2 6 -1.</_>
-                <_>
-                  4 2 2 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0308606103062630</threshold>
-            <left_val>-0.2340030968189240</left_val>
-            <right_val>0.0343167595565319</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 8 3 6 -1.</_>
-                <_>
-                  16 10 1 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0127543099224567</threshold>
-            <left_val>-0.0391327291727066</left_val>
-            <right_val>0.0949018001556396</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 3 6 -1.</_>
-                <_>
-                  1 10 1 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0376567393541336</threshold>
-            <left_val>0.0261963903903961</left_val>
-            <right_val>-0.3091090917587280</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 4 3 3 -1.</_>
-                <_>
-                  13 5 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0312218796461821</threshold>
-            <left_val>-0.2861835062503815</left_val>
-            <right_val>5.0922371447086334e-003</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 3 3 -1.</_>
-                <_>
-                  5 5 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0134689500555396</threshold>
-            <left_val>0.2125725001096726</left_val>
-            <right_val>-0.0359573401510715</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 9 3 6 -1.</_>
-                <_>
-                  12 9 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.5858170166611671e-003</threshold>
-            <left_val>-0.1451039016246796</left_val>
-            <right_val>0.0284003801643848</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 9 2 -1.</_>
-                <_>
-                  12 3 3 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0325641296803951</threshold>
-            <left_val>0.2121015936136246</left_val>
-            <right_val>-0.0337405614554882</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 4 1 8 -1.</_>
-                <_>
-                  13 6 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0478576682507992</threshold>
-            <left_val>-0.2893986105918884</left_val>
-            <right_val>8.2710552960634232e-003</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 4 8 1 -1.</_>
-                <_>
-                  5 6 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0408857800066471</threshold>
-            <left_val>0.0154061401262879</left_val>
-            <right_val>-0.5273528099060059</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 6 6 -1.</_>
-                <_>
-                  8 0 2 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0111554395407438</threshold>
-            <left_val>0.2048159986734390</left_val>
-            <right_val>-0.0385781601071358</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 10 1 -1.</_>
-                <_>
-                  8 3 5 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0436525382101536</threshold>
-            <left_val>-0.5605732202529907</left_val>
-            <right_val>0.0155440401285887</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 8 3 5 -1.</_>
-                <_>
-                  9 8 1 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0237427093088627</threshold>
-            <left_val>-0.7845674157142639</left_val>
-            <right_val>3.1750639900565147e-003</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 2 8 2 -1.</_>
-                <_>
-                  9 4 4 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1069891974329948</threshold>
-            <left_val>-0.0261800494045019</left_val>
-            <right_val>0.2701598107814789</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 2 3 13 -1.</_>
-                <_>
-                  12 2 1 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0378550700843334</threshold>
-            <left_val>6.5697189420461655e-003</left_val>
-            <right_val>-0.4029164910316467</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 3 13 -1.</_>
-                <_>
-                  5 2 1 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0300023406744003</threshold>
-            <left_val>-0.3640936017036438</left_val>
-            <right_val>0.0191395506262779</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 7 1 6 -1.</_>
-                <_>
-                  17 9 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0177240408957005</threshold>
-            <left_val>0.0121768601238728</left_val>
-            <right_val>-0.3674328923225403</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 1 6 -1.</_>
-                <_>
-                  0 9 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.9289022833108902e-003</threshold>
-            <left_val>-0.2345584928989410</left_val>
-            <right_val>0.0312652811408043</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 8 4 -1.</_>
-                <_>
-                  12 7 4 2 2.</_>
-                <_>
-                  8 9 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0411901511251926</threshold>
-            <left_val>0.1780917942523956</left_val>
-            <right_val>-0.0286607407033443</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 7 8 4 -1.</_>
-                <_>
-                  2 7 4 2 2.</_>
-                <_>
-                  6 9 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0104142995551229</threshold>
-            <left_val>-0.0461356192827225</left_val>
-            <right_val>0.2206518948078156</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 5 12 4 -1.</_>
-                <_>
-                  9 5 6 2 2.</_>
-                <_>
-                  3 7 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0623511299490929</threshold>
-            <left_val>-0.6013355255126953</left_val>
-            <right_val>0.0119700403884053</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 12 3 3 -1.</_>
-                <_>
-                  8 13 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0107688298448920</threshold>
-            <left_val>-0.0378835014998913</left_val>
-            <right_val>0.1919409930706024</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 12 2 3 -1.</_>
-                <_>
-                  8 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5350959729403257e-003</threshold>
-            <left_val>0.1343532949686050</left_val>
-            <right_val>-0.0599097199738026</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 6 3 -1.</_>
-                <_>
-                  5 1 6 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.9390122294425964e-003</threshold>
-            <left_val>-0.2264474928379059</left_val>
-            <right_val>0.0331381000578403</right_val></_></_>
-        <_>
-          <!-- tree 135 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 2 -1.</_>
-                <_>
-                  7 1 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9866439290344715e-003</threshold>
-            <left_val>0.0395365394651890</left_val>
-            <right_val>-0.1798572987318039</right_val></_></_>
-        <_>
-          <!-- tree 136 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 4 4 1 -1.</_>
-                <_>
-                  5 4 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.1302180003840476e-005</threshold>
-            <left_val>-0.1217418983578682</left_val>
-            <right_val>0.0578663200139999</right_val></_></_>
-        <_>
-          <!-- tree 137 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 9 1 -1.</_>
-                <_>
-                  9 0 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0141327697783709</threshold>
-            <left_val>-0.0697263032197952</left_val>
-            <right_val>0.1077838987112045</right_val></_></_>
-        <_>
-          <!-- tree 138 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 8 4 2 -1.</_>
-                <_>
-                  6 8 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-8.7037831544876099e-003</threshold>
-            <left_val>0.1353736072778702</left_val>
-            <right_val>-0.0617493800818920</right_val></_></_>
-        <_>
-          <!-- tree 139 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 2 4 -1.</_>
-                <_>
-                  12 7 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0396597199141979</threshold>
-            <left_val>0.2866846919059753</left_val>
-            <right_val>-4.0120128542184830e-003</right_val></_></_>
-        <_>
-          <!-- tree 140 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 4 2 -1.</_>
-                <_>
-                  6 7 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0165502801537514</threshold>
-            <left_val>-0.0549145303666592</left_val>
-            <right_val>0.1501951068639755</right_val></_></_>
-        <_>
-          <!-- tree 141 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 12 4 -1.</_>
-                <_>
-                  7 1 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0182081703096628</threshold>
-            <left_val>-0.0716051831841469</left_val>
-            <right_val>0.0196856409311295</right_val></_></_>
-        <_>
-          <!-- tree 142 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 12 4 -1.</_>
-                <_>
-                  5 1 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0295192506164312</threshold>
-            <left_val>0.2099193036556244</left_val>
-            <right_val>-0.0432162992656231</right_val></_></_>
-        <_>
-          <!-- tree 143 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 1 12 3 -1.</_>
-                <_>
-                  9 1 4 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0212850607931614</threshold>
-            <left_val>0.1869163960218430</left_val>
-            <right_val>-0.0237888600677252</right_val></_></_>
-        <_>
-          <!-- tree 144 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 11 8 -1.</_>
-                <_>
-                  3 3 11 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0378306210041046</threshold>
-            <left_val>-0.1275478005409241</left_val>
-            <right_val>0.0723592489957809</right_val></_></_>
-        <_>
-          <!-- tree 145 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 7 15 4 -1.</_>
-                <_>
-                  2 8 15 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0116437599062920</threshold>
-            <left_val>-0.0464428104460239</left_val>
-            <right_val>0.1379096060991287</right_val></_></_>
-        <_>
-          <!-- tree 146 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 11 2 2 -1.</_>
-                <_>
-                  5 11 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.9127039276063442e-003</threshold>
-            <left_val>-0.1696089953184128</left_val>
-            <right_val>0.0449999384582043</right_val></_></_>
-        <_>
-          <!-- tree 147 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 10 8 5 -1.</_>
-                <_>
-                  8 10 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0576444491744041</threshold>
-            <left_val>-0.2977206110954285</left_val>
-            <right_val>8.5106249898672104e-003</right_val></_></_>
-        <_>
-          <!-- tree 148 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 10 8 5 -1.</_>
-                <_>
-                  6 10 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0539292395114899</threshold>
-            <left_val>-0.3482970893383026</left_val>
-            <right_val>0.0207772795110941</right_val></_></_>
-        <_>
-          <!-- tree 149 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 11 17 2 -1.</_>
-                <_>
-                  1 12 17 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.7844387851655483e-004</threshold>
-            <left_val>-0.1067842990159988</left_val>
-            <right_val>0.0631283298134804</right_val></_></_>
-        <_>
-          <!-- tree 150 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 17 4 -1.</_>
-                <_>
-                  0 10 17 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0217015091329813</threshold>
-            <left_val>-0.0430709086358547</left_val>
-            <right_val>0.2051513940095902</right_val></_></_>
-        <_>
-          <!-- tree 151 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 18 2 -1.</_>
-                <_>
-                  9 6 9 1 2.</_>
-                <_>
-                  0 7 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0142901800572872</threshold>
-            <left_val>0.0401067808270454</left_val>
-            <right_val>-0.1963661015033722</right_val></_></_>
-        <_>
-          <!-- tree 152 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 3 6 -1.</_>
-                <_>
-                  5 3 3 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0479065105319023</threshold>
-            <left_val>0.0266829095780849</left_val>
-            <right_val>-0.2608106136322022</right_val></_></_>
-        <_>
-          <!-- tree 153 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 13 6 2 -1.</_>
-                <_>
-                  11 13 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0207046903669834</threshold>
-            <left_val>8.2300165668129921e-003</left_val>
-            <right_val>-0.1717294007539749</right_val></_></_>
-        <_>
-          <!-- tree 154 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 13 6 2 -1.</_>
-                <_>
-                  5 13 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0228998996317387</threshold>
-            <left_val>-0.3708100020885468</left_val>
-            <right_val>0.0185417495667934</right_val></_></_>
-        <_>
-          <!-- tree 155 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 6 2 2 -1.</_>
-                <_>
-                  13 6 1 1 2.</_>
-                <_>
-                  12 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.9879220053553581e-003</threshold>
-            <left_val>0.1643680930137634</left_val>
-            <right_val>-0.0217982996255159</right_val></_></_>
-        <_>
-          <!-- tree 156 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 6 2 2 -1.</_>
-                <_>
-                  4 6 1 1 2.</_>
-                <_>
-                  5 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4986838222248480e-005</threshold>
-            <left_val>-0.0649014934897423</left_val>
-            <right_val>0.1062330007553101</right_val></_></_>
-        <_>
-          <!-- tree 157 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 6 2 2 -1.</_>
-                <_>
-                  13 6 1 1 2.</_>
-                <_>
-                  12 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3559920480474830e-003</threshold>
-            <left_val>-0.0245978496968746</left_val>
-            <right_val>0.1436166018247604</right_val></_></_>
-        <_>
-          <!-- tree 158 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 6 2 2 -1.</_>
-                <_>
-                  4 6 1 1 2.</_>
-                <_>
-                  5 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6802290449268185e-005</threshold>
-            <left_val>0.0772759467363358</left_val>
-            <right_val>-0.0916534364223480</right_val></_></_>
-        <_>
-          <!-- tree 159 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 5 8 -1.</_>
-                <_>
-                  13 4 5 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0716202333569527</threshold>
-            <left_val>-0.2455226033926010</left_val>
-            <right_val>0.0295341201126575</right_val></_></_>
-        <_>
-          <!-- tree 160 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 6 6 3 -1.</_>
-                <_>
-                  10 8 2 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0243309102952480</threshold>
-            <left_val>0.0413995198905468</left_val>
-            <right_val>-0.1590318977832794</right_val></_></_>
-        <_>
-          <!-- tree 161 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 11 1 3 -1.</_>
-                <_>
-                  8 12 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0279465708881617</threshold>
-            <left_val>2.2586109116673470e-003</left_val>
-            <right_val>-0.6731820106506348</right_val></_></_>
-        <_>
-          <!-- tree 162 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 11 3 1 -1.</_>
-                <_>
-                  10 12 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-1.4360989443957806e-003</threshold>
-            <left_val>0.1064805015921593</left_val>
-            <right_val>-0.0644265785813332</right_val></_></_>
-        <_>
-          <!-- tree 163 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 6 2 -1.</_>
-                <_>
-                  10 1 3 1 2.</_>
-                <_>
-                  7 2 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.7291368246078491e-003</threshold>
-            <left_val>0.0197015404701233</left_val>
-            <right_val>-0.2857697010040283</right_val></_></_>
-        <_>
-          <!-- tree 164 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 5 16 5 -1.</_>
-                <_>
-                  5 5 8 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0992026627063751</threshold>
-            <left_val>-0.3520042896270752</left_val>
-            <right_val>0.0168160591274500</right_val></_></_>
-        <_>
-          <!-- tree 165 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 6 6 1 -1.</_>
-                <_>
-                  14 6 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.9718345552682877e-003</threshold>
-            <left_val>0.0913507118821144</left_val>
-            <right_val>-0.0237340200692415</right_val></_></_>
-        <_>
-          <!-- tree 166 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 6 1 -1.</_>
-                <_>
-                  2 6 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2134570647031069e-003</threshold>
-            <left_val>-0.0494450889527798</left_val>
-            <right_val>0.1423113048076630</right_val></_></_>
-        <_>
-          <!-- tree 167 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 4 2 1 -1.</_>
-                <_>
-                  15 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0166129795834422e-003</threshold>
-            <left_val>0.0645815804600716</left_val>
-            <right_val>-0.0191290695220232</right_val></_></_>
-        <_>
-          <!-- tree 168 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 4 2 1 -1.</_>
-                <_>
-                  2 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.1253100284375250e-005</threshold>
-            <left_val>0.0835471376776695</left_val>
-            <right_val>-0.0906196907162666</right_val></_></_>
-        <_>
-          <!-- tree 169 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 2 -1.</_>
-                <_>
-                  8 1 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1647429782897234e-003</threshold>
-            <left_val>-0.1799729019403458</left_val>
-            <right_val>0.0400951690971851</right_val></_></_>
-        <_>
-          <!-- tree 170 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 2 10 -1.</_>
-                <_>
-                  0 5 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0643320977687836</threshold>
-            <left_val>-0.3869268894195557</left_val>
-            <right_val>0.0174406096339226</right_val></_></_>
-        <_>
-          <!-- tree 171 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 12 6 -1.</_>
-                <_>
-                  3 5 12 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1375796943902969</threshold>
-            <left_val>0.2280858010053635</left_val>
-            <right_val>-0.0328599512577057</right_val></_></_>
-        <_>
-          <!-- tree 172 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 4 3 -1.</_>
-                <_>
-                  5 1 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.3165339417755604e-003</threshold>
-            <left_val>0.0429877601563931</left_val>
-            <right_val>-0.1599061042070389</right_val></_></_>
-        <_>
-          <!-- tree 173 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 3 6 -1.</_>
-                <_>
-                  10 1 1 6 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0210752394050360</threshold>
-            <left_val>0.0137607501819730</left_val>
-            <right_val>-0.0974362194538116</right_val></_></_>
-        <_>
-          <!-- tree 174 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 8 8 -1.</_>
-                <_>
-                  4 0 4 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0470838211476803</threshold>
-            <left_val>-0.0716910064220428</left_val>
-            <right_val>0.1070054024457932</right_val></_></_>
-        <_>
-          <!-- tree 175 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 9 1 -1.</_>
-                <_>
-                  9 0 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9396019205451012e-003</threshold>
-            <left_val>-0.0633967369794846</left_val>
-            <right_val>0.0387225411832333</right_val></_></_>
-        <_>
-          <!-- tree 176 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 9 -1.</_>
-                <_>
-                  6 0 6 9 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.5819712877273560</threshold>
-            <left_val>0.0216003507375717</left_val>
-            <right_val>-0.3787331879138947</right_val></_></_>
-        <_>
-          <!-- tree 177 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 11 9 4 -1.</_>
-                <_>
-                  5 12 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0160421207547188</threshold>
-            <left_val>-0.0466817095875740</left_val>
-            <right_val>0.1436420977115631</right_val></_></_>
-        <_>
-          <!-- tree 178 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 3 13 -1.</_>
-                <_>
-                  4 2 1 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0383162610232830</threshold>
-            <left_val>-0.6240848898887634</left_val>
-            <right_val>0.0108488202095032</right_val></_></_>
-        <_>
-          <!-- tree 179 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 3 6 2 -1.</_>
-                <_>
-                  10 3 3 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1245153993368149</threshold>
-            <left_val>-9.1985529288649559e-003</left_val>
-            <right_val>0.1117267012596130</right_val></_></_>
-        <_>
-          <!-- tree 180 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 2 6 -1.</_>
-                <_>
-                  8 3 2 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1228756979107857</threshold>
-            <left_val>-0.0130921201780438</left_val>
-            <right_val>0.5222136974334717</right_val></_></_>
-        <_>
-          <!-- tree 181 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 6 3 3 -1.</_>
-                <_>
-                  12 7 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.1833565384149551e-003</threshold>
-            <left_val>-0.0758661031723022</left_val>
-            <right_val>0.0255879797041416</right_val></_></_>
-        <_>
-          <!-- tree 182 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 6 3 3 -1.</_>
-                <_>
-                  6 7 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0168187208473682</threshold>
-            <left_val>-0.0309611707925797</left_val>
-            <right_val>0.2313760071992874</right_val></_></_>
-        <_>
-          <!-- tree 183 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 6 2 2 -1.</_>
-                <_>
-                  12 6 1 1 2.</_>
-                <_>
-                  11 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.6163040173705667e-005</threshold>
-            <left_val>-0.0593904405832291</left_val>
-            <right_val>0.0742034986615181</right_val></_></_>
-        <_>
-          <!-- tree 184 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 11 -1.</_>
-                <_>
-                  9 0 2 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0548779107630253</threshold>
-            <left_val>0.2598169147968292</left_val>
-            <right_val>-0.0269930195063353</right_val></_></_>
-        <_>
-          <!-- tree 185 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 5 -1.</_>
-                <_>
-                  8 0 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.6188119128346443e-003</threshold>
-            <left_val>0.1337952017784119</left_val>
-            <right_val>-0.0559991188347340</right_val></_></_>
-        <_>
-          <!-- tree 186 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 2 5 12 -1.</_>
-                <_>
-                  2 8 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2336242049932480</threshold>
-            <left_val>0.3275535106658936</left_val>
-            <right_val>-0.0214694291353226</right_val></_></_>
-        <_>
-          <!-- tree 187 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 18 10 -1.</_>
-                <_>
-                  9 5 9 5 2.</_>
-                <_>
-                  0 10 9 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1114932000637054</threshold>
-            <left_val>-0.2446383982896805</left_val>
-            <right_val>0.0362425111234188</right_val></_></_>
-        <_>
-          <!-- tree 188 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 8 4 -1.</_>
-                <_>
-                  0 10 4 2 2.</_>
-                <_>
-                  4 12 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0441570281982422</threshold>
-            <left_val>0.4340217113494873</left_val>
-            <right_val>-0.0166491009294987</right_val></_></_>
-        <_>
-          <!-- tree 189 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 1 3 -1.</_>
-                <_>
-                  9 1 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.7168701459886506e-005</threshold>
-            <left_val>0.0668948367238045</left_val>
-            <right_val>-0.0507181882858276</right_val></_></_>
-        <_>
-          <!-- tree 190 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 11 2 2 -1.</_>
-                <_>
-                  2 11 1 1 2.</_>
-                <_>
-                  3 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.3646868764190003e-005</threshold>
-            <left_val>-0.0803783014416695</left_val>
-            <right_val>0.0818097665905952</right_val></_></_>
-        <_>
-          <!-- tree 191 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 1 2 14 -1.</_>
-                <_>
-                  14 8 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1059508994221687</threshold>
-            <left_val>5.0716297701001167e-003</left_val>
-            <right_val>-0.6473715901374817</right_val></_></_>
-        <_>
-          <!-- tree 192 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 2 14 -1.</_>
-                <_>
-                  2 8 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0836684033274651</threshold>
-            <left_val>8.6071500554680824e-003</left_val>
-            <right_val>-0.6509302854537964</right_val></_></_>
-        <_>
-          <!-- tree 193 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 7 3 4 -1.</_>
-                <_>
-                  15 8 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.3153052255511284e-003</threshold>
-            <left_val>-0.0472831390798092</left_val>
-            <right_val>0.1902991980314255</right_val></_></_>
-        <_>
-          <!-- tree 194 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 6 -1.</_>
-                <_>
-                  0 9 9 3 2.</_>
-                <_>
-                  9 12 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0621465183794498</threshold>
-            <left_val>-0.1851356029510498</left_val>
-            <right_val>0.0434024408459663</right_val></_></_>
-        <_>
-          <!-- tree 195 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 7 3 5 -1.</_>
-                <_>
-                  12 8 1 5 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-1.5061040176078677e-003</threshold>
-            <left_val>-0.0425548888742924</left_val>
-            <right_val>0.0472707785665989</right_val></_></_>
-        <_>
-          <!-- tree 196 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 5 3 -1.</_>
-                <_>
-                  6 8 5 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0126304496079683</threshold>
-            <left_val>0.1005629971623421</left_val>
-            <right_val>-0.0700350031256676</right_val></_></_>
-        <_>
-          <!-- tree 197 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 3 2 -1.</_>
-                <_>
-                  16 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-7.2226561605930328e-003</threshold>
-            <left_val>-0.1351246982812882</left_val>
-            <right_val>0.0165191907435656</right_val></_></_>
-        <_>
-          <!-- tree 198 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 8 4 5 -1.</_>
-                <_>
-                  8 8 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0398441106081009</threshold>
-            <left_val>6.1076539568603039e-003</left_val>
-            <right_val>-1.0002349615097046</right_val></_></_>
-        <_>
-          <!-- tree 199 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 1 10 12 -1.</_>
-                <_>
-                  8 5 10 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.5386329293251038</threshold>
-            <left_val>4.2299588676542044e-004</left_val>
-            <right_val>-0.9881020188331604</right_val></_></_>
-        <_>
-          <!-- tree 200 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 2 3 -1.</_>
-                <_>
-                  2 1 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0243477690964937</threshold>
-            <left_val>-0.9888607263565064</left_val>
-            <right_val>4.6373298391699791e-003</right_val></_></_>
-        <_>
-          <!-- tree 201 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 5 1 3 -1.</_>
-                <_>
-                  16 6 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.4827940873801708e-003</threshold>
-            <left_val>-0.0541374906897545</left_val>
-            <right_val>0.1380057930946350</right_val></_></_>
-        <_>
-          <!-- tree 202 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 15 4 -1.</_>
-                <_>
-                  5 0 5 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0796409398317337</threshold>
-            <left_val>-0.0579614713788033</left_val>
-            <right_val>0.1078020036220551</right_val></_></_>
-        <_>
-          <!-- tree 203 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 6 5 -1.</_>
-                <_>
-                  12 0 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5154298208653927e-003</threshold>
-            <left_val>-0.0951096937060356</left_val>
-            <right_val>0.0761779919266701</right_val></_></_>
-        <_>
-          <!-- tree 204 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 6 5 -1.</_>
-                <_>
-                  3 0 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0639263466000557</threshold>
-            <left_val>0.0221496708691120</left_val>
-            <right_val>-0.3681097030639648</right_val></_></_></trees>
-      <stage_threshold>-1.2998509407043457</stage_threshold>
-      <parent>12</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 14 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 6 2 4 -1.</_>
-                <_>
-                  7 7 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0227022804319859</threshold>
-            <left_val>0.3458436131477356</left_val>
-            <right_val>-0.1496108025312424</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 3 10 12 -1.</_>
-                <_>
-                  11 3 5 6 2.</_>
-                <_>
-                  6 9 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0113259796053171</threshold>
-            <left_val>0.0946362167596817</left_val>
-            <right_val>-0.1482031047344208</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 6 1 -1.</_>
-                <_>
-                  5 0 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0080899810418487e-003</threshold>
-            <left_val>0.1488129943609238</left_val>
-            <right_val>-0.2323223948478699</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 4 16 8 -1.</_>
-                <_>
-                  10 4 8 4 2.</_>
-                <_>
-                  2 8 8 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1050098985433579</threshold>
-            <left_val>-0.2153766006231308</left_val>
-            <right_val>0.0894507020711899</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 6 4 4 -1.</_>
-                <_>
-                  1 6 2 2 2.</_>
-                <_>
-                  3 8 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0126776201650500</threshold>
-            <left_val>0.2758413851261139</left_val>
-            <right_val>-0.1148819997906685</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 4 2 -1.</_>
-                <_>
-                  14 1 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.9704289995133877e-003</threshold>
-            <left_val>0.0440389215946198</left_val>
-            <right_val>-0.1627631038427353</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 2 4 -1.</_>
-                <_>
-                  4 1 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.1556040309369564e-003</threshold>
-            <left_val>0.0742129236459732</left_val>
-            <right_val>-0.3247778117656708</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 8 1 3 -1.</_>
-                <_>
-                  12 9 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.2180028073489666e-003</threshold>
-            <left_val>0.4252533912658691</left_val>
-            <right_val>-0.0276413895189762</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 8 1 3 -1.</_>
-                <_>
-                  5 9 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9266420751810074e-003</threshold>
-            <left_val>-0.0529128387570381</left_val>
-            <right_val>0.3920814096927643</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 4 4 -1.</_>
-                <_>
-                  10 1 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.9688094556331635e-003</threshold>
-            <left_val>0.0333337001502514</left_val>
-            <right_val>-0.4196723997592926</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 7 1 3 -1.</_>
-                <_>
-                  5 8 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5101311989128590e-003</threshold>
-            <left_val>-0.0477215312421322</left_val>
-            <right_val>0.4440034925937653</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 2 -1.</_>
-                <_>
-                  3 1 12 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.2346827946603298e-003</threshold>
-            <left_val>-0.4201810956001282</left_val>
-            <right_val>0.0553282685577869</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 4 4 -1.</_>
-                <_>
-                  4 1 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4523041471838951e-003</threshold>
-            <left_val>0.0427102707326412</left_val>
-            <right_val>-0.4007393121719360</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 3 10 12 -1.</_>
-                <_>
-                  11 3 5 6 2.</_>
-                <_>
-                  6 9 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1354739069938660</threshold>
-            <left_val>0.0132751995697618</left_val>
-            <right_val>-0.4189395010471344</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 3 10 12 -1.</_>
-                <_>
-                  2 3 5 6 2.</_>
-                <_>
-                  7 9 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0285219997167587</threshold>
-            <left_val>0.0712370425462723</left_val>
-            <right_val>-0.2356449067592621</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 2 9 -1.</_>
-                <_>
-                  9 0 1 9 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0678908079862595</threshold>
-            <left_val>-0.6082717180252075</left_val>
-            <right_val>2.7981699531665072e-005</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 2 1 -1.</_>
-                <_>
-                  1 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.7107769710710272e-005</threshold>
-            <left_val>0.1002285033464432</left_val>
-            <right_val>-0.1364476978778839</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 1 6 14 -1.</_>
-                <_>
-                  12 8 6 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2596256136894226</threshold>
-            <left_val>-0.1378504037857056</left_val>
-            <right_val>0.0266530998051167</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 6 14 -1.</_>
-                <_>
-                  0 8 6 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1188557967543602</threshold>
-            <left_val>0.0274891909211874</left_val>
-            <right_val>-0.5429527163505554</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 2 9 -1.</_>
-                <_>
-                  9 0 1 9 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0568522512912750</threshold>
-            <left_val>-0.0112552195787430</left_val>
-            <right_val>0.3833953142166138</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 9 2 -1.</_>
-                <_>
-                  9 0 9 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0415694713592529</threshold>
-            <left_val>-0.0417712591588497</left_val>
-            <right_val>0.3420456945896149</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 14 3 -1.</_>
-                <_>
-                  2 13 14 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0441399216651917</threshold>
-            <left_val>-0.0225493591278791</left_val>
-            <right_val>0.4669098854064941</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 8 -1.</_>
-                <_>
-                  0 0 9 4 2.</_>
-                <_>
-                  9 4 9 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1063582971692085</threshold>
-            <left_val>0.0297107696533203</left_val>
-            <right_val>-0.4509320855140686</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 1 5 6 -1.</_>
-                <_>
-                  11 4 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.2869287580251694e-003</threshold>
-            <left_val>-0.1222324967384338</left_val>
-            <right_val>0.0532477386295795</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 5 6 -1.</_>
-                <_>
-                  2 4 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0367316715419292</threshold>
-            <left_val>0.0420367904007435</left_val>
-            <right_val>-0.4483470916748047</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 10 8 5 -1.</_>
-                <_>
-                  8 10 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0577655285596848</threshold>
-            <left_val>-0.5459136962890625</left_val>
-            <right_val>7.4861990287899971e-003</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 9 10 6 -1.</_>
-                <_>
-                  9 9 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1748784929513931</threshold>
-            <left_val>0.0281722098588943</left_val>
-            <right_val>-0.4324407875537872</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 1 -1.</_>
-                <_>
-                  16 0 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5779709176276810e-005</threshold>
-            <left_val>0.0849614813923836</left_val>
-            <right_val>-0.0936162620782852</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 11 6 4 -1.</_>
-                <_>
-                  0 11 3 2 2.</_>
-                <_>
-                  3 13 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.4103060645284131e-005</threshold>
-            <left_val>-0.1574534028768539</left_val>
-            <right_val>0.0785599797964096</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 14 2 1 -1.</_>
-                <_>
-                  14 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5306469760835171e-003</threshold>
-            <left_val>-0.1860491931438446</left_val>
-            <right_val>0.0132554396986961</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 14 2 1 -1.</_>
-                <_>
-                  3 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5649809686001390e-005</threshold>
-            <left_val>0.1080086007714272</left_val>
-            <right_val>-0.1149718016386032</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 18 8 -1.</_>
-                <_>
-                  0 7 18 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.5427448749542236</threshold>
-            <left_val>-0.6514676809310913</left_val>
-            <right_val>0.0198722109198570</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 3 3 -1.</_>
-                <_>
-                  4 3 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0104538202285767</threshold>
-            <left_val>-0.0576840490102768</left_val>
-            <right_val>0.2180927991867065</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 3 1 2 -1.</_>
-                <_>
-                  16 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4684870368218981e-005</threshold>
-            <left_val>0.0703076869249344</left_val>
-            <right_val>-0.0687716603279114</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 4 6 8 -1.</_>
-                <_>
-                  5 4 3 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0386879108846188</threshold>
-            <left_val>-0.2357024997472763</left_val>
-            <right_val>0.0593729391694069</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 9 4 2 -1.</_>
-                <_>
-                  10 9 2 1 2.</_>
-                <_>
-                  8 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0146778095513582</threshold>
-            <left_val>-4.5802700333297253e-003</left_val>
-            <right_val>0.6644542217254639</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 9 4 2 -1.</_>
-                <_>
-                  6 9 2 1 2.</_>
-                <_>
-                  8 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0101802004501224</threshold>
-            <left_val>0.5220292210578919</left_val>
-            <right_val>-0.0238862205296755</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 3 1 2 -1.</_>
-                <_>
-                  16 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5779709176276810e-005</threshold>
-            <left_val>-0.0755427628755569</left_val>
-            <right_val>0.1076302006840706</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 3 1 2 -1.</_>
-                <_>
-                  1 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3739310563541949e-005</threshold>
-            <left_val>0.1134765967726708</left_val>
-            <right_val>-0.1176417991518974</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 1 16 2 -1.</_>
-                <_>
-                  9 1 8 1 2.</_>
-                <_>
-                  1 2 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0110010495409369</threshold>
-            <left_val>-0.4163585901260376</left_val>
-            <right_val>0.0291555207222700</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 10 4 2 -1.</_>
-                <_>
-                  6 10 2 1 2.</_>
-                <_>
-                  8 11 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0100403595715761</threshold>
-            <left_val>0.5015233755111694</left_val>
-            <right_val>-0.0244732499122620</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 4 3 -1.</_>
-                <_>
-                  8 7 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0110518001019955</threshold>
-            <left_val>0.0379601791501045</left_val>
-            <right_val>-0.2977263033390045</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 4 4 -1.</_>
-                <_>
-                  6 0 2 2 2.</_>
-                <_>
-                  8 2 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0120895402505994</threshold>
-            <left_val>-0.5163480043411255</left_val>
-            <right_val>0.0215219203382730</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 6 6 3 -1.</_>
-                <_>
-                  14 7 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0844105631113052</threshold>
-            <left_val>0.4913380146026611</left_val>
-            <right_val>-0.0146038103848696</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 6 3 -1.</_>
-                <_>
-                  2 7 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0227140001952648</threshold>
-            <left_val>-0.0488631390035152</left_val>
-            <right_val>0.2357286959886551</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 13 2 2 -1.</_>
-                <_>
-                  15 13 1 1 2.</_>
-                <_>
-                  14 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3879110813140869e-005</threshold>
-            <left_val>-0.0642457678914070</left_val>
-            <right_val>0.0656965523958206</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 13 2 2 -1.</_>
-                <_>
-                  2 13 1 1 2.</_>
-                <_>
-                  3 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5649809686001390e-005</threshold>
-            <left_val>-0.1007627993822098</left_val>
-            <right_val>0.1006717979907990</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 12 4 2 -1.</_>
-                <_>
-                  15 12 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0106822997331619</threshold>
-            <left_val>0.0119797298684716</left_val>
-            <right_val>-0.4758862853050232</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 7 4 -1.</_>
-                <_>
-                  9 4 7 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1425171047449112</threshold>
-            <left_val>0.0269787404686213</left_val>
-            <right_val>-0.3589037954807282</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 9 1 2 -1.</_>
-                <_>
-                  17 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6178720872849226e-005</threshold>
-            <left_val>-0.0519438087940216</left_val>
-            <right_val>0.0596988387405872</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 1 2 -1.</_>
-                <_>
-                  0 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5015379758551717e-003</threshold>
-            <left_val>0.0426829196512699</left_val>
-            <right_val>-0.2474233061075211</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 1 -1.</_>
-                <_>
-                  16 0 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7750380468205549e-005</threshold>
-            <left_val>-0.0659698769450188</left_val>
-            <right_val>0.0952353179454803</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 2 1 -1.</_>
-                <_>
-                  1 0 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3739310563541949e-005</threshold>
-            <left_val>0.0914406329393387</left_val>
-            <right_val>-0.1140132024884224</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 4 2 2 -1.</_>
-                <_>
-                  17 4 1 1 2.</_>
-                <_>
-                  16 5 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.8318339716643095e-003</threshold>
-            <left_val>-0.0358028709888458</left_val>
-            <right_val>0.2800019085407257</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 2 2 -1.</_>
-                <_>
-                  0 4 1 1 2.</_>
-                <_>
-                  1 5 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6216499463771470e-005</threshold>
-            <left_val>0.1192717030644417</left_val>
-            <right_val>-0.0900511220097542</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 3 4 6 -1.</_>
-                <_>
-                  9 3 2 3 2.</_>
-                <_>
-                  7 6 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0184157993644476</threshold>
-            <left_val>0.0286770407110453</left_val>
-            <right_val>-0.3459722101688385</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 2 2 -1.</_>
-                <_>
-                  0 0 1 1 2.</_>
-                <_>
-                  1 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5649809686001390e-005</threshold>
-            <left_val>0.1055520027875900</left_val>
-            <right_val>-0.0939618200063705</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 3 16 4 -1.</_>
-                <_>
-                  9 3 8 2 2.</_>
-                <_>
-                  1 5 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0442830286920071</threshold>
-            <left_val>-0.3937725126743317</left_val>
-            <right_val>0.0249951407313347</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 14 2 -1.</_>
-                <_>
-                  2 13 14 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0374921411275864</threshold>
-            <left_val>0.4075055122375488</left_val>
-            <right_val>-0.0246863309293985</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 2 2 -1.</_>
-                <_>
-                  13 0 1 1 2.</_>
-                <_>
-                  12 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4684870368218981e-005</threshold>
-            <left_val>0.0595886707305908</left_val>
-            <right_val>-0.0425871796905994</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 2 2 -1.</_>
-                <_>
-                  4 0 1 1 2.</_>
-                <_>
-                  5 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3879110813140869e-005</threshold>
-            <left_val>0.1165246963500977</left_val>
-            <right_val>-0.0811222568154335</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 1 8 2 -1.</_>
-                <_>
-                  5 2 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.9012550842016935e-003</threshold>
-            <left_val>-0.2543003857135773</left_val>
-            <right_val>0.0380770415067673</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 7 2 2 -1.</_>
-                <_>
-                  4 7 1 1 2.</_>
-                <_>
-                  5 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6903450489044189e-003</threshold>
-            <left_val>0.3091157972812653</left_val>
-            <right_val>-0.0310623906552792</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 14 6 1 -1.</_>
-                <_>
-                  14 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.0722219534218311e-003</threshold>
-            <left_val>-0.2149100005626679</left_val>
-            <right_val>0.0302512794733047</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 2 -1.</_>
-                <_>
-                  7 1 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1917349658906460e-003</threshold>
-            <left_val>0.0556822307407856</left_val>
-            <right_val>-0.1667632013559341</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 2 -1.</_>
-                <_>
-                  5 1 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5904899302986450e-005</threshold>
-            <left_val>-0.1224227026104927</left_val>
-            <right_val>0.0827013477683067</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 1 16 6 -1.</_>
-                <_>
-                  1 3 16 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.6123133078217506e-003</threshold>
-            <left_val>0.1525671035051346</left_val>
-            <right_val>-0.0702950879931450</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 10 8 -1.</_>
-                <_>
-                  8 7 5 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0323125012218952</threshold>
-            <left_val>0.1056381016969681</left_val>
-            <right_val>-0.0887572914361954</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 11 8 -1.</_>
-                <_>
-                  0 9 11 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2404166013002396</threshold>
-            <left_val>-0.5687471032142639</left_val>
-            <right_val>0.0155827002599835</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 2 2 -1.</_>
-                <_>
-                  12 8 1 1 2.</_>
-                <_>
-                  11 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.6818000953644514e-003</threshold>
-            <left_val>0.3900842964649200</left_val>
-            <right_val>-0.0244826804846525</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 16 1 -1.</_>
-                <_>
-                  4 7 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0375609807670116</threshold>
-            <left_val>-0.5919058918952942</left_val>
-            <right_val>0.0148836802691221</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 10 8 -1.</_>
-                <_>
-                  8 7 5 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2604623138904572</threshold>
-            <left_val>-0.8078975081443787</left_val>
-            <right_val>8.0495169386267662e-003</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 10 8 -1.</_>
-                <_>
-                  5 7 5 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2200307995080948</threshold>
-            <left_val>0.0114593897014856</left_val>
-            <right_val>-0.6656962037086487</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 3 2 -1.</_>
-                <_>
-                  13 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0142070800065994</threshold>
-            <left_val>0.0114870695397258</left_val>
-            <right_val>-0.4328494071960449</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 8 2 2 -1.</_>
-                <_>
-                  5 8 1 1 2.</_>
-                <_>
-                  6 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9708760082721710e-003</threshold>
-            <left_val>-0.0313467793166637</left_val>
-            <right_val>0.2830441892147064</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 3 2 -1.</_>
-                <_>
-                  13 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0168589502573013</threshold>
-            <left_val>-0.6498271822929382</left_val>
-            <right_val>9.0222535654902458e-003</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 18 8 -1.</_>
-                <_>
-                  0 7 9 4 2.</_>
-                <_>
-                  9 11 9 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1187689974904060</threshold>
-            <left_val>0.0299480501562357</left_val>
-            <right_val>-0.2969210147857666</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 12 4 2 -1.</_>
-                <_>
-                  15 12 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.5489429719746113e-003</threshold>
-            <left_val>0.0224479902535677</left_val>
-            <right_val>-0.1188597008585930</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 12 4 2 -1.</_>
-                <_>
-                  1 12 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2591039780527353e-003</threshold>
-            <left_val>0.0439781881868839</left_val>
-            <right_val>-0.2000851929187775</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 3 3 -1.</_>
-                <_>
-                  14 1 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.9489958696067333e-003</threshold>
-            <left_val>0.1097998991608620</left_val>
-            <right_val>-0.0513728708028793</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 3 3 -1.</_>
-                <_>
-                  4 1 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0116512998938560</threshold>
-            <left_val>-0.0391622781753540</left_val>
-            <right_val>0.2311145961284638</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 2 3 3 -1.</_>
-                <_>
-                  13 3 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.0093740895390511e-003</threshold>
-            <left_val>0.0655085071921349</left_val>
-            <right_val>-0.0361764915287495</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 3 3 -1.</_>
-                <_>
-                  5 3 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.4954619370400906e-003</threshold>
-            <left_val>-0.0742958337068558</left_val>
-            <right_val>0.1480637043714523</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 1 3 1 -1.</_>
-                <_>
-                  16 2 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.0165609680116177e-003</threshold>
-            <left_val>0.0192055609077215</left_val>
-            <right_val>-0.1320295929908752</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 1 3 -1.</_>
-                <_>
-                  2 2 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.1109711639583111e-003</threshold>
-            <left_val>0.0305455308407545</left_val>
-            <right_val>-0.3213159143924713</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 3 1 -1.</_>
-                <_>
-                  16 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.6829841081053019e-003</threshold>
-            <left_val>0.0255360994488001</left_val>
-            <right_val>-0.1154488995671272</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 1 3 -1.</_>
-                <_>
-                  2 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.2579500693827868e-003</threshold>
-            <left_val>-0.2527283132076263</left_val>
-            <right_val>0.0394384711980820</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 7 2 2 -1.</_>
-                <_>
-                  16 7 1 1 2.</_>
-                <_>
-                  15 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.9859049934893847e-003</threshold>
-            <left_val>0.2665804922580719</left_val>
-            <right_val>-0.0468473583459854</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 4 6 5 -1.</_>
-                <_>
-                  8 6 2 5 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1254094988107681</threshold>
-            <left_val>-0.4057011008262634</left_val>
-            <right_val>0.0230680201202631</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 9 10 2 -1.</_>
-                <_>
-                  11 9 5 1 2.</_>
-                <_>
-                  6 10 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4464139975607395e-003</threshold>
-            <left_val>-0.0338515192270279</left_val>
-            <right_val>0.1091032028198242</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 7 5 8 -1.</_>
-                <_>
-                  4 9 5 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0291290692985058</threshold>
-            <left_val>0.0829424485564232</left_val>
-            <right_val>-0.1039045974612236</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 5 15 6 -1.</_>
-                <_>
-                  2 7 15 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0533427894115448</threshold>
-            <left_val>0.1423411965370178</left_val>
-            <right_val>-0.0637678280472755</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 2 15 -1.</_>
-                <_>
-                  3 5 2 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0698260366916656</threshold>
-            <left_val>-0.2996051907539368</left_val>
-            <right_val>0.0381423793733120</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 7 2 2 -1.</_>
-                <_>
-                  16 7 1 1 2.</_>
-                <_>
-                  15 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0430120164528489e-003</threshold>
-            <left_val>-0.0486700199544430</left_val>
-            <right_val>0.2204319983720779</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 18 2 -1.</_>
-                <_>
-                  0 11 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8559759743511677e-003</threshold>
-            <left_val>-0.0910003632307053</left_val>
-            <right_val>0.0976040363311768</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 8 2 4 -1.</_>
-                <_>
-                  9 10 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.6559829972684383e-003</threshold>
-            <left_val>0.0504679903388023</left_val>
-            <right_val>-0.0828957930207253</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 18 6 -1.</_>
-                <_>
-                  0 8 18 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.3969191014766693</threshold>
-            <left_val>-0.5970314741134644</left_val>
-            <right_val>0.0172442905604839</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 11 12 4 -1.</_>
-                <_>
-                  3 12 12 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0546870790421963</threshold>
-            <left_val>0.3900310099124908</left_val>
-            <right_val>-0.0251556299626827</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 14 6 1 -1.</_>
-                <_>
-                  2 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.4253779128193855e-003</threshold>
-            <left_val>-0.2550624907016754</left_val>
-            <right_val>0.0394066199660301</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 14 6 1 -1.</_>
-                <_>
-                  14 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.5719041526317596e-003</threshold>
-            <left_val>0.0186648592352867</left_val>
-            <right_val>-0.2220326066017151</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 1 -1.</_>
-                <_>
-                  9 0 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2086849892511964e-003</threshold>
-            <left_val>-0.0721488967537880</left_val>
-            <right_val>0.1184407994151115</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 12 1 -1.</_>
-                <_>
-                  8 0 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0130339497700334</threshold>
-            <left_val>0.2058676034212112</left_val>
-            <right_val>-0.0158201493322849</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 8 1 -1.</_>
-                <_>
-                  6 0 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.2425887919962406e-003</threshold>
-            <left_val>-0.0630722567439079</left_val>
-            <right_val>0.1470635980367661</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 14 6 1 -1.</_>
-                <_>
-                  14 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0152673702687025</threshold>
-            <left_val>-0.2679902017116547</left_val>
-            <right_val>6.9345328956842422e-003</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 14 6 1 -1.</_>
-                <_>
-                  2 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9866169467568398e-003</threshold>
-            <left_val>0.0335439704358578</left_val>
-            <right_val>-0.2607846856117249</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 9 10 2 -1.</_>
-                <_>
-                  11 9 5 1 2.</_>
-                <_>
-                  6 10 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0108856903389096</threshold>
-            <left_val>0.0855251327157021</left_val>
-            <right_val>-0.0212142392992973</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 9 6 2 -1.</_>
-                <_>
-                  4 9 3 1 2.</_>
-                <_>
-                  7 10 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8979911953210831e-003</threshold>
-            <left_val>-0.0451360605657101</left_val>
-            <right_val>0.2241200953722000</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 3 2 9 -1.</_>
-                <_>
-                  13 6 2 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1925639063119888</threshold>
-            <left_val>-0.6348158717155457</left_val>
-            <right_val>4.2262570932507515e-003</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 3 9 2 -1.</_>
-                <_>
-                  5 6 3 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1086068972945213</threshold>
-            <left_val>0.0170917399227619</left_val>
-            <right_val>-0.5451073050498962</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 0 6 2 -1.</_>
-                <_>
-                  13 2 2 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0548367016017437</threshold>
-            <left_val>-0.3548921942710877</left_val>
-            <right_val>4.5531531795859337e-003</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 3 2 -1.</_>
-                <_>
-                  7 1 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.8792168274521828e-003</threshold>
-            <left_val>0.0155201097950339</left_val>
-            <right_val>-0.5407999157905579</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 0 2 3 -1.</_>
-                <_>
-                  11 0 1 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.5071100145578384e-003</threshold>
-            <left_val>-0.0158542692661285</left_val>
-            <right_val>0.0666517317295074</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 3 2 -1.</_>
-                <_>
-                  7 0 3 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0169021207839251</threshold>
-            <left_val>0.0222053807228804</left_val>
-            <right_val>-0.3737033903598785</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 2 1 -1.</_>
-                <_>
-                  9 2 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.1124811357585713e-005</threshold>
-            <left_val>0.0337283685803413</left_val>
-            <right_val>-0.0621243193745613</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 10 8 -1.</_>
-                <_>
-                  4 4 10 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0782682672142982</threshold>
-            <left_val>0.4304488897323608</left_val>
-            <right_val>-0.0193186104297638</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 0 3 3 -1.</_>
-                <_>
-                  12 1 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0221087392419577</threshold>
-            <left_val>0.0139799099415541</left_val>
-            <right_val>-0.4232504069805145</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 3 3 -1.</_>
-                <_>
-                  6 1 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.4141050204634666e-003</threshold>
-            <left_val>0.0420096218585968</left_val>
-            <right_val>-0.1836881935596466</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 2 2 -1.</_>
-                <_>
-                  13 0 1 1 2.</_>
-                <_>
-                  12 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6600460842018947e-005</threshold>
-            <left_val>-0.0531449504196644</left_val>
-            <right_val>0.0663439631462097</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 2 2 -1.</_>
-                <_>
-                  4 0 1 1 2.</_>
-                <_>
-                  5 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4684870368218981e-005</threshold>
-            <left_val>-0.0851690322160721</left_val>
-            <right_val>0.1034568026661873</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 12 18 3 -1.</_>
-                <_>
-                  0 13 18 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.6517298370599747e-003</threshold>
-            <left_val>-0.0677581280469894</left_val>
-            <right_val>0.1238183006644249</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 2 1 -1.</_>
-                <_>
-                  5 0 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3739310563541949e-005</threshold>
-            <left_val>-0.1085200011730194</left_val>
-            <right_val>0.0826930627226830</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 1 4 2 -1.</_>
-                <_>
-                  11 1 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5218860246241093e-003</threshold>
-            <left_val>-0.1045825034379959</left_val>
-            <right_val>0.0663281828165054</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 15 2 -1.</_>
-                <_>
-                  5 0 5 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0529961399734020</threshold>
-            <left_val>0.2392195016145706</left_val>
-            <right_val>-0.0411417894065380</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 3 1 -1.</_>
-                <_>
-                  13 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.9717630241066217e-003</threshold>
-            <left_val>0.0353552810847759</left_val>
-            <right_val>-0.1536100953817368</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 1 3 -1.</_>
-                <_>
-                  5 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.0528207793831825e-003</threshold>
-            <left_val>-0.2838408052921295</left_val>
-            <right_val>0.0291973706334829</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 3 2 1 -1.</_>
-                <_>
-                  11 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4023650437593460e-003</threshold>
-            <left_val>0.1938752979040146</left_val>
-            <right_val>-0.0234654601663351</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 3 2 1 -1.</_>
-                <_>
-                  6 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6361160053056665e-005</threshold>
-            <left_val>-0.1317539066076279</left_val>
-            <right_val>0.0617644004523754</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 4 -1.</_>
-                <_>
-                  15 1 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.7318392209708691e-003</threshold>
-            <left_val>-0.0376738198101521</left_val>
-            <right_val>0.1486400067806244</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 4 2 -1.</_>
-                <_>
-                  3 1 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.6025160700082779e-003</threshold>
-            <left_val>-0.0600823499262333</left_val>
-            <right_val>0.1475746929645538</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 2 -1.</_>
-                <_>
-                  9 0 9 1 2.</_>
-                <_>
-                  0 1 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.9826940521597862e-003</threshold>
-            <left_val>0.0502174682915211</left_val>
-            <right_val>-0.1770825982093811</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 18 4 -1.</_>
-                <_>
-                  0 4 9 2 2.</_>
-                <_>
-                  9 6 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0732960328459740</threshold>
-            <left_val>-0.4974305033683777</left_val>
-            <right_val>0.0167066808789968</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 7 4 2 -1.</_>
-                <_>
-                  12 7 2 1 2.</_>
-                <_>
-                  10 8 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0142388697713614</threshold>
-            <left_val>0.5217555761337280</left_val>
-            <right_val>-0.0113009298220277</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 3 3 4 -1.</_>
-                <_>
-                  5 4 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0181554593145847</threshold>
-            <left_val>-0.0388248786330223</left_val>
-            <right_val>0.2092700004577637</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 7 2 2 -1.</_>
-                <_>
-                  16 7 1 1 2.</_>
-                <_>
-                  15 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5779709176276810e-005</threshold>
-            <left_val>0.0649056732654572</left_val>
-            <right_val>-0.0738614425063133</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 7 2 2 -1.</_>
-                <_>
-                  1 7 1 1 2.</_>
-                <_>
-                  2 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9359169275267050e-005</threshold>
-            <left_val>-0.0757590234279633</left_val>
-            <right_val>0.1107048019766808</right_val></_></_>
-        <_>
-          <!-- tree 135 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 7 4 2 -1.</_>
-                <_>
-                  12 7 2 1 2.</_>
-                <_>
-                  10 8 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5904899302986450e-005</threshold>
-            <left_val>-0.0566908791661263</left_val>
-            <right_val>0.0705650299787521</right_val></_></_>
-        <_>
-          <!-- tree 136 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 8 2 2 -1.</_>
-                <_>
-                  6 8 1 1 2.</_>
-                <_>
-                  7 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5659629609435797e-003</threshold>
-            <left_val>-0.0226817093789577</left_val>
-            <right_val>0.3264203071594238</right_val></_></_>
-        <_>
-          <!-- tree 137 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 2 8 -1.</_>
-                <_>
-                  8 7 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0431340709328651</threshold>
-            <left_val>0.0913139432668686</left_val>
-            <right_val>-0.0776849165558815</right_val></_></_>
-        <_>
-          <!-- tree 138 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 4 16 9 -1.</_>
-                <_>
-                  1 7 16 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1150510013103485</threshold>
-            <left_val>-0.0538835301995277</left_val>
-            <right_val>0.1738277971744537</right_val></_></_>
-        <_>
-          <!-- tree 139 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 6 3 6 -1.</_>
-                <_>
-                  15 8 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0376834310591221</threshold>
-            <left_val>0.0119111798703671</left_val>
-            <right_val>-0.1632004976272583</right_val></_></_>
-        <_>
-          <!-- tree 140 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 3 6 -1.</_>
-                <_>
-                  0 8 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0287051200866699</threshold>
-            <left_val>0.0230644904077053</left_val>
-            <right_val>-0.3434646129608154</right_val></_></_>
-        <_>
-          <!-- tree 141 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 6 11 -1.</_>
-                <_>
-                  6 0 3 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0741745382547379</threshold>
-            <left_val>-0.0364534594118595</left_val>
-            <right_val>0.2226549983024597</right_val></_></_>
-        <_>
-          <!-- tree 142 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 4 10 -1.</_>
-                <_>
-                  8 0 2 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0387266613543034</threshold>
-            <left_val>-0.0861116796731949</left_val>
-            <right_val>0.0941641926765442</right_val></_></_>
-        <_>
-          <!-- tree 143 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 4 4 -1.</_>
-                <_>
-                  14 1 2 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.1428101249039173e-003</threshold>
-            <left_val>-0.1222383007407188</left_val>
-            <right_val>0.0341765694320202</right_val></_></_>
-        <_>
-          <!-- tree 144 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 5 6 2 -1.</_>
-                <_>
-                  9 5 6 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0246735997498035</threshold>
-            <left_val>0.0565831884741783</left_val>
-            <right_val>-0.1488883048295975</right_val></_></_>
-        <_>
-          <!-- tree 145 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 10 6 2 -1.</_>
-                <_>
-                  11 10 3 1 2.</_>
-                <_>
-                  8 11 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.9808704107999802e-003</threshold>
-            <left_val>-0.0197595097124577</left_val>
-            <right_val>0.3030026853084564</right_val></_></_>
-        <_>
-          <!-- tree 146 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 7 2 2 -1.</_>
-                <_>
-                  1 7 1 1 2.</_>
-                <_>
-                  2 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.6217122366651893e-005</threshold>
-            <left_val>0.0897242724895477</left_val>
-            <right_val>-0.0896338075399399</right_val></_></_>
-        <_>
-          <!-- tree 147 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 3 3 -1.</_>
-                <_>
-                  10 1 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9440250471234322e-003</threshold>
-            <left_val>0.0459239892661572</left_val>
-            <right_val>-0.1608746051788330</right_val></_></_>
-        <_>
-          <!-- tree 148 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 10 3 -1.</_>
-                <_>
-                  4 1 10 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.9218348041176796e-003</threshold>
-            <left_val>-0.3382751941680908</left_val>
-            <right_val>0.0233459603041410</right_val></_></_>
-        <_>
-          <!-- tree 149 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 7 1 2 -1.</_>
-                <_>
-                  15 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7032099751522765e-005</threshold>
-            <left_val>-0.0716137290000916</left_val>
-            <right_val>0.1437425017356873</right_val></_></_>
-        <_>
-          <!-- tree 150 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 7 8 2 -1.</_>
-                <_>
-                  5 8 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0115753803402185</threshold>
-            <left_val>0.0729895383119583</left_val>
-            <right_val>-0.1120665967464447</right_val></_></_>
-        <_>
-          <!-- tree 151 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 5 6 9 -1.</_>
-                <_>
-                  13 8 2 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3822771012783051</threshold>
-            <left_val>4.3869050568901002e-004</left_val>
-            <right_val>-0.9693664908409119</right_val></_></_>
-        <_>
-          <!-- tree 152 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 5 6 9 -1.</_>
-                <_>
-                  3 8 2 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0256045106798410</threshold>
-            <left_val>-0.0532096885144711</left_val>
-            <right_val>0.1605699956417084</right_val></_></_>
-        <_>
-          <!-- tree 153 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 6 3 6 -1.</_>
-                <_>
-                  9 8 3 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0652327984571457</threshold>
-            <left_val>-5.0901030190289021e-003</left_val>
-            <right_val>0.1052659004926682</right_val></_></_>
-        <_>
-          <!-- tree 154 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 6 6 3 -1.</_>
-                <_>
-                  9 8 2 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0765335634350777</threshold>
-            <left_val>-0.2762224972248077</left_val>
-            <right_val>0.0298370793461800</right_val></_></_>
-        <_>
-          <!-- tree 155 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 10 1 3 -1.</_>
-                <_>
-                  10 11 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.0668321414850652e-005</threshold>
-            <left_val>0.0497616194188595</left_val>
-            <right_val>-0.0646989569067955</right_val></_></_>
-        <_>
-          <!-- tree 156 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 10 1 3 -1.</_>
-                <_>
-                  7 11 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.1437079459428787e-003</threshold>
-            <left_val>0.4274195134639740</left_val>
-            <right_val>-0.0177215505391359</right_val></_></_>
-        <_>
-          <!-- tree 157 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 11 18 4 -1.</_>
-                <_>
-                  9 11 9 2 2.</_>
-                <_>
-                  0 13 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0706991031765938</threshold>
-            <left_val>-0.3164018988609314</left_val>
-            <right_val>0.0242118407040834</right_val></_></_>
-        <_>
-          <!-- tree 158 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 11 6 4 -1.</_>
-                <_>
-                  7 11 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0839718133211136</threshold>
-            <left_val>7.6198792085051537e-003</left_val>
-            <right_val>-0.8065518140792847</right_val></_></_>
-        <_>
-          <!-- tree 159 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 18 12 -1.</_>
-                <_>
-                  0 5 18 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.4975746870040894</threshold>
-            <left_val>6.2387259677052498e-003</left_val>
-            <right_val>-0.8305639028549194</right_val></_></_>
-        <_>
-          <!-- tree 160 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 1 4 -1.</_>
-                <_>
-                  0 12 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4929931648075581e-003</threshold>
-            <left_val>0.0266029108315706</left_val>
-            <right_val>-0.2259957939386368</right_val></_></_>
-        <_>
-          <!-- tree 161 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 6 3 3 -1.</_>
-                <_>
-                  13 7 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0275369994342327</threshold>
-            <left_val>0.1843355000019074</left_val>
-            <right_val>-7.0537109859287739e-003</right_val></_></_>
-        <_>
-          <!-- tree 162 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 6 3 3 -1.</_>
-                <_>
-                  4 7 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5211901888251305e-003</threshold>
-            <left_val>-0.0542923994362354</left_val>
-            <right_val>0.1254532933235169</right_val></_></_>
-        <_>
-          <!-- tree 163 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 4 4 -1.</_>
-                <_>
-                  14 1 2 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0386416800320148</threshold>
-            <left_val>8.4282690659165382e-003</left_val>
-            <right_val>-0.2196173965930939</right_val></_></_>
-        <_>
-          <!-- tree 164 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 4 4 -1.</_>
-                <_>
-                  4 1 4 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0216541700065136</threshold>
-            <left_val>-0.2808293104171753</left_val>
-            <right_val>0.0244111791253090</right_val></_></_>
-        <_>
-          <!-- tree 165 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 6 8 4 -1.</_>
-                <_>
-                  9 6 4 2 2.</_>
-                <_>
-                  5 8 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0290211308747530</threshold>
-            <left_val>-0.3131417036056519</left_val>
-            <right_val>0.0223867595195770</right_val></_></_>
-        <_>
-          <!-- tree 166 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 11 2 2 -1.</_>
-                <_>
-                  3 11 1 1 2.</_>
-                <_>
-                  4 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.4424049556255341e-003</threshold>
-            <left_val>0.6493849158287048</left_val>
-            <right_val>-0.0114663699641824</right_val></_></_>
-        <_>
-          <!-- tree 167 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 10 16 2 -1.</_>
-                <_>
-                  1 11 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0140129495412111</threshold>
-            <left_val>-0.0560599118471146</left_val>
-            <right_val>0.1226307973265648</right_val></_></_>
-        <_>
-          <!-- tree 168 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 13 15 2 -1.</_>
-                <_>
-                  1 14 15 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.5773880816996098e-003</threshold>
-            <left_val>-0.0738088190555573</left_val>
-            <right_val>0.0975568890571594</right_val></_></_>
-        <_>
-          <!-- tree 169 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 12 1 2 -1.</_>
-                <_>
-                  16 12 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.6077621150761843e-003</threshold>
-            <left_val>-0.0911063700914383</left_val>
-            <right_val>0.0298527106642723</right_val></_></_>
-        <_>
-          <!-- tree 170 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 4 2 -1.</_>
-                <_>
-                  0 8 2 1 2.</_>
-                <_>
-                  2 9 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3739310563541949e-005</threshold>
-            <left_val>-0.0737720802426338</left_val>
-            <right_val>0.0916053429245949</right_val></_></_>
-        <_>
-          <!-- tree 171 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 5 1 2 -1.</_>
-                <_>
-                  13 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4684870368218981e-005</threshold>
-            <left_val>-0.0690594092011452</left_val>
-            <right_val>0.1320232003927231</right_val></_></_>
-        <_>
-          <!-- tree 172 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 10 4 -1.</_>
-                <_>
-                  4 6 10 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0574019812047482</threshold>
-            <left_val>0.1449442952871323</left_val>
-            <right_val>-0.0600692182779312</right_val></_></_>
-        <_>
-          <!-- tree 173 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 5 1 2 -1.</_>
-                <_>
-                  13 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.3912649899721146e-003</threshold>
-            <left_val>0.5008565187454224</left_val>
-            <right_val>-4.1706929914653301e-003</right_val></_></_>
-        <_>
-          <!-- tree 174 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 5 1 2 -1.</_>
-                <_>
-                  4 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6128649551537819e-005</threshold>
-            <left_val>-0.0762275531888008</left_val>
-            <right_val>0.1260772049427033</right_val></_></_>
-        <_>
-          <!-- tree 175 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 2 3 7 -1.</_>
-                <_>
-                  14 3 1 7 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0503179281949997</threshold>
-            <left_val>0.0103605901822448</left_val>
-            <right_val>-0.3189758956432343</right_val></_></_>
-        <_>
-          <!-- tree 176 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 2 7 3 -1.</_>
-                <_>
-                  4 3 7 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.1848609000444412e-003</threshold>
-            <left_val>-0.0647242292761803</left_val>
-            <right_val>0.1234103962779045</right_val></_></_>
-        <_>
-          <!-- tree 177 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 5 2 7 -1.</_>
-                <_>
-                  13 5 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.3910661004483700e-003</threshold>
-            <left_val>-0.1028840020298958</left_val>
-            <right_val>0.0440409816801548</right_val></_></_>
-        <_>
-          <!-- tree 178 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 5 2 7 -1.</_>
-                <_>
-                  4 5 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.0285101644694805e-003</threshold>
-            <left_val>0.0370522104203701</left_val>
-            <right_val>-0.2127301990985870</right_val></_></_>
-        <_>
-          <!-- tree 179 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 6 2 -1.</_>
-                <_>
-                  9 2 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0247735399752855</threshold>
-            <left_val>0.3038080930709839</left_val>
-            <right_val>-0.0141654303297400</right_val></_></_>
-        <_>
-          <!-- tree 180 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 6 2 -1.</_>
-                <_>
-                  6 2 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0162911191582680</threshold>
-            <left_val>-0.0679637491703033</left_val>
-            <right_val>0.1020710021257401</right_val></_></_>
-        <_>
-          <!-- tree 181 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 3 5 6 -1.</_>
-                <_>
-                  13 6 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0864686071872711</threshold>
-            <left_val>4.0547042153775692e-003</left_val>
-            <right_val>-0.4740296006202698</right_val></_></_>
-        <_>
-          <!-- tree 182 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 10 4 2 -1.</_>
-                <_>
-                  5 10 2 1 2.</_>
-                <_>
-                  7 11 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.6333149764686823e-003</threshold>
-            <left_val>-0.0353813916444778</left_val>
-            <right_val>0.2016796022653580</right_val></_></_>
-        <_>
-          <!-- tree 183 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 11 4 2 -1.</_>
-                <_>
-                  12 11 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.8694689497351646e-003</threshold>
-            <left_val>0.0223653502762318</left_val>
-            <right_val>-0.0570879615843296</right_val></_></_>
-        <_>
-          <!-- tree 184 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 11 4 2 -1.</_>
-                <_>
-                  4 11 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.7068868987262249e-003</threshold>
-            <left_val>-0.1603562980890274</left_val>
-            <right_val>0.0456907190382481</right_val></_></_>
-        <_>
-          <!-- tree 185 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 12 1 2 -1.</_>
-                <_>
-                  16 12 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.0651168344775215e-005</threshold>
-            <left_val>0.0354789905250072</left_val>
-            <right_val>-0.0344920493662357</right_val></_></_>
-        <_>
-          <!-- tree 186 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 2 1 -1.</_>
-                <_>
-                  2 12 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.0897028520703316e-003</threshold>
-            <left_val>-0.2681294083595276</left_val>
-            <right_val>0.0277175307273865</right_val></_></_>
-        <_>
-          <!-- tree 187 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 3 2 3 -1.</_>
-                <_>
-                  15 4 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.0142004191875458e-003</threshold>
-            <left_val>0.1276749074459076</left_val>
-            <right_val>-0.0258717201650143</right_val></_></_>
-        <_>
-          <!-- tree 188 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 5 6 -1.</_>
-                <_>
-                  0 6 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0101045602932572</threshold>
-            <left_val>0.0417612902820110</left_val>
-            <right_val>-0.1633320003747940</right_val></_></_>
-        <_>
-          <!-- tree 189 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 3 2 3 -1.</_>
-                <_>
-                  15 4 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0232086200267076</threshold>
-            <left_val>-0.0154512897133827</left_val>
-            <right_val>0.2684479057788849</right_val></_></_>
-        <_>
-          <!-- tree 190 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 3 16 9 -1.</_>
-                <_>
-                  1 6 16 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1134508028626442</threshold>
-            <left_val>-0.0744702816009521</left_val>
-            <right_val>0.1102133989334106</right_val></_></_>
-        <_>
-          <!-- tree 191 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 2 -1.</_>
-                <_>
-                  0 10 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1667109793052077e-003</threshold>
-            <left_val>-0.0686589777469635</left_val>
-            <right_val>0.0979631170630455</right_val></_></_>
-        <_>
-          <!-- tree 192 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 11 2 2 -1.</_>
-                <_>
-                  1 11 1 1 2.</_>
-                <_>
-                  2 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.1848782934248447e-005</threshold>
-            <left_val>-0.0807370617985725</left_val>
-            <right_val>0.0817197933793068</right_val></_></_>
-        <_>
-          <!-- tree 193 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 13 2 2 -1.</_>
-                <_>
-                  16 13 1 1 2.</_>
-                <_>
-                  15 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7750380468205549e-005</threshold>
-            <left_val>-0.0818600133061409</left_val>
-            <right_val>0.0863137766718864</right_val></_></_>
-        <_>
-          <!-- tree 194 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 13 2 2 -1.</_>
-                <_>
-                  1 13 1 1 2.</_>
-                <_>
-                  2 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7259990019956604e-005</threshold>
-            <left_val>-0.0809563770890236</left_val>
-            <right_val>0.0821038633584976</right_val></_></_>
-        <_>
-          <!-- tree 195 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 13 2 2 -1.</_>
-                <_>
-                  16 13 1 1 2.</_>
-                <_>
-                  15 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9359169275267050e-005</threshold>
-            <left_val>0.1045090034604073</left_val>
-            <right_val>-0.0726457983255386</right_val></_></_>
-        <_>
-          <!-- tree 196 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 13 2 2 -1.</_>
-                <_>
-                  1 13 1 1 2.</_>
-                <_>
-                  2 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5649809686001390e-005</threshold>
-            <left_val>0.1062941998243332</left_val>
-            <right_val>-0.0679890736937523</right_val></_></_>
-        <_>
-          <!-- tree 197 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 6 2 4 -1.</_>
-                <_>
-                  10 7 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0163933802396059</threshold>
-            <left_val>-0.1715642064809799</left_val>
-            <right_val>0.0276966094970703</right_val></_></_>
-        <_>
-          <!-- tree 198 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 3 3 2 -1.</_>
-                <_>
-                  3 4 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0233597904443741</threshold>
-            <left_val>0.3885076045989990</left_val>
-            <right_val>-0.0166453197598457</right_val></_></_>
-        <_>
-          <!-- tree 199 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 3 2 2 -1.</_>
-                <_>
-                  15 3 1 1 2.</_>
-                <_>
-                  14 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2364470642060041e-003</threshold>
-            <left_val>-0.0172002408653498</left_val>
-            <right_val>0.2104862928390503</right_val></_></_>
-        <_>
-          <!-- tree 200 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 2 6 4 -1.</_>
-                <_>
-                  6 2 3 2 2.</_>
-                <_>
-                  9 4 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0127381896600127</threshold>
-            <left_val>-0.2532509863376617</left_val>
-            <right_val>0.0284554697573185</right_val></_></_>
-        <_>
-          <!-- tree 201 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 1 6 3 -1.</_>
-                <_>
-                  10 2 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0130351698026061</threshold>
-            <left_val>-0.0366394892334938</left_val>
-            <right_val>0.0509026385843754</right_val></_></_>
-        <_>
-          <!-- tree 202 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 3 1 2 -1.</_>
-                <_>
-                  7 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.8332999136182480e-005</threshold>
-            <left_val>-0.0837918072938919</left_val>
-            <right_val>0.0838518589735031</right_val></_></_>
-        <_>
-          <!-- tree 203 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 1 6 4 -1.</_>
-                <_>
-                  12 1 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0123362001031637</threshold>
-            <left_val>-0.0514171607792377</left_val>
-            <right_val>0.0532306805253029</right_val></_></_>
-        <_>
-          <!-- tree 204 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 9 2 -1.</_>
-                <_>
-                  12 3 3 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0327928103506565</threshold>
-            <left_val>0.2327339947223663</left_val>
-            <right_val>-0.0373882502317429</right_val></_></_>
-        <_>
-          <!-- tree 205 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 2 1 -1.</_>
-                <_>
-                  8 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0052760373800993e-003</threshold>
-            <left_val>0.0278136208653450</left_val>
-            <right_val>-0.2950099110603333</right_val></_></_>
-        <_>
-          <!-- tree 206 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 6 4 -1.</_>
-                <_>
-                  3 1 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0139068197458982</threshold>
-            <left_val>-0.0543732605874538</left_val>
-            <right_val>0.1252592056989670</right_val></_></_>
-        <_>
-          <!-- tree 207 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 1 16 7 -1.</_>
-                <_>
-                  5 1 8 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2173788994550705</threshold>
-            <left_val>0.0416372790932655</left_val>
-            <right_val>-0.1780032962560654</right_val></_></_>
-        <_>
-          <!-- tree 208 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 12 9 -1.</_>
-                <_>
-                  7 6 4 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.6798750162124634</threshold>
-            <left_val>-0.0189819093793631</left_val>
-            <right_val>0.3512358963489533</right_val></_></_>
-        <_>
-          <!-- tree 209 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 8 7 2 -1.</_>
-                <_>
-                  6 9 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0497565008699894</threshold>
-            <left_val>-0.8002396821975708</left_val>
-            <right_val>9.7657497972249985e-003</right_val></_></_>
-        <_>
-          <!-- tree 210 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 3 3 -1.</_>
-                <_>
-                  4 1 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5796870253980160e-003</threshold>
-            <left_val>0.0210781805217266</left_val>
-            <right_val>-0.2844468951225281</right_val></_></_></trees>
-      <stage_threshold>-1.2603249549865723</stage_threshold>
-      <parent>13</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 15 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 8 2 -1.</_>
-                <_>
-                  9 3 4 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1051426008343697</threshold>
-            <left_val>-0.1030462011694908</left_val>
-            <right_val>0.5264183282852173</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 5 8 5 -1.</_>
-                <_>
-                  8 5 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0218748692423105</threshold>
-            <left_val>-0.1149196997284889</left_val>
-            <right_val>0.0879510119557381</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 4 11 -1.</_>
-                <_>
-                  8 0 2 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2591390013694763</threshold>
-            <left_val>-1.8469070710125379e-005</left_val>
-            <right_val>-789.6055297851562500</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 8 6 5 -1.</_>
-                <_>
-                  12 8 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.2329362630844116e-003</threshold>
-            <left_val>0.1215251982212067</left_val>
-            <right_val>-0.2199721932411194</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 9 2 -1.</_>
-                <_>
-                  3 1 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.4537489563226700e-003</threshold>
-            <left_val>0.1169904991984367</left_val>
-            <right_val>-0.1987470984458923</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 8 6 5 -1.</_>
-                <_>
-                  12 8 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0507839918136597</threshold>
-            <left_val>0.0343447588384151</left_val>
-            <right_val>-0.1997928023338318</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 6 5 -1.</_>
-                <_>
-                  3 8 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3065801039338112e-003</threshold>
-            <left_val>0.1021941006183624</left_val>
-            <right_val>-0.2324876040220261</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 2 2 2 -1.</_>
-                <_>
-                  10 2 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0198521409183741</threshold>
-            <left_val>-0.5773574709892273</left_val>
-            <right_val>0.0107486303895712</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 1 4 -1.</_>
-                <_>
-                  9 1 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0251020099967718</threshold>
-            <left_val>0.0335165187716484</left_val>
-            <right_val>-0.5189111232757568</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 10 16 2 -1.</_>
-                <_>
-                  1 11 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.9596240967512131e-003</threshold>
-            <left_val>-0.1546567976474762</left_val>
-            <right_val>0.1001181975007057</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 12 2 -1.</_>
-                <_>
-                  3 2 6 1 2.</_>
-                <_>
-                  9 3 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.9100659564137459e-003</threshold>
-            <left_val>-0.3358919024467468</left_val>
-            <right_val>0.0603443384170532</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 3 2 -1.</_>
-                <_>
-                  16 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.0328548103570938e-003</threshold>
-            <left_val>-0.0104679698124528</left_val>
-            <right_val>-0.3561008870601654</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 2 3 -1.</_>
-                <_>
-                  2 1 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.5141025483608246e-003</threshold>
-            <left_val>0.0334267392754555</left_val>
-            <right_val>-0.4149996042251587</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 1 -1.</_>
-                <_>
-                  7 0 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0145813003182411</threshold>
-            <left_val>-0.1194749996066093</left_val>
-            <right_val>0.1058669984340668</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 9 2 -1.</_>
-                <_>
-                  12 5 3 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1152421012520790</threshold>
-            <left_val>-0.0234193205833435</left_val>
-            <right_val>0.3951525986194611</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 6 -1.</_>
-                <_>
-                  16 3 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1557710133492947e-003</threshold>
-            <left_val>0.1136960014700890</left_val>
-            <right_val>-0.1149196028709412</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 18 6 -1.</_>
-                <_>
-                  0 6 9 3 2.</_>
-                <_>
-                  9 9 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1315298974514008</threshold>
-            <left_val>-0.4076144099235535</left_val>
-            <right_val>0.0280955005437136</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 18 6 -1.</_>
-                <_>
-                  9 1 9 3 2.</_>
-                <_>
-                  0 4 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0877189636230469</threshold>
-            <left_val>0.0119158001616597</left_val>
-            <right_val>-0.6239578723907471</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 6 1 -1.</_>
-                <_>
-                  9 0 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1810648292303085e-003</threshold>
-            <left_val>-0.1093714982271195</left_val>
-            <right_val>0.1119602024555206</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 5 1 2 -1.</_>
-                <_>
-                  9 5 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.5339239984750748e-003</threshold>
-            <left_val>0.1208496019244194</left_val>
-            <right_val>-5.4252031259238720e-003</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 5 2 1 -1.</_>
-                <_>
-                  9 5 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>1.1804329697042704e-003</threshold>
-            <left_val>-0.1230735033750534</left_val>
-            <right_val>0.1281574070453644</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 5 2 -1.</_>
-                <_>
-                  7 2 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.6288531050086021e-003</threshold>
-            <left_val>0.0316065102815628</left_val>
-            <right_val>-0.2810359895229340</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 8 1 3 -1.</_>
-                <_>
-                  5 9 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.9457567557692528e-004</threshold>
-            <left_val>-0.0659783333539963</left_val>
-            <right_val>0.1489125043153763</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 5 2 -1.</_>
-                <_>
-                  7 8 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.7337269168347120e-003</threshold>
-            <left_val>0.0598995685577393</left_val>
-            <right_val>-0.1800362020730972</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 6 3 3 -1.</_>
-                <_>
-                  7 7 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>1.0250649938825518e-004</threshold>
-            <left_val>-0.0862240791320801</left_val>
-            <right_val>0.1390471011400223</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 9 3 2 -1.</_>
-                <_>
-                  11 10 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.1721882298588753e-003</threshold>
-            <left_val>-0.0246597994118929</left_val>
-            <right_val>0.0794360563158989</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 18 4 -1.</_>
-                <_>
-                  0 8 9 2 2.</_>
-                <_>
-                  9 10 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0485266894102097</threshold>
-            <left_val>0.0381521992385387</left_val>
-            <right_val>-0.3375906944274902</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 8 2 3 -1.</_>
-                <_>
-                  16 9 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.4143159911036491e-003</threshold>
-            <left_val>5.1525980234146118e-003</left_val>
-            <right_val>-0.1651131063699722</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 2 3 -1.</_>
-                <_>
-                  0 9 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.5702888853847980e-003</threshold>
-            <left_val>-0.2356259971857071</left_val>
-            <right_val>0.0417603217065334</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 4 6 -1.</_>
-                <_>
-                  11 10 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0222564004361629</threshold>
-            <left_val>-0.0281212199479342</left_val>
-            <right_val>0.1349356025457382</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 11 18 2 -1.</_>
-                <_>
-                  0 12 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.8191271014511585e-003</threshold>
-            <left_val>-0.1185360997915268</left_val>
-            <right_val>0.0843502730131149</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 5 14 8 -1.</_>
-                <_>
-                  2 7 14 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1453399956226349</threshold>
-            <left_val>-0.0286314208060503</left_val>
-            <right_val>0.3568331897258759</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 8 2 2 -1.</_>
-                <_>
-                  8 9 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.9769659098237753e-004</threshold>
-            <left_val>0.0549010299146175</left_val>
-            <right_val>-0.1785632967948914</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 4 6 -1.</_>
-                <_>
-                  11 10 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0416826009750366</threshold>
-            <left_val>-0.0183632392436266</left_val>
-            <right_val>0.1616858989000320</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 6 3 -1.</_>
-                <_>
-                  9 0 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0501397587358952</threshold>
-            <left_val>-0.0449284687638283</left_val>
-            <right_val>0.2146534025669098</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 4 2 -1.</_>
-                <_>
-                  9 1 2 1 2.</_>
-                <_>
-                  7 2 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.0929069034755230e-003</threshold>
-            <left_val>0.0301715005189180</left_val>
-            <right_val>-0.3513563871383667</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 8 4 6 -1.</_>
-                <_>
-                  3 10 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0181560907512903</threshold>
-            <left_val>-0.0552617982029915</left_val>
-            <right_val>0.1947118937969208</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 6 6 4 -1.</_>
-                <_>
-                  9 6 3 2 2.</_>
-                <_>
-                  6 8 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0202469304203987</threshold>
-            <left_val>0.0373657196760178</left_val>
-            <right_val>-0.3007850944995880</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 7 6 3 -1.</_>
-                <_>
-                  3 8 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0117160901427269</threshold>
-            <left_val>-0.0614580996334553</left_val>
-            <right_val>0.1639769971370697</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 7 2 3 -1.</_>
-                <_>
-                  9 8 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-8.1182513386011124e-003</threshold>
-            <left_val>-0.0887261107563972</left_val>
-            <right_val>0.0327240005135536</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 18 6 -1.</_>
-                <_>
-                  0 8 9 3 2.</_>
-                <_>
-                  9 11 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1468164026737213</threshold>
-            <left_val>-0.4930160939693451</left_val>
-            <right_val>0.0201582796871662</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 3 1 -1.</_>
-                <_>
-                  10 2 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.2891620434820652e-003</threshold>
-            <left_val>-0.2514236867427826</left_val>
-            <right_val>9.5387678593397141e-003</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 5 -1.</_>
-                <_>
-                  7 0 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0148622198030353</threshold>
-            <left_val>0.2594371140003204</left_val>
-            <right_val>-0.0313785411417484</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 3 2 -1.</_>
-                <_>
-                  10 3 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0177154596894979</threshold>
-            <left_val>-0.5113834142684937</left_val>
-            <right_val>7.5401309877634048e-003</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 2 2 1 -1.</_>
-                <_>
-                  7 2 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.5196522306650877e-004</threshold>
-            <left_val>0.0692363083362579</left_val>
-            <right_val>-0.1258170008659363</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 1 6 3 -1.</_>
-                <_>
-                  11 2 6 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0662163421511650</threshold>
-            <left_val>-9.8208645358681679e-003</left_val>
-            <right_val>0.3608235120773315</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 1 3 6 -1.</_>
-                <_>
-                  7 2 1 6 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.2799885421991348e-003</threshold>
-            <left_val>-0.0748182237148285</left_val>
-            <right_val>0.1512002944946289</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 3 16 4 -1.</_>
-                <_>
-                  9 3 8 2 2.</_>
-                <_>
-                  1 5 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0126259000971913</threshold>
-            <left_val>0.0625171065330505</left_val>
-            <right_val>-0.1584693044424057</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 4 4 -1.</_>
-                <_>
-                  8 5 4 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0506105907261372</threshold>
-            <left_val>0.4304474890232086</left_val>
-            <right_val>-0.0195215903222561</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 15 14 -1.</_>
-                <_>
-                  8 0 5 14 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.6441524028778076</threshold>
-            <left_val>0.0196064803749323</left_val>
-            <right_val>-0.3712278902530670</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 12 10 -1.</_>
-                <_>
-                  6 1 6 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0629194527864456</threshold>
-            <left_val>-0.1244589984416962</left_val>
-            <right_val>0.0681276023387909</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 11 3 1 -1.</_>
-                <_>
-                  16 12 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0158867593854666</threshold>
-            <left_val>3.7582379300147295e-003</left_val>
-            <right_val>-0.2513279914855957</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 11 1 3 -1.</_>
-                <_>
-                  2 12 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.3676711134612560e-003</threshold>
-            <left_val>-0.1814053952693939</left_val>
-            <right_val>0.0453032106161118</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 1 14 -1.</_>
-                <_>
-                  15 7 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0252422392368317</threshold>
-            <left_val>0.0168007891625166</left_val>
-            <right_val>-0.3151563107967377</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 2 6 -1.</_>
-                <_>
-                  8 6 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0137373497709632</threshold>
-            <left_val>-0.0329083986580372</left_val>
-            <right_val>0.2309325933456421</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 6 4 2 -1.</_>
-                <_>
-                  7 7 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1248359698802233e-003</threshold>
-            <left_val>0.0645555630326271</left_val>
-            <right_val>-0.1412463039159775</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 4 -1.</_>
-                <_>
-                  8 1 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.0910829342901707e-003</threshold>
-            <left_val>-0.4605179131031036</left_val>
-            <right_val>0.0166283007711172</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 3 1 3 -1.</_>
-                <_>
-                  12 4 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.0456880815327168e-003</threshold>
-            <left_val>8.3615174517035484e-003</left_val>
-            <right_val>-0.2696534991264343</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 9 9 -1.</_>
-                <_>
-                  7 0 3 9 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0344691611826420</threshold>
-            <left_val>0.2158204019069672</left_val>
-            <right_val>-0.0349247604608536</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 3 1 -1.</_>
-                <_>
-                  10 2 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.9153727458324283e-005</threshold>
-            <left_val>-0.0510439388453960</left_val>
-            <right_val>0.0346905216574669</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 1 3 -1.</_>
-                <_>
-                  8 2 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.6213719546794891e-003</threshold>
-            <left_val>-0.4158585965633392</left_val>
-            <right_val>0.0193911194801331</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 12 8 -1.</_>
-                <_>
-                  6 7 6 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1363825052976608</threshold>
-            <left_val>-0.0445473901927471</left_val>
-            <right_val>0.1760841012001038</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 2 3 -1.</_>
-                <_>
-                  8 1 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5193500332534313e-003</threshold>
-            <left_val>-0.0905184969305992</left_val>
-            <right_val>0.0875409692525864</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 4 14 6 -1.</_>
-                <_>
-                  2 6 14 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0783995389938354</threshold>
-            <left_val>0.2648878097534180</left_val>
-            <right_val>-0.0324346311390400</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 3 6 -1.</_>
-                <_>
-                  4 6 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.1002319455146790e-003</threshold>
-            <left_val>-0.1140376999974251</left_val>
-            <right_val>0.1040271967649460</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 1 5 8 -1.</_>
-                <_>
-                  12 5 5 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0626892074942589</threshold>
-            <left_val>-0.0568519681692123</left_val>
-            <right_val>0.0147632304579020</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 1 5 8 -1.</_>
-                <_>
-                  1 5 5 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0698204934597015</threshold>
-            <left_val>0.0167288593947887</left_val>
-            <right_val>-0.5039923191070557</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 3 3 -1.</_>
-                <_>
-                  14 1 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0102383298799396</threshold>
-            <left_val>-0.0286362692713737</left_val>
-            <right_val>0.1852203011512756</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 3 3 -1.</_>
-                <_>
-                  4 1 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0149942804127932</threshold>
-            <left_val>0.2242967933416367</left_val>
-            <right_val>-0.0332668386399746</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 10 2 -1.</_>
-                <_>
-                  11 0 5 1 2.</_>
-                <_>
-                  6 1 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.2933390252292156e-003</threshold>
-            <left_val>0.0299122091382742</left_val>
-            <right_val>-0.2173777073621750</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 16 2 -1.</_>
-                <_>
-                  1 0 8 1 2.</_>
-                <_>
-                  9 1 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.0084912478923798e-003</threshold>
-            <left_val>0.0341741293668747</left_val>
-            <right_val>-0.2623764872550964</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 3 12 6 -1.</_>
-                <_>
-                  9 3 6 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1146114021539688</threshold>
-            <left_val>-0.0244884397834539</left_val>
-            <right_val>0.0970916673541069</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 6 6 3 -1.</_>
-                <_>
-                  8 7 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0521271787583828</threshold>
-            <left_val>-0.6413993835449219</left_val>
-            <right_val>0.0115570602938533</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 1 12 10 -1.</_>
-                <_>
-                  6 1 6 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0748131424188614</threshold>
-            <left_val>-0.0502658300101757</left_val>
-            <right_val>0.0502240210771561</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 13 6 2 -1.</_>
-                <_>
-                  4 13 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0191232096403837</threshold>
-            <left_val>-0.3109129071235657</left_val>
-            <right_val>0.0227278098464012</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 6 3 -1.</_>
-                <_>
-                  11 1 6 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0540968813002110</threshold>
-            <left_val>-9.0643512085080147e-003</left_val>
-            <right_val>0.2507429122924805</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 3 6 -1.</_>
-                <_>
-                  7 1 1 6 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0256583709269762</threshold>
-            <left_val>0.2121652960777283</left_val>
-            <right_val>-0.0351778715848923</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 4 10 4 -1.</_>
-                <_>
-                  8 4 5 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1509605050086975</threshold>
-            <left_val>0.0186689905822277</left_val>
-            <right_val>-0.2159824073314667</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 10 4 -1.</_>
-                <_>
-                  5 4 5 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1112224012613297</threshold>
-            <left_val>0.0342452004551888</left_val>
-            <right_val>-0.2157337963581085</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 9 2 4 -1.</_>
-                <_>
-                  16 10 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.0547110479092225e-005</threshold>
-            <left_val>-0.0372137017548084</left_val>
-            <right_val>0.0372152701020241</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 13 16 2 -1.</_>
-                <_>
-                  1 14 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.8619431219995022e-003</threshold>
-            <left_val>-0.0773961320519447</left_val>
-            <right_val>0.0930630415678024</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 13 14 2 -1.</_>
-                <_>
-                  2 14 14 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0341941900551319</threshold>
-            <left_val>0.3447993993759155</left_val>
-            <right_val>-0.0335593782365322</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 2 4 -1.</_>
-                <_>
-                  0 10 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.2817560285329819e-003</threshold>
-            <left_val>-0.2960028946399689</left_val>
-            <right_val>0.0260884091258049</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 7 15 3 -1.</_>
-                <_>
-                  2 8 15 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0109525797888637</threshold>
-            <left_val>-0.0587211996316910</left_val>
-            <right_val>0.1384337991476059</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 12 8 -1.</_>
-                <_>
-                  3 3 12 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0810781270265579</threshold>
-            <left_val>-0.0729383602738380</left_val>
-            <right_val>0.0964554026722908</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 4 3 6 -1.</_>
-                <_>
-                  9 6 3 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1066536009311676</threshold>
-            <left_val>-0.0128484796732664</left_val>
-            <right_val>0.1897089034318924</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 4 6 3 -1.</_>
-                <_>
-                  9 6 2 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0685272365808487</threshold>
-            <left_val>-0.3246979117393494</left_val>
-            <right_val>0.0234368797391653</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 8 13 -1.</_>
-                <_>
-                  10 0 4 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0367356203496456</threshold>
-            <left_val>-0.0583354011178017</left_val>
-            <right_val>0.0843546465039253</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 12 7 -1.</_>
-                <_>
-                  5 0 4 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0846856981515884</threshold>
-            <left_val>-0.0645033568143845</left_val>
-            <right_val>0.1606536060571671</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 9 6 2 -1.</_>
-                <_>
-                  13 9 3 1 2.</_>
-                <_>
-                  10 10 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.6365711130201817e-003</threshold>
-            <left_val>-0.0495950989425182</left_val>
-            <right_val>0.1717385947704315</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 1 3 -1.</_>
-                <_>
-                  3 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.8055797815322876e-003</threshold>
-            <left_val>-0.2732417881488800</left_val>
-            <right_val>0.0275324694812298</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 3 2 -1.</_>
-                <_>
-                  15 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.6100764349102974e-003</threshold>
-            <left_val>-0.2327723056077957</left_val>
-            <right_val>0.0202909894287586</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 1 10 4 -1.</_>
-                <_>
-                  5 2 10 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0781866833567619</threshold>
-            <left_val>0.0119251701980829</left_val>
-            <right_val>-0.5618839263916016</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 2 3 8 -1.</_>
-                <_>
-                  16 3 1 8 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0749451220035553</threshold>
-            <left_val>2.2771470248699188e-003</left_val>
-            <right_val>-0.6749752163887024</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 8 3 -1.</_>
-                <_>
-                  2 3 8 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0366185903549194</threshold>
-            <left_val>0.1956354975700378</left_val>
-            <right_val>-0.0443037599325180</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 3 2 -1.</_>
-                <_>
-                  15 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.5921240448951721e-003</threshold>
-            <left_val>0.0411940589547157</left_val>
-            <right_val>-0.1164683029055595</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 2 3 -1.</_>
-                <_>
-                  3 1 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.7376391962170601e-003</threshold>
-            <left_val>0.0310751292854548</left_val>
-            <right_val>-0.2554813921451569</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 5 2 4 -1.</_>
-                <_>
-                  16 5 1 2 2.</_>
-                <_>
-                  15 7 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.8166980482637882e-003</threshold>
-            <left_val>-0.0413872785866261</left_val>
-            <right_val>0.2016701996326447</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 2 14 -1.</_>
-                <_>
-                  3 7 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0658822432160378</threshold>
-            <left_val>0.0130075104534626</left_val>
-            <right_val>-0.5545914173126221</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 6 2 3 -1.</_>
-                <_>
-                  16 7 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5577779849991202e-003</threshold>
-            <left_val>-0.0237464196980000</left_val>
-            <right_val>0.0413672998547554</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 2 3 -1.</_>
-                <_>
-                  0 7 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.4769590497016907e-003</threshold>
-            <left_val>-0.2681433856487274</left_val>
-            <right_val>0.0244701895862818</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 5 2 4 -1.</_>
-                <_>
-                  16 5 1 2 2.</_>
-                <_>
-                  15 7 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.5535528808832169e-003</threshold>
-            <left_val>0.2032303065061569</left_val>
-            <right_val>-0.0357219502329826</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 8 6 -1.</_>
-                <_>
-                  1 3 8 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0669888928532600</threshold>
-            <left_val>-0.5183855295181274</left_val>
-            <right_val>0.0108443703502417</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 6 -1.</_>
-                <_>
-                  16 3 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0414705388247967</threshold>
-            <left_val>2.7333609759807587e-003</left_val>
-            <right_val>-0.3563300967216492</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 2 6 -1.</_>
-                <_>
-                  0 3 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.4693330526351929e-003</threshold>
-            <left_val>0.0982717424631119</left_val>
-            <right_val>-0.0729679390788078</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 3 -1.</_>
-                <_>
-                  13 1 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-8.2196565344929695e-003</threshold>
-            <left_val>0.1082827970385552</left_val>
-            <right_val>-0.0472562387585640</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 3 4 -1.</_>
-                <_>
-                  5 1 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.9876541644334793e-003</threshold>
-            <left_val>-0.0470379404723644</left_val>
-            <right_val>0.1751355975866318</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 15 -1.</_>
-                <_>
-                  3 0 6 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2835718095302582</threshold>
-            <left_val>0.1180493980646133</left_val>
-            <right_val>-0.0566624216735363</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 1 4 7 -1.</_>
-                <_>
-                  8 1 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0311159901320934</threshold>
-            <left_val>0.3807953000068665</left_val>
-            <right_val>-0.0197968706488609</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 3 4 -1.</_>
-                <_>
-                  10 1 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0109928799793124</threshold>
-            <left_val>0.0220177192240953</left_val>
-            <right_val>-0.0803828462958336</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 4 3 -1.</_>
-                <_>
-                  8 1 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0165618509054184</threshold>
-            <left_val>-0.4399909079074860</left_val>
-            <right_val>0.0151666197925806</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 3 2 2 -1.</_>
-                <_>
-                  17 3 1 1 2.</_>
-                <_>
-                  16 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.8488729838281870e-003</threshold>
-            <left_val>-0.0196843091398478</left_val>
-            <right_val>0.1602668017148972</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- 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.8709079641848803e-005</threshold>
-            <left_val>0.0893735587596893</left_val>
-            <right_val>-0.0703077465295792</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 2 2 2 -1.</_>
-                <_>
-                  16 2 1 1 2.</_>
-                <_>
-                  15 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3440540796145797e-005</threshold>
-            <left_val>0.1077063977718353</left_val>
-            <right_val>-0.0792713835835457</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- 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>5.1137150876456872e-005</threshold>
-            <left_val>-0.0742689892649651</left_val>
-            <right_val>0.0928685069084167</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 3 3 1 -1.</_>
-                <_>
-                  11 4 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0109409997239709</threshold>
-            <left_val>-0.6095427870750427</left_val>
-            <right_val>7.1117929182946682e-003</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 9 4 -1.</_>
-                <_>
-                  5 0 9 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1670096963644028</threshold>
-            <left_val>0.0173986200243235</left_val>
-            <right_val>-0.3483031988143921</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 2 3 7 -1.</_>
-                <_>
-                  11 3 1 7 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0536270104348660</threshold>
-            <left_val>-0.2517541944980621</left_val>
-            <right_val>3.0668680556118488e-003</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 2 7 3 -1.</_>
-                <_>
-                  7 3 7 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0168547891080379</threshold>
-            <left_val>-0.2322666049003601</left_val>
-            <right_val>0.0295417997986078</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 3 2 2 -1.</_>
-                <_>
-                  17 3 1 1 2.</_>
-                <_>
-                  16 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.6016108030453324e-004</threshold>
-            <left_val>0.0844743698835373</left_val>
-            <right_val>-0.0292119607329369</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 6 2 2 -1.</_>
-                <_>
-                  6 6 1 1 2.</_>
-                <_>
-                  7 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.8979410823667422e-005</threshold>
-            <left_val>-0.0716504007577896</left_val>
-            <right_val>0.0894464477896690</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 4 4 4 -1.</_>
-                <_>
-                  7 6 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0290991999208927</threshold>
-            <left_val>0.1513338983058929</left_val>
-            <right_val>-0.0443021915853024</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 10 6 -1.</_>
-                <_>
-                  0 3 10 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0603702887892723</threshold>
-            <left_val>0.0239160899072886</left_val>
-            <right_val>-0.2869639098644257</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 3 2 2 -1.</_>
-                <_>
-                  17 3 1 1 2.</_>
-                <_>
-                  16 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.2198538469383493e-005</threshold>
-            <left_val>-0.0552247799932957</left_val>
-            <right_val>0.0630851984024048</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 2 2 -1.</_>
-                <_>
-                  0 3 1 1 2.</_>
-                <_>
-                  1 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3573388868244365e-005</threshold>
-            <left_val>0.0917791575193405</left_val>
-            <right_val>-0.0733837336301804</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 12 8 -1.</_>
-                <_>
-                  6 7 6 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0921942219138145</threshold>
-            <left_val>0.0845907479524612</left_val>
-            <right_val>-0.0435498803853989</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 6 3 3 -1.</_>
-                <_>
-                  6 7 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.8016350269317627e-003</threshold>
-            <left_val>-0.0395293086767197</left_val>
-            <right_val>0.1772428005933762</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 8 2 5 -1.</_>
-                <_>
-                  13 8 1 5 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0136591903865337</threshold>
-            <left_val>-0.0314534008502960</left_val>
-            <right_val>0.0921841263771057</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 4 4 -1.</_>
-                <_>
-                  7 7 4 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0202402602881193</threshold>
-            <left_val>0.1293997019529343</left_val>
-            <right_val>-0.0722166895866394</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 12 8 -1.</_>
-                <_>
-                  6 7 6 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.3310942053794861</threshold>
-            <left_val>-0.5684415102005005</left_val>
-            <right_val>4.8965080641210079e-003</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 12 13 -1.</_>
-                <_>
-                  6 2 6 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.3559010922908783</threshold>
-            <left_val>-0.6088926196098328</left_val>
-            <right_val>0.0121664199978113</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 18 6 -1.</_>
-                <_>
-                  0 11 18 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3267132937908173</threshold>
-            <left_val>0.0114083802327514</left_val>
-            <right_val>-0.5427042245864868</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 2 4 13 -1.</_>
-                <_>
-                  3 2 2 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0637968480587006</threshold>
-            <left_val>-0.8073747158050537</left_val>
-            <right_val>7.3937238194048405e-003</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 3 3 1 -1.</_>
-                <_>
-                  11 4 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.1656321845948696e-003</threshold>
-            <left_val>0.0186478793621063</left_val>
-            <right_val>-0.0633438527584076</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 12 9 -1.</_>
-                <_>
-                  7 5 4 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.6281797885894775</threshold>
-            <left_val>-0.0229623205959797</left_val>
-            <right_val>0.2844201028347015</right_val></_></_>
-        <_>
-          <!-- tree 135 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 3 3 1 -1.</_>
-                <_>
-                  11 4 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.7043769629672170e-005</threshold>
-            <left_val>-0.0583966001868248</left_val>
-            <right_val>0.0271189305931330</right_val></_></_>
-        <_>
-          <!-- tree 136 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 1 3 -1.</_>
-                <_>
-                  7 4 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-8.2484260201454163e-003</threshold>
-            <left_val>-0.3674455881118774</left_val>
-            <right_val>0.0179638694971800</right_val></_></_>
-        <_>
-          <!-- tree 137 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 8 6 -1.</_>
-                <_>
-                  9 2 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2131956070661545</threshold>
-            <left_val>4.8015988431870937e-003</left_val>
-            <right_val>-0.2512898147106171</right_val></_></_>
-        <_>
-          <!-- tree 138 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 2 8 6 -1.</_>
-                <_>
-                  5 2 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0926481783390045</threshold>
-            <left_val>0.4080882966518402</left_val>
-            <right_val>-0.0169616807252169</right_val></_></_>
-        <_>
-          <!-- tree 139 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 2 1 -1.</_>
-                <_>
-                  12 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.7387576564215124e-005</threshold>
-            <left_val>-0.1143013015389442</left_val>
-            <right_val>0.0627095922827721</right_val></_></_>
-        <_>
-          <!-- tree 140 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 1 2 -1.</_>
-                <_>
-                  6 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.2264030091464520e-003</threshold>
-            <left_val>-0.3810344934463501</left_val>
-            <right_val>0.0188566204160452</right_val></_></_>
-        <_>
-          <!-- tree 141 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 4 2 -1.</_>
-                <_>
-                  10 1 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.5156818814575672e-003</threshold>
-            <left_val>-0.3234907984733582</left_val>
-            <right_val>0.0157586503773928</right_val></_></_>
-        <_>
-          <!-- tree 142 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 8 2 -1.</_>
-                <_>
-                  4 0 4 1 2.</_>
-                <_>
-                  8 1 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1322699505835772e-003</threshold>
-            <left_val>0.0371164008975029</left_val>
-            <right_val>-0.1631309986114502</right_val></_></_>
-        <_>
-          <!-- tree 143 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 12 8 3 -1.</_>
-                <_>
-                  9 12 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0309491790831089</threshold>
-            <left_val>-0.2248778045177460</left_val>
-            <right_val>0.0159355606883764</right_val></_></_>
-        <_>
-          <!-- tree 144 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 13 16 1 -1.</_>
-                <_>
-                  5 13 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0119997104629874</threshold>
-            <left_val>0.1060421019792557</left_val>
-            <right_val>-0.0560035184025764</right_val></_></_>
-        <_>
-          <!-- tree 145 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 13 10 1 -1.</_>
-                <_>
-                  7 13 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0336425602436066</threshold>
-            <left_val>9.4332182779908180e-003</left_val>
-            <right_val>-0.2461027950048447</right_val></_></_>
-        <_>
-          <!-- tree 146 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 13 10 1 -1.</_>
-                <_>
-                  6 13 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0119730802252889</threshold>
-            <left_val>-0.0456926003098488</left_val>
-            <right_val>0.1521279066801071</right_val></_></_>
-        <_>
-          <!-- tree 147 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 13 18 2 -1.</_>
-                <_>
-                  0 13 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1410526931285858</threshold>
-            <left_val>-0.4025206863880158</left_val>
-            <right_val>0.0161248706281185</right_val></_></_>
-        <_>
-          <!-- tree 148 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 6 3 2 -1.</_>
-                <_>
-                  5 7 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.8696339838206768e-003</threshold>
-            <left_val>0.1223559975624085</left_val>
-            <right_val>-0.0487510599195957</right_val></_></_>
-        <_>
-          <!-- tree 149 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 9 2 2 -1.</_>
-                <_>
-                  12 9 1 1 2.</_>
-                <_>
-                  11 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1555710118263960e-003</threshold>
-            <left_val>-0.0184163097292185</left_val>
-            <right_val>0.1451521962881088</right_val></_></_>
-        <_>
-          <!-- tree 150 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 12 13 2 -1.</_>
-                <_>
-                  1 13 13 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4534349795430899e-003</threshold>
-            <left_val>-0.0905656665563583</left_val>
-            <right_val>0.0633557364344597</right_val></_></_>
-        <_>
-          <!-- tree 151 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 9 3 6 -1.</_>
-                <_>
-                  11 11 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.2382410503923893e-003</threshold>
-            <left_val>-0.0410471595823765</left_val>
-            <right_val>0.0727308094501495</right_val></_></_>
-        <_>
-          <!-- tree 152 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 4 2 -1.</_>
-                <_>
-                  9 8 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0143192103132606</threshold>
-            <left_val>-0.1792961955070496</left_val>
-            <right_val>0.0365735515952110</right_val></_></_>
-        <_>
-          <!-- tree 153 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 5 1 3 -1.</_>
-                <_>
-                  10 6 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0105856303125620</threshold>
-            <left_val>-0.3884933888912201</left_val>
-            <right_val>7.9265926033258438e-003</right_val></_></_>
-        <_>
-          <!-- tree 154 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 9 8 4 -1.</_>
-                <_>
-                  1 9 4 2 2.</_>
-                <_>
-                  5 11 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.9276917278766632e-003</threshold>
-            <left_val>-0.0575792603194714</left_val>
-            <right_val>0.1015077978372574</right_val></_></_>
-        <_>
-          <!-- tree 155 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 5 8 10 -1.</_>
-                <_>
-                  14 5 4 5 2.</_>
-                <_>
-                  10 10 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0579179786145687</threshold>
-            <left_val>0.0137350102886558</left_val>
-            <right_val>-0.1917247027158737</right_val></_></_>
-        <_>
-          <!-- tree 156 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 10 3 2 -1.</_>
-                <_>
-                  3 11 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.2071853578090668e-003</threshold>
-            <left_val>-0.2001218944787979</left_val>
-            <right_val>0.0331920385360718</right_val></_></_>
-        <_>
-          <!-- tree 157 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 1 16 9 -1.</_>
-                <_>
-                  1 4 16 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0835009291768074</threshold>
-            <left_val>0.2925198078155518</left_val>
-            <right_val>-0.0229036696255207</right_val></_></_>
-        <_>
-          <!-- tree 158 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 4 4 2 -1.</_>
-                <_>
-                  8 5 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.5707109384238720e-003</threshold>
-            <left_val>-0.1910977959632874</left_val>
-            <right_val>0.0408679395914078</right_val></_></_>
-        <_>
-          <!-- tree 159 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 6 3 -1.</_>
-                <_>
-                  14 2 2 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0281076692044735</threshold>
-            <left_val>-0.1395559012889862</left_val>
-            <right_val>0.0228978395462036</right_val></_></_>
-        <_>
-          <!-- tree 160 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 12 6 3 -1.</_>
-                <_>
-                  3 12 2 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0228165406733751</threshold>
-            <left_val>-0.2577002942562103</left_val>
-            <right_val>0.0229892395436764</right_val></_></_>
-        <_>
-          <!-- tree 161 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 7 3 2 -1.</_>
-                <_>
-                  12 8 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.2285268902778625e-003</threshold>
-            <left_val>-0.0617472901940346</left_val>
-            <right_val>0.0377134010195732</right_val></_></_>
-        <_>
-          <!-- tree 162 -->
-          <_>
-            <!-- 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>6.0513508506119251e-003</threshold>
-            <left_val>-0.0416271314024925</left_val>
-            <right_val>0.1556749045848846</right_val></_></_>
-        <_>
-          <!-- tree 163 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 9 11 -1.</_>
-                <_>
-                  9 0 3 11 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0407820083200932</threshold>
-            <left_val>0.2559697926044464</left_val>
-            <right_val>-0.0251890700310469</right_val></_></_>
-        <_>
-          <!-- tree 164 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 6 1 -1.</_>
-                <_>
-                  10 2 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.2671699561178684e-003</threshold>
-            <left_val>-0.0976725667715073</left_val>
-            <right_val>0.0727524906396866</right_val></_></_>
-        <_>
-          <!-- tree 165 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 9 2 2 -1.</_>
-                <_>
-                  8 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1280509643256664e-003</threshold>
-            <left_val>0.0736560374498367</left_val>
-            <right_val>-0.1138757988810539</right_val></_></_>
-        <_>
-          <!-- tree 166 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 17 2 -1.</_>
-                <_>
-                  0 10 17 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.8747308105230331e-003</threshold>
-            <left_val>-0.0667891502380371</left_val>
-            <right_val>0.1315107941627502</right_val></_></_>
-        <_>
-          <!-- tree 167 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 14 6 -1.</_>
-                <_>
-                  2 3 14 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0337627902626991</threshold>
-            <left_val>-0.1893121004104614</left_val>
-            <right_val>0.0347666181623936</right_val></_></_>
-        <_>
-          <!-- tree 168 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 13 2 2 -1.</_>
-                <_>
-                  0 13 1 1 2.</_>
-                <_>
-                  1 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1757418987108395e-005</threshold>
-            <left_val>-0.0780986174941063</left_val>
-            <right_val>0.0798301994800568</right_val></_></_>
-        <_>
-          <!-- tree 169 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 4 10 10 -1.</_>
-                <_>
-                  10 4 5 5 2.</_>
-                <_>
-                  5 9 5 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1017585024237633</threshold>
-            <left_val>0.0175233595073223</left_val>
-            <right_val>-0.2194790989160538</right_val></_></_>
-        <_>
-          <!-- tree 170 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 12 9 -1.</_>
-                <_>
-                  7 4 4 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1176455989480019</threshold>
-            <left_val>0.1473899036645889</left_val>
-            <right_val>-0.0428058393299580</right_val></_></_>
-        <_>
-          <!-- tree 171 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 4 5 6 -1.</_>
-                <_>
-                  12 4 5 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1903167963027954</threshold>
-            <left_val>-0.3762378990650177</left_val>
-            <right_val>3.8982050027698278e-003</right_val></_></_>
-        <_>
-          <!-- tree 172 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 4 6 5 -1.</_>
-                <_>
-                  6 4 3 5 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.2182461023330689</threshold>
-            <left_val>7.8864647075533867e-003</left_val>
-            <right_val>-0.6451690196990967</right_val></_></_>
-        <_>
-          <!-- tree 173 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 1 2 2 -1.</_>
-                <_>
-                  9 1 1 1 2.</_>
-                <_>
-                  8 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.1720587837044150e-005</threshold>
-            <left_val>-0.0688135400414467</left_val>
-            <right_val>0.0783134102821350</right_val></_></_>
-        <_>
-          <!-- tree 174 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 1 2 2 -1.</_>
-                <_>
-                  8 1 1 1 2.</_>
-                <_>
-                  9 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.6815136708319187e-005</threshold>
-            <left_val>-0.0691982433199883</left_val>
-            <right_val>0.0981492102146149</right_val></_></_>
-        <_>
-          <!-- tree 175 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 2 2 -1.</_>
-                <_>
-                  8 8 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5573709970340133e-003</threshold>
-            <left_val>0.0455104112625122</left_val>
-            <right_val>-0.1185887008905411</right_val></_></_>
-        <_>
-          <!-- tree 176 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 18 3 -1.</_>
-                <_>
-                  0 9 18 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0153560703620315</threshold>
-            <left_val>-0.0377323292195797</left_val>
-            <right_val>0.1619653999805450</right_val></_></_>
-        <_>
-          <!-- tree 177 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 6 1 3 -1.</_>
-                <_>
-                  8 7 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.4422818832099438e-004</threshold>
-            <left_val>-0.0492143407464027</left_val>
-            <right_val>0.0385965816676617</right_val></_></_>
-        <_>
-          <!-- tree 178 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 2 3 -1.</_>
-                <_>
-                  6 1 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.0240670312196016e-003</threshold>
-            <left_val>0.0198773108422756</left_val>
-            <right_val>-0.2735247015953064</right_val></_></_>
-        <_>
-          <!-- tree 179 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 5 6 10 -1.</_>
-                <_>
-                  12 10 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2404906004667282</threshold>
-            <left_val>-0.3223324120044708</left_val>
-            <right_val>9.9804811179637909e-003</right_val></_></_>
-        <_>
-          <!-- tree 180 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 6 3 1 -1.</_>
-                <_>
-                  10 7 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.8453960120677948e-003</threshold>
-            <left_val>-0.2682495117187500</left_val>
-            <right_val>0.0200939793139696</right_val></_></_>
-        <_>
-          <!-- tree 181 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 12 4 -1.</_>
-                <_>
-                  3 5 12 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0982210710644722</threshold>
-            <left_val>0.3673144876956940</left_val>
-            <right_val>-0.0167514402419329</right_val></_></_>
-        <_>
-          <!-- tree 182 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 5 7 3 -1.</_>
-                <_>
-                  5 6 7 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0333984605967999</threshold>
-            <left_val>-0.7586281895637512</left_val>
-            <right_val>9.9286399781703949e-003</right_val></_></_>
-        <_>
-          <!-- tree 183 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 1 4 3 -1.</_>
-                <_>
-                  13 2 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0322372205555439</threshold>
-            <left_val>0.2238357961177826</left_val>
-            <right_val>-0.0126148099079728</right_val></_></_>
-        <_>
-          <!-- tree 184 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 3 4 -1.</_>
-                <_>
-                  5 2 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0332839600741863</threshold>
-            <left_val>0.2973837852478027</left_val>
-            <right_val>-0.0196489002555609</right_val></_></_>
-        <_>
-          <!-- tree 185 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 3 2 2 -1.</_>
-                <_>
-                  17 3 1 1 2.</_>
-                <_>
-                  16 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3496932853013277e-005</threshold>
-            <left_val>0.0579334609210491</left_val>
-            <right_val>-0.0438858605921268</right_val></_></_>
-        <_>
-          <!-- tree 186 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 2 2 -1.</_>
-                <_>
-                  0 3 1 1 2.</_>
-                <_>
-                  1 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.6012212957721204e-005</threshold>
-            <left_val>-0.0718164891004562</left_val>
-            <right_val>0.0869365110993385</right_val></_></_>
-        <_>
-          <!-- tree 187 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 4 2 -1.</_>
-                <_>
-                  11 1 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0270447190850973</threshold>
-            <left_val>7.5920550152659416e-003</left_val>
-            <right_val>-0.5451955795288086</right_val></_></_>
-        <_>
-          <!-- tree 188 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 4 -1.</_>
-                <_>
-                  7 1 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.8314275965094566e-003</threshold>
-            <left_val>0.0235845800489187</left_val>
-            <right_val>-0.2437285035848618</right_val></_></_>
-        <_>
-          <!-- tree 189 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 3 4 3 -1.</_>
-                <_>
-                  13 4 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0142732895910740</threshold>
-            <left_val>0.1202424988150597</left_val>
-            <right_val>-0.0208050198853016</right_val></_></_>
-        <_>
-          <!-- tree 190 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 1 4 -1.</_>
-                <_>
-                  0 6 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4047421067953110e-003</threshold>
-            <left_val>0.0242772400379181</left_val>
-            <right_val>-0.2434611022472382</right_val></_></_>
-        <_>
-          <!-- tree 191 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 5 2 3 -1.</_>
-                <_>
-                  14 6 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.1703050006181002e-003</threshold>
-            <left_val>0.0476825311779976</left_val>
-            <right_val>-0.0285765398293734</right_val></_></_>
-        <_>
-          <!-- tree 192 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 18 6 -1.</_>
-                <_>
-                  0 6 18 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0646167024970055</threshold>
-            <left_val>-0.0725622028112412</left_val>
-            <right_val>0.0955711901187897</right_val></_></_>
-        <_>
-          <!-- tree 193 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 5 2 3 -1.</_>
-                <_>
-                  14 6 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0361361317336559</threshold>
-            <left_val>-0.2291781008243561</left_val>
-            <right_val>2.1050409413874149e-003</right_val></_></_>
-        <_>
-          <!-- tree 194 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 5 3 2 -1.</_>
-                <_>
-                  4 6 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0191675499081612</threshold>
-            <left_val>0.3006345927715302</left_val>
-            <right_val>-0.0226390194147825</right_val></_></_>
-        <_>
-          <!-- tree 195 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 6 1 4 -1.</_>
-                <_>
-                  10 7 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0103014996275306</threshold>
-            <left_val>0.0199798997491598</left_val>
-            <right_val>-0.1185344010591507</right_val></_></_>
-        <_>
-          <!-- tree 196 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 8 4 7 -1.</_>
-                <_>
-                  3 8 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0250420607626438</threshold>
-            <left_val>0.0137328598648310</left_val>
-            <right_val>-0.4401232004165649</right_val></_></_>
-        <_>
-          <!-- tree 197 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 9 4 -1.</_>
-                <_>
-                  9 0 9 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1180287972092629</threshold>
-            <left_val>-0.0238245893269777</left_val>
-            <right_val>0.0961270332336426</right_val></_></_>
-        <_>
-          <!-- tree 198 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 9 6 6 -1.</_>
-                <_>
-                  3 11 2 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.2905329763889313e-003</threshold>
-            <left_val>-0.0817760676145554</left_val>
-            <right_val>0.0683934092521667</right_val></_></_>
-        <_>
-          <!-- tree 199 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 5 6 10 -1.</_>
-                <_>
-                  12 10 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0107107702642679</threshold>
-            <left_val>0.0433344282209873</left_val>
-            <right_val>-0.0750979110598564</right_val></_></_>
-        <_>
-          <!-- tree 200 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 15 14 -1.</_>
-                <_>
-                  5 0 5 14 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2691828906536102</threshold>
-            <left_val>-0.0395036600530148</left_val>
-            <right_val>0.1450473070144653</right_val></_></_>
-        <_>
-          <!-- tree 201 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 3 4 9 -1.</_>
-                <_>
-                  7 3 2 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0227638091892004</threshold>
-            <left_val>0.0996726229786873</left_val>
-            <right_val>-0.0775553807616234</right_val></_></_>
-        <_>
-          <!-- tree 202 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 4 9 -1.</_>
-                <_>
-                  9 0 2 9 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1211519017815590</threshold>
-            <left_val>-0.3949747085571289</left_val>
-            <right_val>0.0166401192545891</right_val></_></_>
-        <_>
-          <!-- tree 203 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 5 3 1 -1.</_>
-                <_>
-                  10 5 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.1451293479185551e-005</threshold>
-            <left_val>-0.0532115213572979</left_val>
-            <right_val>0.0365702211856842</right_val></_></_>
-        <_>
-          <!-- tree 204 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 4 6 3 -1.</_>
-                <_>
-                  7 4 2 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.8077360950410366e-003</threshold>
-            <left_val>-0.0913413763046265</left_val>
-            <right_val>0.0747274905443192</right_val></_></_>
-        <_>
-          <!-- tree 205 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 8 -1.</_>
-                <_>
-                  7 0 4 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0622831098735332</threshold>
-            <left_val>0.4490456879138947</left_val>
-            <right_val>-0.0142916804179549</right_val></_></_>
-        <_>
-          <!-- tree 206 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 4 3 3 -1.</_>
-                <_>
-                  4 5 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0165455099195242</threshold>
-            <left_val>0.2153764069080353</left_val>
-            <right_val>-0.0266895107924938</right_val></_></_>
-        <_>
-          <!-- tree 207 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 3 2 -1.</_>
-                <_>
-                  10 3 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.5320530235767365e-003</threshold>
-            <left_val>-0.1502870023250580</left_val>
-            <right_val>8.1632016226649284e-003</right_val></_></_>
-        <_>
-          <!-- tree 208 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 14 2 1 -1.</_>
-                <_>
-                  4 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1539638661779463e-005</threshold>
-            <left_val>0.0777021870017052</left_val>
-            <right_val>-0.0744352191686630</right_val></_></_>
-        <_>
-          <!-- tree 209 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 3 2 -1.</_>
-                <_>
-                  10 3 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.1616528332233429e-003</threshold>
-            <left_val>0.0125406999140978</left_val>
-            <right_val>-0.0472638383507729</right_val></_></_>
-        <_>
-          <!-- tree 210 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 2 3 -1.</_>
-                <_>
-                  8 3 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0160646103322506</threshold>
-            <left_val>-0.6305596828460693</left_val>
-            <right_val>8.5211051627993584e-003</right_val></_></_>
-        <_>
-          <!-- tree 211 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 5 16 6 -1.</_>
-                <_>
-                  1 7 16 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0944218188524246</threshold>
-            <left_val>0.1380808949470520</left_val>
-            <right_val>-0.0399546995759010</right_val></_></_>
-        <_>
-          <!-- tree 212 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 4 9 -1.</_>
-                <_>
-                  0 6 4 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0701284334063530</threshold>
-            <left_val>-0.2750720083713532</left_val>
-            <right_val>0.0264193192124367</right_val></_></_>
-        <_>
-          <!-- tree 213 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 8 6 4 -1.</_>
-                <_>
-                  13 8 3 2 2.</_>
-                <_>
-                  10 10 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0142810000106692</threshold>
-            <left_val>0.0840907394886017</left_val>
-            <right_val>-0.0420290790498257</right_val></_></_>
-        <_>
-          <!-- tree 214 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 8 6 4 -1.</_>
-                <_>
-                  2 8 3 2 2.</_>
-                <_>
-                  5 10 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0205234792083502</threshold>
-            <left_val>0.1520801037549973</left_val>
-            <right_val>-0.0386744514107704</right_val></_></_>
-        <_>
-          <!-- tree 215 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 4 16 6 -1.</_>
-                <_>
-                  5 4 8 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3157497048377991</threshold>
-            <left_val>8.8831735774874687e-003</left_val>
-            <right_val>-0.6855131983757019</right_val></_></_>
-        <_>
-          <!-- tree 216 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 2 2 1 -1.</_>
-                <_>
-                  7 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9291431680321693e-003</threshold>
-            <left_val>6.9111599586904049e-003</left_val>
-            <right_val>-0.6073105931282044</right_val></_></_>
-        <_>
-          <!-- tree 217 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 1 2 2 -1.</_>
-                <_>
-                  9 1 1 1 2.</_>
-                <_>
-                  8 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.0803038650192320e-005</threshold>
-            <left_val>-0.0669746771454811</left_val>
-            <right_val>0.0759973376989365</right_val></_></_>
-        <_>
-          <!-- tree 218 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 8 6 4 -1.</_>
-                <_>
-                  2 8 3 2 2.</_>
-                <_>
-                  5 10 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.9074257994070649e-004</threshold>
-            <left_val>-0.0574223808944225</left_val>
-            <right_val>0.0896140709519386</right_val></_></_>
-        <_>
-          <!-- tree 219 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 3 2 10 -1.</_>
-                <_>
-                  15 3 1 10 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0755855664610863</threshold>
-            <left_val>5.4939449764788151e-003</left_val>
-            <right_val>-0.5068221092224121</right_val></_></_>
-        <_>
-          <!-- tree 220 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 10 2 -1.</_>
-                <_>
-                  3 3 10 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0170325208455324</threshold>
-            <left_val>-0.0700998529791832</left_val>
-            <right_val>0.0843230485916138</right_val></_></_>
-        <_>
-          <!-- tree 221 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 12 18 2 -1.</_>
-                <_>
-                  9 12 9 1 2.</_>
-                <_>
-                  0 13 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0122383302077651</threshold>
-            <left_val>0.0335065089166164</left_val>
-            <right_val>-0.1545374989509583</right_val></_></_>
-        <_>
-          <!-- tree 222 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 9 6 4 -1.</_>
-                <_>
-                  5 9 3 2 2.</_>
-                <_>
-                  8 11 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0126505699008703</threshold>
-            <left_val>-0.0344986617565155</left_val>
-            <right_val>0.1735837012529373</right_val></_></_>
-        <_>
-          <!-- tree 223 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 2 -1.</_>
-                <_>
-                  16 0 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.9281910285353661e-003</threshold>
-            <left_val>0.0331528484821320</left_val>
-            <right_val>-0.1206599026918411</right_val></_></_>
-        <_>
-          <!-- tree 224 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 7 8 -1.</_>
-                <_>
-                  0 11 7 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1848583966493607</threshold>
-            <left_val>-0.4430884122848511</left_val>
-            <right_val>0.0122470501810312</right_val></_></_>
-        <_>
-          <!-- tree 225 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 1 -1.</_>
-                <_>
-                  16 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.5704691223800182e-003</threshold>
-            <left_val>-0.2837153971195221</left_val>
-            <right_val>0.0119533604010940</right_val></_></_>
-        <_>
-          <!-- tree 226 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 2 2 -1.</_>
-                <_>
-                  2 0 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.8720408560475335e-005</threshold>
-            <left_val>0.0606255605816841</left_val>
-            <right_val>-0.0905942320823669</right_val></_></_>
-        <_>
-          <!-- tree 227 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 3 15 -1.</_>
-                <_>
-                  15 0 1 15 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1587649825960398e-003</threshold>
-            <left_val>0.0718974173069000</left_val>
-            <right_val>-0.0716387107968330</right_val></_></_>
-        <_>
-          <!-- tree 228 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 3 15 -1.</_>
-                <_>
-                  2 0 1 15 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0426199585199356</threshold>
-            <left_val>-0.6301267743110657</left_val>
-            <right_val>9.0704262256622314e-003</right_val></_></_>
-        <_>
-          <!-- tree 229 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 0 1 4 -1.</_>
-                <_>
-                  17 2 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1494319662451744e-003</threshold>
-            <left_val>0.0701255127787590</left_val>
-            <right_val>-0.0302376300096512</right_val></_></_>
-        <_>
-          <!-- tree 230 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 14 8 1 -1.</_>
-                <_>
-                  5 14 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.0273208916187286e-003</threshold>
-            <left_val>-0.2084393054246903</left_val>
-            <right_val>0.0256627295166254</right_val></_></_>
-        <_>
-          <!-- tree 231 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 3 1 8 -1.</_>
-                <_>
-                  17 7 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0193650294095278</threshold>
-            <left_val>-0.2186844944953919</left_val>
-            <right_val>0.0394974797964096</right_val></_></_>
-        <_>
-          <!-- tree 232 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 6 -1.</_>
-                <_>
-                  0 11 18 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1413332968950272</threshold>
-            <left_val>0.1758708953857422</left_val>
-            <right_val>-0.0300297401845455</right_val></_></_>
-        <_>
-          <!-- tree 233 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 2 4 -1.</_>
-                <_>
-                  8 5 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.0533920079469681e-003</threshold>
-            <left_val>0.1257833987474442</left_val>
-            <right_val>-0.0422852896153927</right_val></_></_>
-        <_>
-          <!-- tree 234 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 10 8 -1.</_>
-                <_>
-                  1 0 5 4 2.</_>
-                <_>
-                  6 4 5 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.1119036369491369e-005</threshold>
-            <left_val>-0.0801948532462120</left_val>
-            <right_val>0.0698323473334312</right_val></_></_>
-        <_>
-          <!-- tree 235 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 12 -1.</_>
-                <_>
-                  16 6 2 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0569412186741829</threshold>
-            <left_val>0.0166890900582075</left_val>
-            <right_val>-0.5283920764923096</right_val></_></_>
-        <_>
-          <!-- tree 236 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 2 12 -1.</_>
-                <_>
-                  0 6 2 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0546842515468597</threshold>
-            <left_val>-0.2039314955472946</left_val>
-            <right_val>0.0286209303885698</right_val></_></_>
-        <_>
-          <!-- tree 237 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 6 1 2 -1.</_>
-                <_>
-                  17 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.8811619965126738e-005</threshold>
-            <left_val>0.0418041013181210</left_val>
-            <right_val>-0.0470252297818661</right_val></_></_>
-        <_>
-          <!-- tree 238 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 2 2 -1.</_>
-                <_>
-                  9 1 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>1.7949440516531467e-003</threshold>
-            <left_val>-0.0756849274039268</left_val>
-            <right_val>0.0691110491752625</right_val></_></_>
-        <_>
-          <!-- tree 239 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 2 4 1 -1.</_>
-                <_>
-                  7 2 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9679369181394577e-003</threshold>
-            <left_val>-0.0375063605606556</left_val>
-            <right_val>0.1656157970428467</right_val></_></_>
-        <_>
-          <!-- tree 240 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 10 8 -1.</_>
-                <_>
-                  3 4 10 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0288094598799944</threshold>
-            <left_val>-0.1236065030097961</left_val>
-            <right_val>0.0496754795312881</right_val></_></_>
-        <_>
-          <!-- tree 241 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 7 16 2 -1.</_>
-                <_>
-                  1 8 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.0495251305401325e-003</threshold>
-            <left_val>-0.0319622196257114</left_val>
-            <right_val>0.1952590048313141</right_val></_></_>
-        <_>
-          <!-- tree 242 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 2 12 -1.</_>
-                <_>
-                  3 4 2 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0620033591985703</threshold>
-            <left_val>-0.3827818930149078</left_val>
-            <right_val>0.0150613198056817</right_val></_></_>
-        <_>
-          <!-- tree 243 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 3 2 2 -1.</_>
-                <_>
-                  16 3 1 1 2.</_>
-                <_>
-                  15 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1115748647134751e-005</threshold>
-            <left_val>0.0677575394511223</left_val>
-            <right_val>-0.0526314005255699</right_val></_></_>
-        <_>
-          <!-- tree 244 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 3 2 2 -1.</_>
-                <_>
-                  1 3 1 1 2.</_>
-                <_>
-                  2 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.5218940512277186e-005</threshold>
-            <left_val>0.0864468365907669</left_val>
-            <right_val>-0.0672251731157303</right_val></_></_>
-        <_>
-          <!-- tree 245 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 3 2 4 -1.</_>
-                <_>
-                  16 3 1 2 2.</_>
-                <_>
-                  15 5 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.5194161832332611e-003</threshold>
-            <left_val>-0.0172452796250582</left_val>
-            <right_val>0.1654276996850967</right_val></_></_>
-        <_>
-          <!-- tree 246 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 18 2 -1.</_>
-                <_>
-                  0 1 9 1 2.</_>
-                <_>
-                  9 2 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0103026004508138</threshold>
-            <left_val>-0.2367701977491379</left_val>
-            <right_val>0.0223297607153654</right_val></_></_>
-        <_>
-          <!-- tree 247 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 5 3 3 -1.</_>
-                <_>
-                  15 5 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.1106292046606541e-003</threshold>
-            <left_val>-0.0202375706285238</left_val>
-            <right_val>0.0889737829566002</right_val></_></_>
-        <_>
-          <!-- tree 248 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 5 3 3 -1.</_>
-                <_>
-                  2 5 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2337420377880335e-003</threshold>
-            <left_val>-0.0461580082774162</left_val>
-            <right_val>0.1101254001259804</right_val></_></_>
-        <_>
-          <!-- tree 249 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 8 4 7 -1.</_>
-                <_>
-                  13 8 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0754150971770287</threshold>
-            <left_val>-0.4367196857929230</left_val>
-            <right_val>7.0562111213803291e-003</right_val></_></_>
-        <_>
-          <!-- tree 250 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 12 2 1 -1.</_>
-                <_>
-                  1 12 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.5641689319163561e-003</threshold>
-            <left_val>-0.2036014944314957</left_val>
-            <right_val>0.0260564293712378</right_val></_></_>
-        <_>
-          <!-- tree 251 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 4 2 10 -1.</_>
-                <_>
-                  17 4 1 5 2.</_>
-                <_>
-                  16 9 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.5477738864719868e-003</threshold>
-            <left_val>0.0682261064648628</left_val>
-            <right_val>-0.0227576401084661</right_val></_></_>
-        <_>
-          <!-- tree 252 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 2 10 -1.</_>
-                <_>
-                  0 4 1 5 2.</_>
-                <_>
-                  1 9 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1273330096155405e-003</threshold>
-            <left_val>-0.0515966191887856</left_val>
-            <right_val>0.1104556024074554</right_val></_></_>
-        <_>
-          <!-- tree 253 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 10 2 1 -1.</_>
-                <_>
-                  16 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.2469911538064480e-003</threshold>
-            <left_val>-0.2812859117984772</left_val>
-            <right_val>3.2531570177525282e-003</right_val></_></_>
-        <_>
-          <!-- tree 254 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 2 1 -1.</_>
-                <_>
-                  1 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2346920710988343e-005</threshold>
-            <left_val>0.0701061934232712</left_val>
-            <right_val>-0.0941527709364891</right_val></_></_>
-        <_>
-          <!-- tree 255 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 6 2 1 -1.</_>
-                <_>
-                  16 6 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0246129799634218</threshold>
-            <left_val>-0.8730425238609314</left_val>
-            <right_val>1.3450640253722668e-003</right_val></_></_>
-        <_>
-          <!-- tree 256 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 6 1 2 -1.</_>
-                <_>
-                  2 6 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.5978900268673897e-003</threshold>
-            <left_val>-0.1704172044992447</left_val>
-            <right_val>0.0319982208311558</right_val></_></_>
-        <_>
-          <!-- tree 257 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 8 4 7 -1.</_>
-                <_>
-                  13 8 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0729575231671333</threshold>
-            <left_val>5.0021768547594547e-003</left_val>
-            <right_val>-0.4682140052318573</right_val></_></_>
-        <_>
-          <!-- tree 258 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 8 4 7 -1.</_>
-                <_>
-                  3 8 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0829254165291786</threshold>
-            <left_val>-0.6825491189956665</left_val>
-            <right_val>6.8542738445103168e-003</right_val></_></_>
-        <_>
-          <!-- tree 259 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 4 -1.</_>
-                <_>
-                  9 9 9 2 2.</_>
-                <_>
-                  0 11 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1458497941493988</threshold>
-            <left_val>4.4581899419426918e-003</left_val>
-            <right_val>-0.9136692881584168</right_val></_></_>
-        <_>
-          <!-- tree 260 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 6 3 2 -1.</_>
-                <_>
-                  9 7 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0121017899364233</threshold>
-            <left_val>0.0244141705334187</left_val>
-            <right_val>-0.1811750978231430</right_val></_></_>
-        <_>
-          <!-- tree 261 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 8 4 -1.</_>
-                <_>
-                  12 7 4 2 2.</_>
-                <_>
-                  8 9 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0606673695147038</threshold>
-            <left_val>0.2293484061956406</left_val>
-            <right_val>-0.0143234599381685</right_val></_></_>
-        <_>
-          <!-- tree 262 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 12 9 3 -1.</_>
-                <_>
-                  1 13 9 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0207455400377512</threshold>
-            <left_val>-0.0269107203930616</left_val>
-            <right_val>0.1933422982692719</right_val></_></_>
-        <_>
-          <!-- tree 263 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 13 1 2 -1.</_>
-                <_>
-                  13 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.7412481186911464e-004</threshold>
-            <left_val>-0.0299135297536850</left_val>
-            <right_val>0.0458732806146145</right_val></_></_>
-        <_>
-          <!-- tree 264 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 13 18 2 -1.</_>
-                <_>
-                  0 13 9 1 2.</_>
-                <_>
-                  9 14 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0135493697598577</threshold>
-            <left_val>0.0344336815178394</left_val>
-            <right_val>-0.1811697930097580</right_val></_></_>
-        <_>
-          <!-- tree 265 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 11 8 4 -1.</_>
-                <_>
-                  7 13 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1226418018341065</threshold>
-            <left_val>8.5802376270294189e-003</left_val>
-            <right_val>-0.3556774854660034</right_val></_></_>
-        <_>
-          <!-- tree 266 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 18 4 -1.</_>
-                <_>
-                  0 7 9 2 2.</_>
-                <_>
-                  9 9 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0671608373522758</threshold>
-            <left_val>0.0152594400569797</left_val>
-            <right_val>-0.3348085880279541</right_val></_></_>
-        <_>
-          <!-- tree 267 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 2 9 6 -1.</_>
-                <_>
-                  5 4 9 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0246475301682949</threshold>
-            <left_val>0.1960427016019821</left_val>
-            <right_val>-0.0251305196434259</right_val></_></_>
-        <_>
-          <!-- tree 268 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 5 6 4 -1.</_>
-                <_>
-                  6 5 3 2 2.</_>
-                <_>
-                  9 7 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0161939505487680</threshold>
-            <left_val>0.0255086906254292</left_val>
-            <right_val>-0.2101009041070938</right_val></_></_>
-        <_>
-          <!-- tree 269 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 9 9 -1.</_>
-                <_>
-                  9 3 3 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.4493438005447388</threshold>
-            <left_val>-0.0108507098630071</left_val>
-            <right_val>0.2636126875877380</right_val></_></_>
-        <_>
-          <!-- tree 270 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 4 -1.</_>
-                <_>
-                  7 0 2 2 2.</_>
-                <_>
-                  9 2 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0100060002878308</threshold>
-            <left_val>0.0162830203771591</left_val>
-            <right_val>-0.3397836983203888</right_val></_></_>
-        <_>
-          <!-- tree 271 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 10 2 2 -1.</_>
-                <_>
-                  10 10 1 1 2.</_>
-                <_>
-                  9 11 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.3295390312559903e-004</threshold>
-            <left_val>0.0482161790132523</left_val>
-            <right_val>-0.0331645794212818</right_val></_></_>
-        <_>
-          <!-- tree 272 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 3 6 -1.</_>
-                <_>
-                  4 2 3 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0285563599318266</threshold>
-            <left_val>-0.1401145011186600</left_val>
-            <right_val>0.0359319001436234</right_val></_></_>
-        <_>
-          <!-- tree 273 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 0 1 3 -1.</_>
-                <_>
-                  16 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.8772169761359692e-003</threshold>
-            <left_val>-0.0123321795836091</left_val>
-            <right_val>0.1552557051181793</right_val></_></_>
-        <_>
-          <!-- tree 274 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 3 1 -1.</_>
-                <_>
-                  2 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.6129318866878748e-003</threshold>
-            <left_val>-0.0435581207275391</left_val>
-            <right_val>0.1222198009490967</right_val></_></_>
-        <_>
-          <!-- tree 275 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 3 15 -1.</_>
-                <_>
-                  11 5 1 5 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3278479874134064</threshold>
-            <left_val>1.3112389715388417e-003</left_val>
-            <right_val>-0.8163402080535889</right_val></_></_>
-        <_>
-          <!-- tree 276 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 3 15 -1.</_>
-                <_>
-                  6 5 1 5 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1535089015960693</threshold>
-            <left_val>0.0153489299118519</left_val>
-            <right_val>-0.3360393047332764</right_val></_></_>
-        <_>
-          <!-- tree 277 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 1 4 -1.</_>
-                <_>
-                  16 1 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.0102507965639234e-004</threshold>
-            <left_val>-0.0325689390301704</left_val>
-            <right_val>0.0637555792927742</right_val></_></_>
-        <_>
-          <!-- tree 278 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 1 2 -1.</_>
-                <_>
-                  1 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.4206269346177578e-005</threshold>
-            <left_val>0.0817376524209976</left_val>
-            <right_val>-0.0669129565358162</right_val></_></_>
-        <_>
-          <!-- tree 279 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 1 -1.</_>
-                <_>
-                  16 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.3565158955752850e-003</threshold>
-            <left_val>-0.1260069012641907</left_val>
-            <right_val>0.0223339106887579</right_val></_></_>
-        <_>
-          <!-- tree 280 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 17 10 -1.</_>
-                <_>
-                  0 5 17 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0652299970388412</threshold>
-            <left_val>-0.0320342108607292</left_val>
-            <right_val>0.1782056987285614</right_val></_></_>
-        <_>
-          <!-- tree 281 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 3 10 -1.</_>
-                <_>
-                  12 5 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.0175189711153507e-003</threshold>
-            <left_val>0.0244843903928995</left_val>
-            <right_val>-0.0572246313095093</right_val></_></_>
-        <_>
-          <!-- tree 282 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 1 2 -1.</_>
-                <_>
-                  2 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.0746080018579960e-003</threshold>
-            <left_val>9.8791662603616714e-003</left_val>
-            <right_val>-0.5422024726867676</right_val></_></_>
-        <_>
-          <!-- tree 283 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 2 2 2 -1.</_>
-                <_>
-                  16 2 1 1 2.</_>
-                <_>
-                  15 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5917898609768599e-005</threshold>
-            <left_val>-0.0516582205891609</left_val>
-            <right_val>0.0567629300057888</right_val></_></_>
-        <_>
-          <!-- tree 284 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 9 6 -1.</_>
-                <_>
-                  6 5 3 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3082883059978485</threshold>
-            <left_val>-9.5853386446833611e-003</left_val>
-            <right_val>0.5343317985534668</right_val></_></_>
-        <_>
-          <!-- tree 285 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 3 11 2 -1.</_>
-                <_>
-                  6 4 11 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0102557903155684</threshold>
-            <left_val>0.0248383395373821</left_val>
-            <right_val>-0.1651663035154343</right_val></_></_>
-        <_>
-          <!-- tree 286 -->
-          <_>
-            <!-- 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>-5.3460840717889369e-005</threshold>
-            <left_val>0.0798209980130196</left_val>
-            <right_val>-0.0650218427181244</right_val></_></_>
-        <_>
-          <!-- tree 287 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 1 4 2 -1.</_>
-                <_>
-                  14 1 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.3789680562913418e-003</threshold>
-            <left_val>0.0478302501142025</left_val>
-            <right_val>-0.0529914908111095</right_val></_></_>
-        <_>
-          <!-- tree 288 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 2 4 -1.</_>
-                <_>
-                  4 1 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.6755929253995419e-003</threshold>
-            <left_val>0.1244622021913528</left_val>
-            <right_val>-0.0447519905865192</right_val></_></_></trees>
-      <stage_threshold>-1.2427099943161011</stage_threshold>
-      <parent>14</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 16 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 4 4 6 -1.</_>
-                <_>
-                  6 6 4 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1075673997402191</threshold>
-            <left_val>0.3405114114284515</left_val>
-            <right_val>-0.1520918011665344</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 4 -1.</_>
-                <_>
-                  13 1 4 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0435164310038090</threshold>
-            <left_val>-0.0135334003716707</left_val>
-            <right_val>0.2857075035572052</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 8 4 -1.</_>
-                <_>
-                  0 9 4 2 2.</_>
-                <_>
-                  4 11 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1509097069501877</threshold>
-            <left_val>5.0420017214491963e-004</left_val>
-            <right_val>-560.7666015625000000</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 8 3 3 -1.</_>
-                <_>
-                  16 9 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.1543149426579475e-003</threshold>
-            <left_val>-0.0573937706649303</left_val>
-            <right_val>0.1638182997703552</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 7 14 4 -1.</_>
-                <_>
-                  2 9 14 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1034078970551491</threshold>
-            <left_val>0.2298991978168488</left_val>
-            <right_val>-0.1285800039768219</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 4 1 -1.</_>
-                <_>
-                  9 0 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-7.5287488289177418e-003</threshold>
-            <left_val>0.0714707821607590</left_val>
-            <right_val>-0.0257890298962593</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 1 4 -1.</_>
-                <_>
-                  9 0 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.6443499848246574e-003</threshold>
-            <left_val>-0.2222723066806793</left_val>
-            <right_val>0.1241116970777512</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 14 15 -1.</_>
-                <_>
-                  2 0 7 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.5374997854232788</threshold>
-            <left_val>0.0139470295980573</left_val>
-            <right_val>0.5212510824203491</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 7 14 4 -1.</_>
-                <_>
-                  1 9 14 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2701308131217957</threshold>
-            <left_val>-0.0199047792702913</left_val>
-            <right_val>-630.8125000000000000</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 8 8 7 -1.</_>
-                <_>
-                  11 8 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0103687699884176</threshold>
-            <left_val>0.1052728965878487</left_val>
-            <right_val>-0.1294572055339813</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 4 4 -1.</_>
-                <_>
-                  5 1 2 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0156045500189066</threshold>
-            <left_val>0.2159546017646790</left_val>
-            <right_val>-0.0988422036170959</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 6 9 8 -1.</_>
-                <_>
-                  11 6 3 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2028758972883225</threshold>
-            <left_val>-0.2773951888084412</left_val>
-            <right_val>3.4634380135685205e-003</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 6 9 8 -1.</_>
-                <_>
-                  4 6 3 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0271604191511869</threshold>
-            <left_val>0.1002269983291626</left_val>
-            <right_val>-0.2054217010736466</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 6 4 2 -1.</_>
-                <_>
-                  7 7 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2366848103702068e-003</threshold>
-            <left_val>0.1270543932914734</left_val>
-            <right_val>-0.1254777014255524</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 3 -1.</_>
-                <_>
-                  7 1 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.6215238980948925e-003</threshold>
-            <left_val>0.0448268912732601</left_val>
-            <right_val>-0.2724570035934448</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 6 3 2 -1.</_>
-                <_>
-                  11 7 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.7956638522446156e-003</threshold>
-            <left_val>-0.1338658928871155</left_val>
-            <right_val>0.0271778404712677</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 18 14 -1.</_>
-                <_>
-                  0 1 9 7 2.</_>
-                <_>
-                  9 8 9 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2197666019201279</threshold>
-            <left_val>-0.2527695000171661</left_val>
-            <right_val>0.0464650392532349</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 0 2 2 -1.</_>
-                <_>
-                  11 1 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.6517988666892052e-003</threshold>
-            <left_val>0.0109347002580762</left_val>
-            <right_val>-0.3559803962707520</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 2 2 -1.</_>
-                <_>
-                  5 1 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5317969955503941e-003</threshold>
-            <left_val>-0.2499942928552628</left_val>
-            <right_val>0.0443512909114361</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 1 -1.</_>
-                <_>
-                  16 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.6969428658485413e-003</threshold>
-            <left_val>0.0218366198241711</left_val>
-            <right_val>-0.2871651947498322</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 10 6 -1.</_>
-                <_>
-                  4 4 5 3 2.</_>
-                <_>
-                  9 7 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0481894090771675</threshold>
-            <left_val>0.0288693699985743</left_val>
-            <right_val>-0.3616079092025757</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 9 6 2 -1.</_>
-                <_>
-                  11 9 3 1 2.</_>
-                <_>
-                  8 10 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.6267770491540432e-003</threshold>
-            <left_val>0.1311608999967575</left_val>
-            <right_val>-0.0371875613927841</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 1 2 -1.</_>
-                <_>
-                  2 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.5027391024632379e-005</threshold>
-            <left_val>0.0719915106892586</left_val>
-            <right_val>-0.1249687001109123</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 1 1 2 -1.</_>
-                <_>
-                  16 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3772819228470325e-005</threshold>
-            <left_val>0.0795105397701263</left_val>
-            <right_val>-0.0796041265130043</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 3 3 2 -1.</_>
-                <_>
-                  3 4 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.2382878065109253e-003</threshold>
-            <left_val>-0.0459494404494762</left_val>
-            <right_val>0.2055145949125290</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 3 2 10 -1.</_>
-                <_>
-                  16 8 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0336009599268436</threshold>
-            <left_val>0.0239669401198626</left_val>
-            <right_val>-0.2274771928787231</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 2 10 -1.</_>
-                <_>
-                  0 8 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0418576300144196</threshold>
-            <left_val>-0.2567035853862763</left_val>
-            <right_val>0.0433881990611553</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 9 6 2 -1.</_>
-                <_>
-                  11 9 3 1 2.</_>
-                <_>
-                  8 10 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.3434980325400829e-003</threshold>
-            <left_val>-0.0360659398138523</left_val>
-            <right_val>0.1335407048463821</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 7 10 2 -1.</_>
-                <_>
-                  1 7 5 1 2.</_>
-                <_>
-                  6 8 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.7262392044067383e-003</threshold>
-            <left_val>-0.0280333999544382</left_val>
-            <right_val>0.2965970933437347</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 8 -1.</_>
-                <_>
-                  9 0 9 4 2.</_>
-                <_>
-                  0 4 9 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0725063979625702</threshold>
-            <left_val>0.0339310988783836</left_val>
-            <right_val>-0.2645680010318756</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 1 4 -1.</_>
-                <_>
-                  3 1 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.9837369956076145e-003</threshold>
-            <left_val>0.0230753999203444</left_val>
-            <right_val>-0.3671954870223999</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 4 4 4 -1.</_>
-                <_>
-                  11 5 2 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0939587205648422</threshold>
-            <left_val>5.1443470874801278e-004</left_val>
-            <right_val>-0.6915786862373352</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 4 4 4 -1.</_>
-                <_>
-                  7 5 4 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0546111688017845</threshold>
-            <left_val>0.3563387095928192</left_val>
-            <right_val>-0.0255911909043789</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 1 2 10 -1.</_>
-                <_>
-                  16 1 1 10 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.3599044010043144e-003</threshold>
-            <left_val>-0.1183891966938973</left_val>
-            <right_val>0.0540960207581520</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 9 -1.</_>
-                <_>
-                  7 0 4 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.5311960428953171e-003</threshold>
-            <left_val>0.2580164074897766</left_val>
-            <right_val>-0.0432965084910393</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 1 2 10 -1.</_>
-                <_>
-                  16 1 1 10 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0530957616865635</threshold>
-            <left_val>0.0134461699053645</left_val>
-            <right_val>-0.2001762986183167</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 10 2 -1.</_>
-                <_>
-                  2 1 10 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.1099922060966492e-003</threshold>
-            <left_val>-0.1717357933521271</left_val>
-            <right_val>0.0664152875542641</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 3 2 -1.</_>
-                <_>
-                  14 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0121456598863006</threshold>
-            <left_val>-0.3498241901397705</left_val>
-            <right_val>0.0152532299980521</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 6 -1.</_>
-                <_>
-                  6 0 6 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0491840504109859</threshold>
-            <left_val>-0.1462731063365936</left_val>
-            <right_val>0.0766353383660316</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 12 4 -1.</_>
-                <_>
-                  9 0 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0642079263925552</threshold>
-            <left_val>-0.0426980294287205</left_val>
-            <right_val>0.0898953378200531</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 3 6 6 -1.</_>
-                <_>
-                  6 6 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0505671091377735</threshold>
-            <left_val>-0.0342714004218578</left_val>
-            <right_val>0.3211781084537506</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 3 12 7 -1.</_>
-                <_>
-                  6 3 6 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3818750083446503</threshold>
-            <left_val>5.9737069532275200e-003</left_val>
-            <right_val>-0.4150918126106262</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 12 7 -1.</_>
-                <_>
-                  6 3 6 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2414198964834213</threshold>
-            <left_val>0.0428920909762383</left_val>
-            <right_val>-0.2574456036090851</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 3 2 -1.</_>
-                <_>
-                  14 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.7335016578435898e-003</threshold>
-            <left_val>0.0215238109230995</left_val>
-            <right_val>-0.2581614851951599</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 2 3 -1.</_>
-                <_>
-                  4 1 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.5905920453369617e-003</threshold>
-            <left_val>0.0368825495243073</left_val>
-            <right_val>-0.2680523991584778</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 4 -1.</_>
-                <_>
-                  0 11 18 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0145109295845032</threshold>
-            <left_val>-0.1092017963528633</left_val>
-            <right_val>0.0991731509566307</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 6 1 8 -1.</_>
-                <_>
-                  9 6 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0274284295737743</threshold>
-            <left_val>-0.2504880130290985</left_val>
-            <right_val>0.0452128499746323</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 5 14 6 -1.</_>
-                <_>
-                  2 7 14 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1233676970005035</threshold>
-            <left_val>0.2255768030881882</left_val>
-            <right_val>-0.0428952686488628</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 5 8 -1.</_>
-                <_>
-                  2 4 5 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0616077184677124</threshold>
-            <left_val>-0.2777282893657684</left_val>
-            <right_val>0.0325213186442852</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 3 10 4 -1.</_>
-                <_>
-                  4 5 10 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0762168914079666</threshold>
-            <left_val>0.3657267093658447</left_val>
-            <right_val>-0.0255184806883335</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 3 -1.</_>
-                <_>
-                  9 0 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.3231542222201824e-003</threshold>
-            <left_val>-0.0599518194794655</left_val>
-            <right_val>0.1285364925861359</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 6 1 3 -1.</_>
-                <_>
-                  14 7 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-7.2015187470242381e-005</threshold>
-            <left_val>0.0668459609150887</left_val>
-            <right_val>-0.0653621777892113</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 6 3 4 -1.</_>
-                <_>
-                  3 7 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.8772630505263805e-003</threshold>
-            <left_val>-0.0746818333864212</left_val>
-            <right_val>0.1490433961153030</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 8 10 -1.</_>
-                <_>
-                  13 4 4 5 2.</_>
-                <_>
-                  9 9 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0308424606919289</threshold>
-            <left_val>0.0467762798070908</left_val>
-            <right_val>-0.0792699083685875</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 8 3 3 -1.</_>
-                <_>
-                  4 9 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9754610732197762e-003</threshold>
-            <left_val>-0.0631382465362549</left_val>
-            <right_val>0.1299404948949814</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 9 1 2 -1.</_>
-                <_>
-                  13 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.3571940623223782e-003</threshold>
-            <left_val>0.1760174036026001</left_val>
-            <right_val>-0.0209502801299095</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 9 1 2 -1.</_>
-                <_>
-                  4 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5649809686001390e-005</threshold>
-            <left_val>-0.0934598371386528</left_val>
-            <right_val>0.1056388020515442</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 4 2 10 -1.</_>
-                <_>
-                  8 9 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0190466307103634</threshold>
-            <left_val>0.0378969013690948</left_val>
-            <right_val>-0.2042724043130875</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 4 4 -1.</_>
-                <_>
-                  7 9 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0590843781828880</threshold>
-            <left_val>-0.2602826952934265</left_val>
-            <right_val>0.0318774096667767</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 2 10 -1.</_>
-                <_>
-                  14 0 1 10 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0399503409862518</threshold>
-            <left_val>-0.3506382107734680</left_val>
-            <right_val>9.2909233644604683e-003</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 10 2 -1.</_>
-                <_>
-                  4 0 10 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0508347414433956</threshold>
-            <left_val>0.0219123102724552</left_val>
-            <right_val>-0.3803296983242035</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 4 2 3 -1.</_>
-                <_>
-                  15 5 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0136031899601221</threshold>
-            <left_val>0.2038068026304245</left_val>
-            <right_val>-0.0212994609028101</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 12 9 3 -1.</_>
-                <_>
-                  7 12 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0674393326044083</threshold>
-            <left_val>-0.4756908118724823</left_val>
-            <right_val>0.0163150597363710</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 4 2 3 -1.</_>
-                <_>
-                  15 5 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0177440494298935</threshold>
-            <left_val>-0.0262153502553701</left_val>
-            <right_val>0.1731224954128265</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 14 4 -1.</_>
-                <_>
-                  2 3 14 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0408229492604733</threshold>
-            <left_val>0.0269718896597624</left_val>
-            <right_val>-0.2531566023826599</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 4 2 -1.</_>
-                <_>
-                  9 2 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.5472789313644171e-003</threshold>
-            <left_val>-0.1938990056514740</left_val>
-            <right_val>0.0151813402771950</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 3 12 4 -1.</_>
-                <_>
-                  1 3 6 2 2.</_>
-                <_>
-                  7 5 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0134509503841400</threshold>
-            <left_val>-0.0560166388750076</left_val>
-            <right_val>0.1336188018321991</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 8 2 -1.</_>
-                <_>
-                  9 3 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0702156871557236</threshold>
-            <left_val>0.0121993301436305</left_val>
-            <right_val>-0.2975654006004334</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 3 8 2 -1.</_>
-                <_>
-                  5 3 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0158290397375822</threshold>
-            <left_val>-0.0871118977665901</left_val>
-            <right_val>0.0889551267027855</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 8 3 4 -1.</_>
-                <_>
-                  16 9 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0203911308199167</threshold>
-            <left_val>0.1782993972301483</left_val>
-            <right_val>-0.0371981598436832</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 8 4 3 -1.</_>
-                <_>
-                  2 9 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.6189330276101828e-003</threshold>
-            <left_val>-0.0762976333498955</left_val>
-            <right_val>0.0969681292772293</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 12 2 3 -1.</_>
-                <_>
-                  15 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0060019558295608e-003</threshold>
-            <left_val>-0.0498901791870594</left_val>
-            <right_val>0.0658943429589272</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 1 4 -1.</_>
-                <_>
-                  0 8 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9275720007717609e-003</threshold>
-            <left_val>0.0298173800110817</left_val>
-            <right_val>-0.2424031049013138</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 12 2 3 -1.</_>
-                <_>
-                  15 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0122589897364378</threshold>
-            <left_val>0.1903184950351715</left_val>
-            <right_val>-7.5331269763410091e-003</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 12 2 3 -1.</_>
-                <_>
-                  1 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3739310563541949e-005</threshold>
-            <left_val>-0.0887768194079399</left_val>
-            <right_val>0.0806454271078110</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 3 8 -1.</_>
-                <_>
-                  8 2 3 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0128609901294112</threshold>
-            <left_val>0.0695679932832718</left_val>
-            <right_val>-0.0297688208520412</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 8 -1.</_>
-                <_>
-                  9 0 6 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0491925515234470</threshold>
-            <left_val>0.1511365026235580</left_val>
-            <right_val>-0.0546999201178551</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 14 12 1 -1.</_>
-                <_>
-                  8 14 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0194404404610395</threshold>
-            <left_val>-0.1785937994718552</left_val>
-            <right_val>0.0176323205232620</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 4 -1.</_>
-                <_>
-                  8 1 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5363420136272907e-003</threshold>
-            <left_val>0.0300990603864193</left_val>
-            <right_val>-0.2170494049787521</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 4 3 -1.</_>
-                <_>
-                  8 0 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0209271106868982</threshold>
-            <left_val>0.1529344022274017</left_val>
-            <right_val>-0.0265916306525469</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 2 -1.</_>
-                <_>
-                  8 0 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1768060978502035e-003</threshold>
-            <left_val>-0.0801318064332008</left_val>
-            <right_val>0.0870366171002388</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 13 8 2 -1.</_>
-                <_>
-                  8 14 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2644919119775295e-003</threshold>
-            <left_val>-0.0506618581712246</left_val>
-            <right_val>0.0504105202853680</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 11 18 4 -1.</_>
-                <_>
-                  0 11 9 2 2.</_>
-                <_>
-                  9 13 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0531350895762444</threshold>
-            <left_val>0.0313573814928532</left_val>
-            <right_val>-0.2432748973369598</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 9 8 2 -1.</_>
-                <_>
-                  13 9 4 1 2.</_>
-                <_>
-                  9 10 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5658721141517162e-003</threshold>
-            <left_val>-0.0314484387636185</left_val>
-            <right_val>0.1314239054918289</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 9 2 2 -1.</_>
-                <_>
-                  8 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.6994590405374765e-003</threshold>
-            <left_val>0.0787288174033165</left_val>
-            <right_val>-0.0930547267198563</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 9 8 2 -1.</_>
-                <_>
-                  13 9 4 1 2.</_>
-                <_>
-                  9 10 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0231965091079474</threshold>
-            <left_val>0.2017091065645218</left_val>
-            <right_val>-0.0152339404448867</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 9 8 2 -1.</_>
-                <_>
-                  1 9 4 1 2.</_>
-                <_>
-                  5 10 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.1990801952779293e-003</threshold>
-            <left_val>-0.0436348989605904</left_val>
-            <right_val>0.2130060940980911</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 7 1 3 -1.</_>
-                <_>
-                  10 8 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.9829211570322514e-003</threshold>
-            <left_val>0.0317675210535526</left_val>
-            <right_val>-0.2128593027591705</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 3 1 -1.</_>
-                <_>
-                  8 8 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.4900798238813877e-003</threshold>
-            <left_val>-0.1751292943954468</left_val>
-            <right_val>0.0440214611589909</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 3 8 -1.</_>
-                <_>
-                  8 2 3 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1209999993443489</threshold>
-            <left_val>-0.3690679967403412</left_val>
-            <right_val>4.4225710444152355e-003</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 8 3 -1.</_>
-                <_>
-                  10 2 4 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0380082689225674</threshold>
-            <left_val>0.5277379751205444</left_val>
-            <right_val>-0.0147407604381442</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 7 8 2 -1.</_>
-                <_>
-                  5 8 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0111320000141859</threshold>
-            <left_val>0.0634055435657501</left_val>
-            <right_val>-0.1106311976909638</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 9 9 -1.</_>
-                <_>
-                  7 4 3 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1212562024593353</threshold>
-            <left_val>0.1124370023608208</left_val>
-            <right_val>-0.0671258494257927</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 3 3 7 -1.</_>
-                <_>
-                  11 4 1 7 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0588735602796078</threshold>
-            <left_val>0.1949198991060257</left_val>
-            <right_val>-7.9787842696532607e-004</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 7 3 -1.</_>
-                <_>
-                  7 4 7 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0123289301991463</threshold>
-            <left_val>-0.1880646944046021</left_val>
-            <right_val>0.0393505804240704</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 5 4 2 -1.</_>
-                <_>
-                  7 6 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.4250390492379665e-003</threshold>
-            <left_val>0.1126734018325806</left_val>
-            <right_val>-0.0681002363562584</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 2 6 -1.</_>
-                <_>
-                  7 3 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.0966828130185604e-003</threshold>
-            <left_val>-0.1794558018445969</left_val>
-            <right_val>0.0475732088088989</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 3 6 -1.</_>
-                <_>
-                  9 2 1 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0403452403843403</threshold>
-            <left_val>-0.5704476833343506</left_val>
-            <right_val>5.5092480033636093e-003</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 6 3 -1.</_>
-                <_>
-                  11 5 2 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1125494018197060</threshold>
-            <left_val>-0.0269452705979347</left_val>
-            <right_val>0.2580899000167847</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 14 12 1 -1.</_>
-                <_>
-                  8 14 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0699782967567444</threshold>
-            <left_val>-1.1665009660646319e-003</left_val>
-            <right_val>0.8676825165748596</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 14 12 1 -1.</_>
-                <_>
-                  4 14 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0165449008345604</threshold>
-            <left_val>0.0243071895092726</left_val>
-            <right_val>-0.2559692859649658</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 7 16 6 -1.</_>
-                <_>
-                  1 9 16 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0822774171829224</threshold>
-            <left_val>-0.0268739499151707</left_val>
-            <right_val>0.2409840971231461</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 3 4 -1.</_>
-                <_>
-                  0 11 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.6195117756724358e-003</threshold>
-            <left_val>-0.1658201962709427</left_val>
-            <right_val>0.0400424189865589</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 7 4 1 -1.</_>
-                <_>
-                  15 7 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4694160092622042e-003</threshold>
-            <left_val>0.0927710607647896</left_val>
-            <right_val>-0.0273753199726343</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 1 1 4 -1.</_>
-                <_>
-                  8 1 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>1.0857389861484990e-004</threshold>
-            <left_val>-0.1348482966423035</left_val>
-            <right_val>0.0436066016554832</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 1 4 3 -1.</_>
-                <_>
-                  15 2 2 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0164907705038786</threshold>
-            <left_val>-0.1666806042194367</left_val>
-            <right_val>0.0177498105913401</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 6 2 4 -1.</_>
-                <_>
-                  2 6 1 2 2.</_>
-                <_>
-                  3 8 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.7164629213511944e-003</threshold>
-            <left_val>0.1780464947223663</left_val>
-            <right_val>-0.0365630798041821</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 5 3 10 -1.</_>
-                <_>
-                  15 10 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0906244590878487</threshold>
-            <left_val>0.0174008794128895</left_val>
-            <right_val>-0.4898025989532471</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 9 6 4 -1.</_>
-                <_>
-                  3 9 3 2 2.</_>
-                <_>
-                  6 11 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7714879252016544e-003</threshold>
-            <left_val>-0.0659386664628983</left_val>
-            <right_val>0.0964076220989227</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 3 3 7 -1.</_>
-                <_>
-                  14 4 1 7 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0434898696839809</threshold>
-            <left_val>0.0139165297150612</left_val>
-            <right_val>-0.2709555923938751</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 2 7 4 -1.</_>
-                <_>
-                  5 3 7 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.3884491100907326e-003</threshold>
-            <left_val>-0.0581430904567242</left_val>
-            <right_val>0.1046271026134491</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 1 3 3 -1.</_>
-                <_>
-                  14 2 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0142638003453612</threshold>
-            <left_val>0.1401764005422592</left_val>
-            <right_val>-0.0269160307943821</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 8 3 -1.</_>
-                <_>
-                  0 5 8 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.6627448648214340e-003</threshold>
-            <left_val>-0.1896232962608337</left_val>
-            <right_val>0.0316337496042252</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 4 3 5 -1.</_>
-                <_>
-                  15 5 1 5 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.5204060412943363e-003</threshold>
-            <left_val>-0.0435900315642357</left_val>
-            <right_val>0.1000792011618614</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 4 5 2 -1.</_>
-                <_>
-                  5 4 5 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0110979797318578</threshold>
-            <left_val>0.3084025979042053</left_val>
-            <right_val>-0.0212082397192717</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 7 1 6 -1.</_>
-                <_>
-                  8 9 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0618321411311626</threshold>
-            <left_val>0.1831555068492889</left_val>
-            <right_val>-7.7433600090444088e-003</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 6 1 -1.</_>
-                <_>
-                  10 9 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.4768159966915846e-003</threshold>
-            <left_val>0.0506381392478943</left_val>
-            <right_val>-0.1340041011571884</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 4 6 10 -1.</_>
-                <_>
-                  13 4 3 5 2.</_>
-                <_>
-                  10 9 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0977838635444641</threshold>
-            <left_val>2.0544449798762798e-003</left_val>
-            <right_val>-0.6877961754798889</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 4 6 10 -1.</_>
-                <_>
-                  2 4 3 5 2.</_>
-                <_>
-                  5 9 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0918209478259087</threshold>
-            <left_val>-0.2558689117431641</left_val>
-            <right_val>0.0251086503267288</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 5 10 2 -1.</_>
-                <_>
-                  9 5 5 1 2.</_>
-                <_>
-                  4 6 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0140088303014636</threshold>
-            <left_val>-0.3638179898262024</left_val>
-            <right_val>0.0155368996784091</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 2 3 6 -1.</_>
-                <_>
-                  7 3 1 6 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0470989495515823</threshold>
-            <left_val>0.4120045006275177</left_val>
-            <right_val>-0.0147856995463371</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 4 -1.</_>
-                <_>
-                  16 2 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0240776594728231</threshold>
-            <left_val>-0.2649717926979065</left_val>
-            <right_val>4.3284958228468895e-003</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 2 4 -1.</_>
-                <_>
-                  0 2 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.0720019713044167e-003</threshold>
-            <left_val>0.1134819984436035</left_val>
-            <right_val>-0.0527238808572292</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 10 4 -1.</_>
-                <_>
-                  8 2 10 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0232353191822767</threshold>
-            <left_val>-0.1618241071701050</left_val>
-            <right_val>0.0139071401208639</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 4 -1.</_>
-                <_>
-                  0 0 9 2 2.</_>
-                <_>
-                  9 2 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0217532292008400</threshold>
-            <left_val>0.0320463292300701</left_val>
-            <right_val>-0.1815026998519898</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 12 2 -1.</_>
-                <_>
-                  9 0 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0284193791449070</threshold>
-            <left_val>0.0735991299152374</left_val>
-            <right_val>-0.0121852997690439</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 12 2 -1.</_>
-                <_>
-                  3 0 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0990353375673294</threshold>
-            <left_val>-0.8003916144371033</left_val>
-            <right_val>7.5543550774455070e-003</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 3 1 3 -1.</_>
-                <_>
-                  16 4 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.6745260003954172e-003</threshold>
-            <left_val>-0.0425384715199471</left_val>
-            <right_val>0.1313553005456924</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 12 6 -1.</_>
-                <_>
-                  3 4 6 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2490209937095642</threshold>
-            <left_val>0.5709738135337830</left_val>
-            <right_val>-0.0100652799010277</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 3 1 3 -1.</_>
-                <_>
-                  16 4 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.5670630857348442e-003</threshold>
-            <left_val>0.1004543974995613</left_val>
-            <right_val>-0.0438447706401348</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 3 1 -1.</_>
-                <_>
-                  9 8 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.2725669704377651e-003</threshold>
-            <left_val>0.0282882191240788</left_val>
-            <right_val>-0.1991124004125595</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 3 1 3 -1.</_>
-                <_>
-                  16 4 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0121860196813941</threshold>
-            <left_val>-8.9298561215400696e-003</left_val>
-            <right_val>0.1723618954420090</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 3 3 1 -1.</_>
-                <_>
-                  2 4 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-8.4080873057246208e-003</threshold>
-            <left_val>0.2205967009067535</left_val>
-            <right_val>-0.0254241600632668</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 2 3 1 -1.</_>
-                <_>
-                  16 3 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.6226810924708843e-003</threshold>
-            <left_val>0.0226176194846630</left_val>
-            <right_val>-0.3504024147987366</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 1 3 -1.</_>
-                <_>
-                  2 3 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.5278380382806063e-003</threshold>
-            <left_val>-0.2129029035568237</left_val>
-            <right_val>0.0337668098509312</right_val></_></_>
-        <_>
-          <!-- tree 135 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 3 14 6 -1.</_>
-                <_>
-                  2 5 14 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0487591288983822</threshold>
-            <left_val>0.2639946937561035</left_val>
-            <right_val>-0.0227282308042049</right_val></_></_>
-        <_>
-          <!-- tree 136 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 3 8 -1.</_>
-                <_>
-                  4 6 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0421630106866360</threshold>
-            <left_val>0.0164839699864388</left_val>
-            <right_val>-0.3725509941577911</right_val></_></_>
-        <_>
-          <!-- tree 137 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 2 4 3 -1.</_>
-                <_>
-                  13 3 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0412516593933105</threshold>
-            <left_val>-5.6340959854424000e-003</left_val>
-            <right_val>0.1074742004275322</right_val></_></_>
-        <_>
-          <!-- tree 138 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 3 4 -1.</_>
-                <_>
-                  5 3 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0335065908730030</threshold>
-            <left_val>0.3244982957839966</left_val>
-            <right_val>-0.0198305491358042</right_val></_></_>
-        <_>
-          <!-- tree 139 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 2 4 13 -1.</_>
-                <_>
-                  13 2 2 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.0785958990454674e-003</threshold>
-            <left_val>0.0712641105055809</left_val>
-            <right_val>-0.0864052474498749</right_val></_></_>
-        <_>
-          <!-- tree 140 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 2 4 13 -1.</_>
-                <_>
-                  3 2 2 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0396881289780140</threshold>
-            <left_val>-0.3553381860256195</left_val>
-            <right_val>0.0168110895901918</right_val></_></_>
-        <_>
-          <!-- tree 141 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 8 3 -1.</_>
-                <_>
-                  9 4 4 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.2625074088573456</threshold>
-            <left_val>3.3027199096977711e-003</left_val>
-            <right_val>-0.3045256137847900</right_val></_></_>
-        <_>
-          <!-- tree 142 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 3 8 -1.</_>
-                <_>
-                  9 4 3 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1033687964081764</threshold>
-            <left_val>-0.4427754878997803</left_val>
-            <right_val>0.0152687802910805</right_val></_></_>
-        <_>
-          <!-- tree 143 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 10 1 2 -1.</_>
-                <_>
-                  17 11 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5352418888360262e-003</threshold>
-            <left_val>0.0226268991827965</left_val>
-            <right_val>-0.1935666948556900</right_val></_></_>
-        <_>
-          <!-- tree 144 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 1 -1.</_>
-                <_>
-                  9 0 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3277910184115171e-003</threshold>
-            <left_val>-0.0842633768916130</left_val>
-            <right_val>0.0657716765999794</right_val></_></_>
-        <_>
-          <!-- tree 145 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 9 13 -1.</_>
-                <_>
-                  9 0 3 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0692616030573845</threshold>
-            <left_val>0.1914274990558624</left_val>
-            <right_val>-0.0148142697289586</right_val></_></_>
-        <_>
-          <!-- tree 146 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 1 10 -1.</_>
-                <_>
-                  0 6 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0319452695548534</threshold>
-            <left_val>-0.3099650144577026</left_val>
-            <right_val>0.0180993191897869</right_val></_></_>
-        <_>
-          <!-- tree 147 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 11 18 2 -1.</_>
-                <_>
-                  0 12 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.1500530466437340e-003</threshold>
-            <left_val>-0.0755150690674782</left_val>
-            <right_val>0.0713425576686859</right_val></_></_>
-        <_>
-          <!-- tree 148 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 7 3 6 -1.</_>
-                <_>
-                  5 9 1 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4518880527466536e-003</threshold>
-            <left_val>-0.0526761785149574</left_val>
-            <right_val>0.1191487014293671</right_val></_></_>
-        <_>
-          <!-- tree 149 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 2 5 -1.</_>
-                <_>
-                  12 7 1 5 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0254793707281351</threshold>
-            <left_val>-0.0215268898755312</left_val>
-            <right_val>0.1125423014163971</right_val></_></_>
-        <_>
-          <!-- tree 150 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 5 2 1 -1.</_>
-                <_>
-                  7 5 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.3662307588383555e-005</threshold>
-            <left_val>-0.1237241029739380</left_val>
-            <right_val>0.0447584912180901</right_val></_></_>
-        <_>
-          <!-- tree 151 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 2 6 2 -1.</_>
-                <_>
-                  11 2 3 1 2.</_>
-                <_>
-                  8 3 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.2631269209086895e-003</threshold>
-            <left_val>0.0166446994990110</left_val>
-            <right_val>-0.2792761921882629</right_val></_></_>
-        <_>
-          <!-- tree 152 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 6 3 1 -1.</_>
-                <_>
-                  5 6 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9906251408392563e-005</threshold>
-            <left_val>-0.0590216182172298</left_val>
-            <right_val>0.0907072424888611</right_val></_></_>
-        <_>
-          <!-- tree 153 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 18 14 -1.</_>
-                <_>
-                  9 1 9 7 2.</_>
-                <_>
-                  0 8 9 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.4049279987812042</threshold>
-            <left_val>9.8951030522584915e-003</left_val>
-            <right_val>-0.5390074849128723</right_val></_></_>
-        <_>
-          <!-- tree 154 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 6 6 -1.</_>
-                <_>
-                  0 9 3 3 2.</_>
-                <_>
-                  3 12 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5421868562698364e-003</threshold>
-            <left_val>-0.0830420330166817</left_val>
-            <right_val>0.0579336211085320</right_val></_></_>
-        <_>
-          <!-- tree 155 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 9 10 6 -1.</_>
-                <_>
-                  13 9 5 3 2.</_>
-                <_>
-                  8 12 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0286024697124958</threshold>
-            <left_val>0.0987989678978920</left_val>
-            <right_val>-0.0411834083497524</right_val></_></_>
-        <_>
-          <!-- tree 156 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 10 15 3 -1.</_>
-                <_>
-                  1 11 15 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.0981088317930698e-003</threshold>
-            <left_val>-0.0496008917689323</left_val>
-            <right_val>0.1082315966486931</right_val></_></_>
-        <_>
-          <!-- tree 157 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 11 1 2 -1.</_>
-                <_>
-                  16 11 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.4081019219011068e-003</threshold>
-            <left_val>0.0317933000624180</left_val>
-            <right_val>-0.0897006466984749</right_val></_></_>
-        <_>
-          <!-- tree 158 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 9 2 -1.</_>
-                <_>
-                  7 7 3 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1049328967928886</threshold>
-            <left_val>-0.1838400065898895</left_val>
-            <right_val>0.0292720291763544</right_val></_></_>
-        <_>
-          <!-- tree 159 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 4 2 -1.</_>
-                <_>
-                  7 8 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.2810851270332932e-004</threshold>
-            <left_val>0.0346079505980015</left_val>
-            <right_val>-0.1805756986141205</right_val></_></_>
-        <_>
-          <!-- tree 160 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 7 4 2 -1.</_>
-                <_>
-                  2 7 2 1 2.</_>
-                <_>
-                  4 8 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3983051069080830e-003</threshold>
-            <left_val>-0.0366495698690414</left_val>
-            <right_val>0.1469368040561676</right_val></_></_>
-        <_>
-          <!-- tree 161 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 5 2 -1.</_>
-                <_>
-                  8 1 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.4842050410807133e-003</threshold>
-            <left_val>0.0254560094326735</left_val>
-            <right_val>-0.1706009060144424</right_val></_></_>
-        <_>
-          <!-- tree 162 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 2 4 11 -1.</_>
-                <_>
-                  7 2 2 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0559289082884789</threshold>
-            <left_val>6.9079152308404446e-003</left_val>
-            <right_val>-0.7426319122314453</right_val></_></_>
-        <_>
-          <!-- tree 163 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 1 -1.</_>
-                <_>
-                  16 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0113146202638745</threshold>
-            <left_val>-0.6569160223007202</left_val>
-            <right_val>3.0682450160384178e-003</right_val></_></_>
-        <_>
-          <!-- tree 164 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 1 2 -1.</_>
-                <_>
-                  2 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.2855871617794037e-003</threshold>
-            <left_val>0.0122091500088573</left_val>
-            <right_val>-0.4113836884498596</right_val></_></_>
-        <_>
-          <!-- tree 165 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 9 2 2 -1.</_>
-                <_>
-                  12 9 1 1 2.</_>
-                <_>
-                  11 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.5499120131134987e-003</threshold>
-            <left_val>0.1567400991916657</left_val>
-            <right_val>-0.0136733297258615</right_val></_></_>
-        <_>
-          <!-- tree 166 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 8 4 4 -1.</_>
-                <_>
-                  8 8 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0162009894847870</threshold>
-            <left_val>-0.4511883854866028</left_val>
-            <right_val>0.0105137201026082</right_val></_></_>
-        <_>
-          <!-- tree 167 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 1 -1.</_>
-                <_>
-                  7 0 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3212178647518158e-003</threshold>
-            <left_val>0.2467146962881088</left_val>
-            <right_val>-0.0221792291849852</right_val></_></_>
-        <_>
-          <!-- tree 168 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 6 8 -1.</_>
-                <_>
-                  4 0 3 4 2.</_>
-                <_>
-                  7 4 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0678062811493874</threshold>
-            <left_val>0.0141928596422076</left_val>
-            <right_val>-0.4557569921016693</right_val></_></_>
-        <_>
-          <!-- tree 169 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 1 9 9 -1.</_>
-                <_>
-                  8 4 3 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.4499514997005463</threshold>
-            <left_val>-0.0205099303275347</left_val>
-            <right_val>0.2384169995784760</right_val></_></_>
-        <_>
-          <!-- tree 170 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 4 10 -1.</_>
-                <_>
-                  0 9 4 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1606801003217697</threshold>
-            <left_val>-0.7912417054176331</left_val>
-            <right_val>5.4184817709028721e-003</right_val></_></_>
-        <_>
-          <!-- tree 171 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 11 1 2 -1.</_>
-                <_>
-                  16 11 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.4610815867781639e-003</threshold>
-            <left_val>-0.2421163022518158</left_val>
-            <right_val>9.1182524338364601e-003</right_val></_></_>
-        <_>
-          <!-- tree 172 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 7 16 4 -1.</_>
-                <_>
-                  1 8 16 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0147587396204472</threshold>
-            <left_val>-0.0416104607284069</left_val>
-            <right_val>0.1353428959846497</right_val></_></_>
-        <_>
-          <!-- tree 173 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 11 1 2 -1.</_>
-                <_>
-                  16 11 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.5756370313465595e-003</threshold>
-            <left_val>9.3746017664670944e-003</left_val>
-            <right_val>-0.0832142680883408</right_val></_></_>
-        <_>
-          <!-- tree 174 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 11 2 1 -1.</_>
-                <_>
-                  2 11 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.7711522094905376e-003</threshold>
-            <left_val>0.0266925692558289</left_val>
-            <right_val>-0.1980333030223846</right_val></_></_>
-        <_>
-          <!-- tree 175 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 13 14 2 -1.</_>
-                <_>
-                  2 14 14 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0509134791791439</threshold>
-            <left_val>0.3214649856090546</left_val>
-            <right_val>-0.0169861502945423</right_val></_></_>
-        <_>
-          <!-- tree 176 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 13 4 2 -1.</_>
-                <_>
-                  0 13 2 1 2.</_>
-                <_>
-                  2 14 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.3694868003949523e-005</threshold>
-            <left_val>-0.0845351293683052</left_val>
-            <right_val>0.0685012266039848</right_val></_></_>
-        <_>
-          <!-- tree 177 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 1 3 2 -1.</_>
-                <_>
-                  15 1 3 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.1522149909287691e-003</threshold>
-            <left_val>0.0548588298261166</left_val>
-            <right_val>-0.0481257401406765</right_val></_></_>
-        <_>
-          <!-- tree 178 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 9 2 2 -1.</_>
-                <_>
-                  5 9 1 1 2.</_>
-                <_>
-                  6 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.0621249936521053e-003</threshold>
-            <left_val>0.3157261908054352</left_val>
-            <right_val>-0.0174344405531883</right_val></_></_>
-        <_>
-          <!-- tree 179 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 9 6 2 -1.</_>
-                <_>
-                  6 10 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0351190604269505</threshold>
-            <left_val>-0.4585689902305603</left_val>
-            <right_val>0.0149546898901463</right_val></_></_>
-        <_>
-          <!-- tree 180 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 18 2 -1.</_>
-                <_>
-                  0 6 9 1 2.</_>
-                <_>
-                  9 7 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0127988802269101</threshold>
-            <left_val>-0.1521113961935043</left_val>
-            <right_val>0.0345015898346901</right_val></_></_>
-        <_>
-          <!-- tree 181 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 13 2 2 -1.</_>
-                <_>
-                  15 13 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3432481363415718e-003</threshold>
-            <left_val>-0.2026983946561813</left_val>
-            <right_val>0.0139673100784421</right_val></_></_>
-        <_>
-          <!-- tree 182 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 9 2 2 -1.</_>
-                <_>
-                  7 9 1 1 2.</_>
-                <_>
-                  8 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.0109770596027374e-003</threshold>
-            <left_val>0.2396494001150131</left_val>
-            <right_val>-0.0214331708848476</right_val></_></_>
-        <_>
-          <!-- tree 183 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 18 4 -1.</_>
-                <_>
-                  9 8 9 2 2.</_>
-                <_>
-                  0 10 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0795640870928764</threshold>
-            <left_val>0.0169675108045340</left_val>
-            <right_val>-0.3126080930233002</right_val></_></_>
-        <_>
-          <!-- tree 184 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 4 2 4 -1.</_>
-                <_>
-                  8 6 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0168946702033281</threshold>
-            <left_val>0.1459030061960220</left_val>
-            <right_val>-0.0348196700215340</right_val></_></_>
-        <_>
-          <!-- tree 185 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 4 12 9 -1.</_>
-                <_>
-                  7 7 4 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.6578676104545593</threshold>
-            <left_val>-0.0130230896174908</left_val>
-            <right_val>0.4104476869106293</right_val></_></_>
-        <_>
-          <!-- tree 186 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 4 7 -1.</_>
-                <_>
-                  9 1 2 7 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1127222031354904</threshold>
-            <left_val>-0.3777270913124085</left_val>
-            <right_val>0.0159226898103952</right_val></_></_>
-        <_>
-          <!-- tree 187 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 0 4 2 -1.</_>
-                <_>
-                  12 1 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0177928805351257</threshold>
-            <left_val>0.0118195097893476</left_val>
-            <right_val>-0.2466803938150406</right_val></_></_>
-        <_>
-          <!-- tree 188 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 2 4 -1.</_>
-                <_>
-                  6 1 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.3843109849840403e-003</threshold>
-            <left_val>0.0420966595411301</left_val>
-            <right_val>-0.1362892985343933</right_val></_></_>
-        <_>
-          <!-- tree 189 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 2 2 -1.</_>
-                <_>
-                  12 0 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0129303801804781</threshold>
-            <left_val>0.0156342405825853</left_val>
-            <right_val>-0.3155972063541412</right_val></_></_>
-        <_>
-          <!-- tree 190 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 3 3 -1.</_>
-                <_>
-                  4 2 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0198661200702190</threshold>
-            <left_val>-0.0198671799153090</left_val>
-            <right_val>0.2729283869266510</right_val></_></_>
-        <_>
-          <!-- tree 191 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 3 2 -1.</_>
-                <_>
-                  13 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0202569793909788</threshold>
-            <left_val>-0.7507926821708679</left_val>
-            <right_val>3.6987708881497383e-003</right_val></_></_>
-        <_>
-          <!-- tree 192 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 2 3 -1.</_>
-                <_>
-                  5 1 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.8132500164210796e-003</threshold>
-            <left_val>-0.1871719062328339</left_val>
-            <right_val>0.0291250105947256</right_val></_></_>
-        <_>
-          <!-- tree 193 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 1 4 4 -1.</_>
-                <_>
-                  15 1 2 2 2.</_>
-                <_>
-                  13 3 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0134505499154329</threshold>
-            <left_val>0.2419849932193756</left_val>
-            <right_val>-0.0111368801444769</right_val></_></_>
-        <_>
-          <!-- tree 194 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 2 1 -1.</_>
-                <_>
-                  3 0 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3866169764660299e-005</threshold>
-            <left_val>0.0751902163028717</left_val>
-            <right_val>-0.0758378133177757</right_val></_></_>
-        <_>
-          <!-- tree 195 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 2 2 -1.</_>
-                <_>
-                  15 0 1 1 2.</_>
-                <_>
-                  14 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0485909014241770e-005</threshold>
-            <left_val>-0.0479880385100842</left_val>
-            <right_val>0.0507909804582596</right_val></_></_>
-        <_>
-          <!-- tree 196 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 2 2 -1.</_>
-                <_>
-                  2 0 1 1 2.</_>
-                <_>
-                  3 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.4496016420889646e-005</threshold>
-            <left_val>0.0863163173198700</left_val>
-            <right_val>-0.0676591396331787</right_val></_></_>
-        <_>
-          <!-- tree 197 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 2 2 -1.</_>
-                <_>
-                  15 0 1 1 2.</_>
-                <_>
-                  14 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.8561800213064998e-005</threshold>
-            <left_val>0.0952962711453438</left_val>
-            <right_val>-0.0720320492982864</right_val></_></_>
-        <_>
-          <!-- tree 198 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 2 2 -1.</_>
-                <_>
-                  2 0 1 1 2.</_>
-                <_>
-                  3 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0147060392191634e-005</threshold>
-            <left_val>-0.0706219524145126</left_val>
-            <right_val>0.0916848704218864</right_val></_></_>
-        <_>
-          <!-- tree 199 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 1 4 -1.</_>
-                <_>
-                  16 1 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.7007611980661750e-004</threshold>
-            <left_val>-0.0312023907899857</left_val>
-            <right_val>0.0549915507435799</right_val></_></_>
-        <_>
-          <!-- tree 200 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 6 2 -1.</_>
-                <_>
-                  3 3 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.6719879657030106e-003</threshold>
-            <left_val>-0.0433308891952038</left_val>
-            <right_val>0.1151764988899231</right_val></_></_>
-        <_>
-          <!-- tree 201 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 1 2 6 -1.</_>
-                <_>
-                  17 1 1 3 2.</_>
-                <_>
-                  16 4 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.5680748559534550e-003</threshold>
-            <left_val>-0.0232947506010532</left_val>
-            <right_val>0.2060377001762390</right_val></_></_>
-        <_>
-          <!-- tree 202 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 13 2 2 -1.</_>
-                <_>
-                  2 13 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0460308557376266e-004</threshold>
-            <left_val>0.0510324798524380</left_val>
-            <right_val>-0.1127713993191719</right_val></_></_>
-        <_>
-          <!-- tree 203 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 1 2 6 -1.</_>
-                <_>
-                  17 1 1 3 2.</_>
-                <_>
-                  16 4 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.7291790358722210e-003</threshold>
-            <left_val>0.0791396573185921</left_val>
-            <right_val>-0.0201081596314907</right_val></_></_>
-        <_>
-          <!-- tree 204 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 3 4 -1.</_>
-                <_>
-                  5 2 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0155905103310943</threshold>
-            <left_val>0.0178762990981340</left_val>
-            <right_val>-0.3296821117401123</right_val></_></_>
-        <_>
-          <!-- tree 205 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 3 -1.</_>
-                <_>
-                  15 1 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0543143115937710</threshold>
-            <left_val>-0.5602126121520996</left_val>
-            <right_val>1.0424769716337323e-003</right_val></_></_>
-        <_>
-          <!-- tree 206 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 3 2 -1.</_>
-                <_>
-                  3 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.8423749655485153e-003</threshold>
-            <left_val>-0.0343349911272526</left_val>
-            <right_val>0.1776601970195770</right_val></_></_>
-        <_>
-          <!-- tree 207 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 2 3 3 -1.</_>
-                <_>
-                  11 3 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.9496310316026211e-003</threshold>
-            <left_val>0.0119108697399497</left_val>
-            <right_val>-0.2833696901798248</right_val></_></_>
-        <_>
-          <!-- tree 208 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 3 3 -1.</_>
-                <_>
-                  4 3 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.2853900231420994e-003</threshold>
-            <left_val>-0.2330842018127441</left_val>
-            <right_val>0.0223415307700634</right_val></_></_>
-        <_>
-          <!-- tree 209 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 3 1 2 -1.</_>
-                <_>
-                  10 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8665860958863050e-005</threshold>
-            <left_val>-0.0438981205224991</left_val>
-            <right_val>0.0437583401799202</right_val></_></_>
-        <_>
-          <!-- tree 210 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 3 2 2 -1.</_>
-                <_>
-                  7 3 1 1 2.</_>
-                <_>
-                  8 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.6118220527423546e-005</threshold>
-            <left_val>0.0808287113904953</left_val>
-            <right_val>-0.0694800913333893</right_val></_></_>
-        <_>
-          <!-- tree 211 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 8 6 2 -1.</_>
-                <_>
-                  6 9 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0484328605234623</threshold>
-            <left_val>-0.7912955284118652</left_val>
-            <right_val>6.5139750950038433e-003</right_val></_></_>
-        <_>
-          <!-- tree 212 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 9 3 -1.</_>
-                <_>
-                  3 10 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0152241997420788</threshold>
-            <left_val>-0.0400892198085785</left_val>
-            <right_val>0.1345576941967011</right_val></_></_>
-        <_>
-          <!-- tree 213 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 12 10 1 -1.</_>
-                <_>
-                  6 12 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0128723401576281</threshold>
-            <left_val>0.0560490600764751</left_val>
-            <right_val>-0.0245438907295465</right_val></_></_>
-        <_>
-          <!-- tree 214 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 8 3 -1.</_>
-                <_>
-                  6 12 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0282472502440214</threshold>
-            <left_val>-0.0394716411828995</left_val>
-            <right_val>0.1513788998126984</right_val></_></_>
-        <_>
-          <!-- tree 215 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 12 4 2 -1.</_>
-                <_>
-                  14 12 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.4682589620351791e-003</threshold>
-            <left_val>0.0130424499511719</left_val>
-            <right_val>-0.2048127055168152</right_val></_></_>
-        <_>
-          <!-- tree 216 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 11 3 4 -1.</_>
-                <_>
-                  4 12 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0469749011099339</threshold>
-            <left_val>0.8017169833183289</left_val>
-            <right_val>-7.1750162169337273e-003</right_val></_></_>
-        <_>
-          <!-- tree 217 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 10 2 2 -1.</_>
-                <_>
-                  13 10 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0132254697382450</threshold>
-            <left_val>-0.0139600699767470</left_val>
-            <right_val>0.1729875057935715</right_val></_></_>
-        <_>
-          <!-- tree 218 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 10 2 2 -1.</_>
-                <_>
-                  5 10 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.1193178836256266e-003</threshold>
-            <left_val>0.0469035208225250</left_val>
-            <right_val>-0.1572621017694473</right_val></_></_>
-        <_>
-          <!-- tree 219 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 0 6 9 -1.</_>
-                <_>
-                  13 2 2 9 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.2148717045783997</threshold>
-            <left_val>3.7922300398349762e-003</left_val>
-            <right_val>-0.3814384043216705</right_val></_></_>
-        <_>
-          <!-- tree 220 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 2 8 3 -1.</_>
-                <_>
-                  8 4 4 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1509134024381638</threshold>
-            <left_val>-0.0139226997271180</left_val>
-            <right_val>0.4097478985786438</right_val></_></_>
-        <_>
-          <!-- tree 221 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 0 6 9 -1.</_>
-                <_>
-                  13 2 2 9 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.2302934974431992</threshold>
-            <left_val>-0.5820657014846802</left_val>
-            <right_val>1.1216839775443077e-003</right_val></_></_>
-        <_>
-          <!-- tree 222 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 9 6 -1.</_>
-                <_>
-                  5 2 9 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1403041034936905</threshold>
-            <left_val>0.0169044900685549</left_val>
-            <right_val>-0.3682535886764526</right_val></_></_>
-        <_>
-          <!-- tree 223 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 2 2 -1.</_>
-                <_>
-                  10 3 1 1 2.</_>
-                <_>
-                  9 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.0036112447269261e-005</threshold>
-            <left_val>-0.0551543496549129</left_val>
-            <right_val>0.0726215615868568</right_val></_></_>
-        <_>
-          <!-- tree 224 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 10 13 -1.</_>
-                <_>
-                  8 2 5 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.4960846900939941</threshold>
-            <left_val>7.3583098128437996e-003</left_val>
-            <right_val>-0.7018330097198486</right_val></_></_>
-        <_>
-          <!-- tree 225 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 2 -1.</_>
-                <_>
-                  5 1 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3255969863384962e-003</threshold>
-            <left_val>-0.1482249945402145</left_val>
-            <right_val>0.0326147899031639</right_val></_></_>
-        <_>
-          <!-- tree 226 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 7 8 -1.</_>
-                <_>
-                  5 2 7 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0138854403048754</threshold>
-            <left_val>0.1609764993190765</left_val>
-            <right_val>-0.0331473685801029</right_val></_></_>
-        <_>
-          <!-- tree 227 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 6 1 3 -1.</_>
-                <_>
-                  9 7 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.6077110134065151e-003</threshold>
-            <left_val>-0.5095651745796204</left_val>
-            <right_val>5.0284918397665024e-003</right_val></_></_>
-        <_>
-          <!-- tree 228 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 6 1 3 -1.</_>
-                <_>
-                  8 7 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9671129304915667e-003</threshold>
-            <left_val>0.0319776199758053</left_val>
-            <right_val>-0.1969588994979858</right_val></_></_>
-        <_>
-          <!-- tree 229 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 2 -1.</_>
-                <_>
-                  0 10 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.5358321405947208e-003</threshold>
-            <left_val>-0.0565205812454224</left_val>
-            <right_val>0.1075361967086792</right_val></_></_>
-        <_>
-          <!-- tree 230 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 17 4 -1.</_>
-                <_>
-                  0 9 17 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0710219964385033</threshold>
-            <left_val>0.0791943371295929</left_val>
-            <right_val>-0.0813843309879303</right_val></_></_>
-        <_>
-          <!-- tree 231 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 6 6 9 -1.</_>
-                <_>
-                  12 9 6 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0458000712096691</threshold>
-            <left_val>-0.0307503994554281</left_val>
-            <right_val>0.1565207988023758</right_val></_></_>
-        <_>
-          <!-- tree 232 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 3 3 -1.</_>
-                <_>
-                  2 0 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.7807468585669994e-003</threshold>
-            <left_val>0.0189444404095411</left_val>
-            <right_val>-0.3011228144168854</right_val></_></_>
-        <_>
-          <!-- tree 233 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 2 2 -1.</_>
-                <_>
-                  12 8 1 1 2.</_>
-                <_>
-                  11 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.9455070141702890e-003</threshold>
-            <left_val>0.1272296011447907</left_val>
-            <right_val>-0.0254848394542933</right_val></_></_>
-        <_>
-          <!-- tree 234 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 18 4 -1.</_>
-                <_>
-                  0 10 18 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1861845999956131</threshold>
-            <left_val>9.0244021266698837e-003</left_val>
-            <right_val>-0.5448626279830933</right_val></_></_>
-        <_>
-          <!-- tree 235 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 1 3 -1.</_>
-                <_>
-                  9 1 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.9605968999676406e-005</threshold>
-            <left_val>0.0626633614301682</left_val>
-            <right_val>-0.0534323900938034</right_val></_></_>
-        <_>
-          <!-- tree 236 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 18 2 -1.</_>
-                <_>
-                  0 4 9 1 2.</_>
-                <_>
-                  9 5 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0237148292362690</threshold>
-            <left_val>-0.6018021106719971</left_val>
-            <right_val>7.9368790611624718e-003</right_val></_></_>
-        <_>
-          <!-- tree 237 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 2 12 4 -1.</_>
-                <_>
-                  11 2 6 2 2.</_>
-                <_>
-                  5 4 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0313583016395569</threshold>
-            <left_val>-0.1772198975086212</left_val>
-            <right_val>9.2706838622689247e-003</right_val></_></_>
-        <_>
-          <!-- tree 238 -->
-          <_>
-            <!-- 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.0349689982831478</threshold>
-            <left_val>0.3794535100460053</left_val>
-            <right_val>-0.0169909205287695</right_val></_></_>
-        <_>
-          <!-- tree 239 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 4 1 8 -1.</_>
-                <_>
-                  13 6 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0624166503548622</threshold>
-            <left_val>-0.4159173965454102</left_val>
-            <right_val>4.8467209562659264e-003</right_val></_></_>
-        <_>
-          <!-- tree 240 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 4 8 1 -1.</_>
-                <_>
-                  5 6 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0422837510704994</threshold>
-            <left_val>9.8220221698284149e-003</left_val>
-            <right_val>-0.4765555858612061</right_val></_></_>
-        <_>
-          <!-- tree 241 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 8 8 2 -1.</_>
-                <_>
-                  13 8 4 1 2.</_>
-                <_>
-                  9 9 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1127527840435505e-003</threshold>
-            <left_val>-0.0367820709943771</left_val>
-            <right_val>0.1647402048110962</right_val></_></_>
-        <_>
-          <!-- tree 242 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 8 6 2 -1.</_>
-                <_>
-                  4 8 3 1 2.</_>
-                <_>
-                  7 9 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0112114502117038</threshold>
-            <left_val>0.1880359053611755</left_val>
-            <right_val>-0.0276528596878052</right_val></_></_>
-        <_>
-          <!-- tree 243 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 12 2 -1.</_>
-                <_>
-                  9 3 6 1 2.</_>
-                <_>
-                  3 4 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.2367132157087326e-003</threshold>
-            <left_val>0.0286790002137423</left_val>
-            <right_val>-0.1775102019309998</right_val></_></_>
-        <_>
-          <!-- tree 244 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 1 4 -1.</_>
-                <_>
-                  4 2 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3686140745412558e-005</threshold>
-            <left_val>0.0753717795014381</left_val>
-            <right_val>-0.0666650682687759</right_val></_></_>
-        <_>
-          <!-- tree 245 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 5 3 3 -1.</_>
-                <_>
-                  10 6 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0128402002155781</threshold>
-            <left_val>0.0218078903853893</left_val>
-            <right_val>-0.1272031962871552</right_val></_></_>
-        <_>
-          <!-- tree 246 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 3 14 -1.</_>
-                <_>
-                  1 1 1 14 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0427928082644939</threshold>
-            <left_val>7.5381440110504627e-003</left_val>
-            <right_val>-0.7186136245727539</right_val></_></_>
-        <_>
-          <!-- tree 247 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 6 2 3 -1.</_>
-                <_>
-                  15 7 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.2706589922308922e-003</threshold>
-            <left_val>0.0988220199942589</left_val>
-            <right_val>-0.0448588803410530</right_val></_></_>
-        <_>
-          <!-- tree 248 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 3 2 -1.</_>
-                <_>
-                  4 2 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.2180468598380685e-004</threshold>
-            <left_val>-0.1059567034244537</left_val>
-            <right_val>0.0440276414155960</right_val></_></_>
-        <_>
-          <!-- tree 249 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 1 2 6 -1.</_>
-                <_>
-                  17 1 1 3 2.</_>
-                <_>
-                  16 4 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0192952807992697</threshold>
-            <left_val>-0.4121721982955933</left_val>
-            <right_val>2.9048579744994640e-003</right_val></_></_>
-        <_>
-          <!-- tree 250 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 2 6 -1.</_>
-                <_>
-                  0 1 1 3 2.</_>
-                <_>
-                  1 4 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.0072490442544222e-003</threshold>
-            <left_val>0.1149147972464562</left_val>
-            <right_val>-0.0455907806754112</right_val></_></_>
-        <_>
-          <!-- tree 251 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 9 7 -1.</_>
-                <_>
-                  9 0 3 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0550463087856770</threshold>
-            <left_val>0.1894032955169678</left_val>
-            <right_val>-0.0119002396240830</right_val></_></_>
-        <_>
-          <!-- tree 252 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 9 7 -1.</_>
-                <_>
-                  6 0 3 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1124947965145111</threshold>
-            <left_val>0.2426909953355789</left_val>
-            <right_val>-0.0220534801483154</right_val></_></_>
-        <_>
-          <!-- tree 253 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 1 6 -1.</_>
-                <_>
-                  9 0 1 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.5265945419669151e-003</threshold>
-            <left_val>-0.0385538190603256</left_val>
-            <right_val>0.0301385801285505</right_val></_></_>
-        <_>
-          <!-- tree 254 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 6 1 -1.</_>
-                <_>
-                  9 0 3 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.8573405519127846e-003</threshold>
-            <left_val>-0.0646601468324661</left_val>
-            <right_val>0.0850300714373589</right_val></_></_>
-        <_>
-          <!-- tree 255 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 3 5 4 -1.</_>
-                <_>
-                  11 5 5 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3099901415407658e-003</threshold>
-            <left_val>-0.0779245272278786</left_val>
-            <right_val>0.0518223904073238</right_val></_></_>
-        <_>
-          <!-- tree 256 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 9 6 -1.</_>
-                <_>
-                  7 2 9 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1524796932935715</threshold>
-            <left_val>0.0170198101550341</left_val>
-            <right_val>-0.2801989912986755</right_val></_></_>
-        <_>
-          <!-- tree 257 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 6 4 3 -1.</_>
-                <_>
-                  9 6 2 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0514544583857059</threshold>
-            <left_val>-0.2223165035247803</left_val>
-            <right_val>8.8541666045784950e-003</right_val></_></_>
-        <_>
-          <!-- tree 258 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 3 4 7 -1.</_>
-                <_>
-                  9 3 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0254663806408644</threshold>
-            <left_val>-0.0549487285315990</left_val>
-            <right_val>0.0890722572803497</right_val></_></_>
-        <_>
-          <!-- tree 259 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 1 4 6 -1.</_>
-                <_>
-                  10 3 4 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.2543771862983704</threshold>
-            <left_val>2.0636660046875477e-003</left_val>
-            <right_val>-0.8708871006965637</right_val></_></_>
-        <_>
-          <!-- tree 260 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 4 14 -1.</_>
-                <_>
-                  4 8 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2286273986101151</threshold>
-            <left_val>0.2003466039896011</left_val>
-            <right_val>-0.0253187809139490</right_val></_></_>
-        <_>
-          <!-- tree 261 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 6 16 3 -1.</_>
-                <_>
-                  1 7 16 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0118133397772908</threshold>
-            <left_val>0.1338717043399811</left_val>
-            <right_val>-0.0365035310387611</right_val></_></_>
-        <_>
-          <!-- tree 262 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 6 6 3 -1.</_>
-                <_>
-                  7 7 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0201183203607798</threshold>
-            <left_val>-0.2012384980916977</left_val>
-            <right_val>0.0280736796557903</right_val></_></_>
-        <_>
-          <!-- tree 263 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 8 8 2 -1.</_>
-                <_>
-                  13 8 4 1 2.</_>
-                <_>
-                  9 9 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0217740796506405</threshold>
-            <left_val>-6.5130768343806267e-003</left_val>
-            <right_val>0.2802217006683350</right_val></_></_>
-        <_>
-          <!-- tree 264 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 8 8 2 -1.</_>
-                <_>
-                  1 8 4 1 2.</_>
-                <_>
-                  5 9 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8404871486127377e-003</threshold>
-            <left_val>-0.0298142507672310</left_val>
-            <right_val>0.1597764939069748</right_val></_></_>
-        <_>
-          <!-- tree 265 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 8 4 2 -1.</_>
-                <_>
-                  7 9 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1922290286747739e-004</threshold>
-            <left_val>0.0340446382761002</left_val>
-            <right_val>-0.1605768054723740</right_val></_></_>
-        <_>
-          <!-- tree 266 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 1 4 -1.</_>
-                <_>
-                  0 10 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.2792158462107182e-003</threshold>
-            <left_val>-0.4833438098430634</left_val>
-            <right_val>9.9527724087238312e-003</right_val></_></_>
-        <_>
-          <!-- tree 267 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 8 2 2 -1.</_>
-                <_>
-                  11 8 1 1 2.</_>
-                <_>
-                  10 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5904899302986450e-005</threshold>
-            <left_val>-0.0381436906754971</left_val>
-            <right_val>0.0470281802117825</right_val></_></_>
-        <_>
-          <!-- tree 268 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 4 5 8 -1.</_>
-                <_>
-                  6 6 5 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0909861028194427</threshold>
-            <left_val>0.2697112858295441</left_val>
-            <right_val>-0.0179479792714119</right_val></_></_>
-        <_>
-          <!-- tree 269 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 8 16 6 -1.</_>
-                <_>
-                  1 10 16 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2087876945734024</threshold>
-            <left_val>0.2300664037466049</left_val>
-            <right_val>-0.0216091796755791</right_val></_></_>
-        <_>
-          <!-- tree 270 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 5 3 1 -1.</_>
-                <_>
-                  7 6 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-7.0507721975445747e-003</threshold>
-            <left_val>-0.2504821121692658</left_val>
-            <right_val>0.0200520195066929</right_val></_></_>
-        <_>
-          <!-- tree 271 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 6 2 -1.</_>
-                <_>
-                  6 8 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.9825186878442764e-003</threshold>
-            <left_val>-0.0180237293243408</left_val>
-            <right_val>0.2951684892177582</right_val></_></_>
-        <_>
-          <!-- tree 272 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 6 1 -1.</_>
-                <_>
-                  10 5 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0597062110900879</threshold>
-            <left_val>-0.0128449099138379</left_val>
-            <right_val>0.3559386134147644</right_val></_></_>
-        <_>
-          <!-- tree 273 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 18 2 -1.</_>
-                <_>
-                  9 4 9 1 2.</_>
-                <_>
-                  0 5 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0103647699579597</threshold>
-            <left_val>-0.2009311020374298</left_val>
-            <right_val>0.0278272200375795</right_val></_></_>
-        <_>
-          <!-- tree 274 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 2 5 -1.</_>
-                <_>
-                  1 9 1 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0194542594254017</threshold>
-            <left_val>-0.5303530097007752</left_val>
-            <right_val>9.0706236660480499e-003</right_val></_></_>
-        <_>
-          <!-- tree 275 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 5 1 3 -1.</_>
-                <_>
-                  16 6 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.1027070470154285e-003</threshold>
-            <left_val>0.0885996073484421</left_val>
-            <right_val>-0.0361577197909355</right_val></_></_>
-        <_>
-          <!-- tree 276 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 5 3 1 -1.</_>
-                <_>
-                  2 6 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.5333649292588234e-003</threshold>
-            <left_val>-0.0244578700512648</left_val>
-            <right_val>0.1936513036489487</right_val></_></_>
-        <_>
-          <!-- tree 277 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 6 1 4 -1.</_>
-                <_>
-                  17 7 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1182601600885391e-003</threshold>
-            <left_val>0.0174081493169069</left_val>
-            <right_val>-0.2255457043647766</right_val></_></_>
-        <_>
-          <!-- tree 278 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 1 4 -1.</_>
-                <_>
-                  0 7 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1947720088064671e-003</threshold>
-            <left_val>0.0296904593706131</left_val>
-            <right_val>-0.1958502978086472</right_val></_></_>
-        <_>
-          <!-- tree 279 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 3 4 6 -1.</_>
-                <_>
-                  14 5 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0412029810249805</threshold>
-            <left_val>-0.0132970996201038</left_val>
-            <right_val>0.1000028029084206</right_val></_></_>
-        <_>
-          <!-- tree 280 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 4 6 -1.</_>
-                <_>
-                  0 5 4 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0161616802215576</threshold>
-            <left_val>0.0401702187955379</left_val>
-            <right_val>-0.1321049034595490</right_val></_></_>
-        <_>
-          <!-- tree 281 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 6 6 -1.</_>
-                <_>
-                  9 9 2 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1274060010910034</threshold>
-            <left_val>9.2737795785069466e-003</left_val>
-            <right_val>-0.2394157946109772</right_val></_></_>
-        <_>
-          <!-- tree 282 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 10 2 2 -1.</_>
-                <_>
-                  7 10 1 1 2.</_>
-                <_>
-                  8 11 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6743640191853046e-003</threshold>
-            <left_val>0.2325102984905243</left_val>
-            <right_val>-0.0232730191200972</right_val></_></_>
-        <_>
-          <!-- tree 283 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 9 16 3 -1.</_>
-                <_>
-                  6 9 8 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1170528009533882</threshold>
-            <left_val>-0.2183447033166885</left_val>
-            <right_val>0.0135161597281694</right_val></_></_>
-        <_>
-          <!-- tree 284 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 4 3 2 -1.</_>
-                <_>
-                  4 5 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.6700777970254421e-003</threshold>
-            <left_val>-0.0436670817434788</left_val>
-            <right_val>0.1079972982406616</right_val></_></_>
-        <_>
-          <!-- tree 285 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 5 3 3 -1.</_>
-                <_>
-                  14 6 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0400560796260834</threshold>
-            <left_val>-6.8564810790121555e-003</left_val>
-            <right_val>0.2937721014022827</right_val></_></_>
-        <_>
-          <!-- tree 286 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 5 3 3 -1.</_>
-                <_>
-                  4 6 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.5556342229247093e-003</threshold>
-            <left_val>0.1104653999209404</left_val>
-            <right_val>-0.0465722493827343</right_val></_></_>
-        <_>
-          <!-- tree 287 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 2 3 10 -1.</_>
-                <_>
-                  11 2 1 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0315735116600990</threshold>
-            <left_val>9.8816202953457832e-003</left_val>
-            <right_val>-0.4157396852970123</right_val></_></_>
-        <_>
-          <!-- tree 288 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 4 5 -1.</_>
-                <_>
-                  4 2 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0248094201087952</threshold>
-            <left_val>-0.3319647908210754</left_val>
-            <right_val>0.0140330903232098</right_val></_></_>
-        <_>
-          <!-- tree 289 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 4 2 2 -1.</_>
-                <_>
-                  13 4 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.8404951444827020e-004</threshold>
-            <left_val>-0.0977882891893387</left_val>
-            <right_val>0.0236715003848076</right_val></_></_>
-        <_>
-          <!-- tree 290 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 4 2 2 -1.</_>
-                <_>
-                  5 4 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.0798787958920002e-003</threshold>
-            <left_val>0.0679533332586288</left_val>
-            <right_val>-0.0907793864607811</right_val></_></_>
-        <_>
-          <!-- tree 291 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 1 6 -1.</_>
-                <_>
-                  9 4 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0226807501167059</threshold>
-            <left_val>-0.8081390261650085</left_val>
-            <right_val>3.1646140851080418e-003</right_val></_></_>
-        <_>
-          <!-- tree 292 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 13 3 1 -1.</_>
-                <_>
-                  7 13 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.6572299646213651e-003</threshold>
-            <left_val>0.1429641991853714</left_val>
-            <right_val>-0.0321753397583961</right_val></_></_>
-        <_>
-          <!-- tree 293 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 8 2 6 -1.</_>
-                <_>
-                  10 8 1 3 2.</_>
-                <_>
-                  9 11 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0209627896547318</threshold>
-            <left_val>-0.7540594935417175</left_val>
-            <right_val>3.1872680410742760e-003</right_val></_></_>
-        <_>
-          <!-- tree 294 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 12 4 2 -1.</_>
-                <_>
-                  8 12 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0227429447695613e-003</threshold>
-            <left_val>0.0832900702953339</left_val>
-            <right_val>-0.0552086904644966</right_val></_></_>
-        <_>
-          <!-- tree 295 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 3 7 -1.</_>
-                <_>
-                  10 1 1 7 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.0178760644048452e-003</threshold>
-            <left_val>-0.0410230606794357</left_val>
-            <right_val>0.0196295809000731</right_val></_></_>
-        <_>
-          <!-- tree 296 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 3 6 6 -1.</_>
-                <_>
-                  6 3 3 6 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1914006024599075</threshold>
-            <left_val>0.0175436791032553</left_val>
-            <right_val>-0.2556655108928680</right_val></_></_>
-        <_>
-          <!-- tree 297 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 10 3 2 -1.</_>
-                <_>
-                  15 11 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0189527608454227</threshold>
-            <left_val>0.3286316096782684</left_val>
-            <right_val>-4.8918230459094048e-003</right_val></_></_>
-        <_>
-          <!-- tree 298 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 3 3 -1.</_>
-                <_>
-                  0 9 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.5249331742525101e-003</threshold>
-            <left_val>-0.1561917066574097</left_val>
-            <right_val>0.0295387599617243</right_val></_></_>
-        <_>
-          <!-- tree 299 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 1 3 -1.</_>
-                <_>
-                  8 3 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.9335299991071224e-003</threshold>
-            <left_val>-0.1536104977130890</left_val>
-            <right_val>0.0127125997096300</right_val></_></_>
-        <_>
-          <!-- tree 300 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 6 16 3 -1.</_>
-                <_>
-                  1 7 16 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0189859308302403</threshold>
-            <left_val>-0.0395853891968727</left_val>
-            <right_val>0.1203117966651917</right_val></_></_>
-        <_>
-          <!-- tree 301 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 9 1 2 -1.</_>
-                <_>
-                  9 9 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-1.5369809698313475e-003</threshold>
-            <left_val>0.0511838011443615</left_val>
-            <right_val>-0.0198078006505966</right_val></_></_>
-        <_>
-          <!-- tree 302 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 9 3 3 -1.</_>
-                <_>
-                  8 10 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0313022881746292</threshold>
-            <left_val>7.9048639163374901e-003</left_val>
-            <right_val>-0.5422518253326416</right_val></_></_>
-        <_>
-          <!-- tree 303 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 0 1 3 -1.</_>
-                <_>
-                  17 1 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.9099438153207302e-004</threshold>
-            <left_val>0.0733341798186302</left_val>
-            <right_val>-0.0247610397636890</right_val></_></_>
-        <_>
-          <!-- tree 304 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 1 3 -1.</_>
-                <_>
-                  0 1 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5027391024632379e-005</threshold>
-            <left_val>-0.0677618235349655</left_val>
-            <right_val>0.0672639682888985</right_val></_></_>
-        <_>
-          <!-- tree 305 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 0 1 2 -1.</_>
-                <_>
-                  17 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1923059800174087e-005</threshold>
-            <left_val>-0.0342731587588787</left_val>
-            <right_val>0.0385947003960609</right_val></_></_>
-        <_>
-          <!-- tree 306 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 1 2 -1.</_>
-                <_>
-                  0 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.7095869124168530e-005</threshold>
-            <left_val>0.0838238298892975</left_val>
-            <right_val>-0.0660852268338203</right_val></_></_>
-        <_>
-          <!-- tree 307 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 2 4 6 -1.</_>
-                <_>
-                  13 5 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1215929016470909</threshold>
-            <left_val>-0.7001026272773743</left_val>
-            <right_val>1.8631670391187072e-003</right_val></_></_>
-        <_>
-          <!-- tree 308 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 2 4 6 -1.</_>
-                <_>
-                  1 5 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0174945406615734</threshold>
-            <left_val>0.0259598605334759</left_val>
-            <right_val>-0.1810075044631958</right_val></_></_>
-        <_>
-          <!-- tree 309 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 12 11 -1.</_>
-                <_>
-                  8 0 4 11 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0633600726723671</threshold>
-            <left_val>0.1302110999822617</left_val>
-            <right_val>-8.8773788884282112e-003</right_val></_></_>
-        <_>
-          <!-- tree 310 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 12 14 -1.</_>
-                <_>
-                  6 1 6 14 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.3935186862945557</threshold>
-            <left_val>-0.6352580785751343</left_val>
-            <right_val>8.2348221912980080e-003</right_val></_></_>
-        <_>
-          <!-- tree 311 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 5 8 9 -1.</_>
-                <_>
-                  12 5 4 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0147491302341223</threshold>
-            <left_val>0.0573673695325851</left_val>
-            <right_val>-0.0774541124701500</right_val></_></_>
-        <_>
-          <!-- tree 312 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 12 18 2 -1.</_>
-                <_>
-                  9 12 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.4586831033229828e-003</threshold>
-            <left_val>-0.0738315135240555</left_val>
-            <right_val>0.0729713514447212</right_val></_></_>
-        <_>
-          <!-- tree 313 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 14 2 1 -1.</_>
-                <_>
-                  8 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.0465059505077079e-005</threshold>
-            <left_val>-0.0687413066625595</left_val>
-            <right_val>0.0833826810121536</right_val></_></_>
-        <_>
-          <!-- tree 314 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 13 2 2 -1.</_>
-                <_>
-                  8 13 1 1 2.</_>
-                <_>
-                  9 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.3182349549606442e-005</threshold>
-            <left_val>-0.0648377612233162</left_val>
-            <right_val>0.0794876664876938</right_val></_></_>
-        <_>
-          <!-- tree 315 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 11 4 4 -1.</_>
-                <_>
-                  10 11 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0179907493293285</threshold>
-            <left_val>-0.3418853878974915</left_val>
-            <right_val>8.2358242943882942e-003</right_val></_></_>
-        <_>
-          <!-- tree 316 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 11 4 4 -1.</_>
-                <_>
-                  6 11 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7810800345614552e-003</threshold>
-            <left_val>0.0831420794129372</left_val>
-            <right_val>-0.0662932470440865</right_val></_></_></trees>
-      <stage_threshold>-1.1628010272979736</stage_threshold>
-      <parent>15</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 17 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 12 9 -1.</_>
-                <_>
-                  7 5 4 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.5282195806503296</threshold>
-            <left_val>-0.1120738014578819</left_val>
-            <right_val>0.4649200141429901</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 6 3 -1.</_>
-                <_>
-                  11 8 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.3934608846902847e-003</threshold>
-            <left_val>0.1242000982165337</left_val>
-            <right_val>-0.0984233617782593</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 7 8 4 -1.</_>
-                <_>
-                  4 7 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0125337103381753</threshold>
-            <left_val>0.1294067054986954</left_val>
-            <right_val>-0.2182607054710388</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 2 4 2 -1.</_>
-                <_>
-                  14 2 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6514590717852116e-003</threshold>
-            <left_val>0.1074666976928711</left_val>
-            <right_val>-0.0652235969901085</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 6 2 2 -1.</_>
-                <_>
-                  8 7 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.2469879584386945e-003</threshold>
-            <left_val>0.0948277264833450</left_val>
-            <right_val>-0.1972541064023972</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 5 4 2 -1.</_>
-                <_>
-                  10 6 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0105062201619148</threshold>
-            <left_val>-0.1786229014396668</left_val>
-            <right_val>0.0707185864448547</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 4 2 -1.</_>
-                <_>
-                  2 2 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.4628679491579533e-003</threshold>
-            <left_val>0.0773052126169205</left_val>
-            <right_val>-0.1588167995214462</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 6 3 2 -1.</_>
-                <_>
-                  11 7 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0117471702396870</threshold>
-            <left_val>0.0412793383002281</left_val>
-            <right_val>-0.1657488942146301</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 6 2 3 -1.</_>
-                <_>
-                  7 7 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.1636099554598331e-003</threshold>
-            <left_val>-0.0817365422844887</left_val>
-            <right_val>0.1844726949930191</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 2 2 -1.</_>
-                <_>
-                  11 8 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0156048499047756</threshold>
-            <left_val>0.1840981990098953</left_val>
-            <right_val>9.1587323695421219e-003</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 8 2 2 -1.</_>
-                <_>
-                  7 8 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.7909010685980320e-003</threshold>
-            <left_val>0.1927130073308945</left_val>
-            <right_val>-0.0610056594014168</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 8 2 4 -1.</_>
-                <_>
-                  8 10 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.6382728032767773e-003</threshold>
-            <left_val>0.0721243992447853</left_val>
-            <right_val>-0.1547524929046631</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 3 8 6 -1.</_>
-                <_>
-                  5 6 8 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1059508025646210</threshold>
-            <left_val>0.1698832064867020</left_val>
-            <right_val>-0.0774008184671402</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 2 4 -1.</_>
-                <_>
-                  13 0 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0222781002521515</threshold>
-            <left_val>0.0300818495452404</left_val>
-            <right_val>-0.3189120888710022</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 5 10 4 -1.</_>
-                <_>
-                  4 7 10 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0383511297404766</threshold>
-            <left_val>-0.0293571297079325</left_val>
-            <right_val>0.3784500956535339</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 14 6 1 -1.</_>
-                <_>
-                  12 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0127405496314168</threshold>
-            <left_val>0.0121086901053786</left_val>
-            <right_val>-0.2898040115833283</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 3 6 -1.</_>
-                <_>
-                  5 3 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0119678396731615</threshold>
-            <left_val>-0.2752982974052429</left_val>
-            <right_val>0.0334202796220779</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 6 2 -1.</_>
-                <_>
-                  7 1 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.2382412143051624e-003</threshold>
-            <left_val>0.0232270695269108</left_val>
-            <right_val>-0.2876886129379273</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 18 2 -1.</_>
-                <_>
-                  0 11 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2571290135383606e-003</threshold>
-            <left_val>-0.1228341981768608</left_val>
-            <right_val>0.0775459334254265</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 3 4 12 -1.</_>
-                <_>
-                  14 9 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0977464169263840</threshold>
-            <left_val>0.0120771396905184</left_val>
-            <right_val>-0.3209269940853119</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 3 -1.</_>
-                <_>
-                  3 1 12 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.9180860407650471e-003</threshold>
-            <left_val>-0.2275620996952057</left_val>
-            <right_val>0.0447532683610916</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 7 1 2 -1.</_>
-                <_>
-                  9 7 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.4139030873775482e-003</threshold>
-            <left_val>0.0401469282805920</left_val>
-            <right_val>-0.0504605211317539</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 14 6 1 -1.</_>
-                <_>
-                  4 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.2285759747028351e-003</threshold>
-            <left_val>0.0234754905104637</left_val>
-            <right_val>-0.3772892057895660</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 2 1 -1.</_>
-                <_>
-                  9 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.6009760331362486e-003</threshold>
-            <left_val>0.0580360703170300</left_val>
-            <right_val>-0.0397480018436909</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 1 -1.</_>
-                <_>
-                  6 0 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.5100939460098743e-003</threshold>
-            <left_val>-0.1500709950923920</left_val>
-            <right_val>0.0647656172513962</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 10 15 -1.</_>
-                <_>
-                  8 0 5 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.3092997968196869</threshold>
-            <left_val>-0.3616220951080322</left_val>
-            <right_val>5.2778669632971287e-003</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 10 15 -1.</_>
-                <_>
-                  5 0 5 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1664361059665680</threshold>
-            <left_val>0.0580257400870323</left_val>
-            <right_val>-0.1667063981294632</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 1 14 -1.</_>
-                <_>
-                  15 7 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0292491707950830</threshold>
-            <left_val>-0.1041812002658844</left_val>
-            <right_val>0.0473819412291050</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 9 2 -1.</_>
-                <_>
-                  12 4 3 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0578976906836033</threshold>
-            <left_val>-0.0827134624123573</left_val>
-            <right_val>0.1230174973607063</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 1 14 -1.</_>
-                <_>
-                  15 7 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0439998507499695</threshold>
-            <left_val>3.1090460252016783e-003</left_val>
-            <right_val>-0.3888421058654785</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 5 12 10 -1.</_>
-                <_>
-                  3 5 6 5 2.</_>
-                <_>
-                  9 10 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1334455013275147</threshold>
-            <left_val>-0.2756403982639313</left_val>
-            <right_val>0.0307342596352100</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 16 2 -1.</_>
-                <_>
-                  9 0 8 1 2.</_>
-                <_>
-                  1 1 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.4765329957008362e-003</threshold>
-            <left_val>0.0265623796731234</left_val>
-            <right_val>-0.2864835858345032</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 2 3 -1.</_>
-                <_>
-                  0 7 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.2942858785390854e-003</threshold>
-            <left_val>0.0198616907000542</left_val>
-            <right_val>-0.3646562099456787</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 1 4 3 -1.</_>
-                <_>
-                  13 2 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0118541996926069</threshold>
-            <left_val>-0.0481690689921379</left_val>
-            <right_val>0.1577796936035156</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 10 -1.</_>
-                <_>
-                  0 0 9 5 2.</_>
-                <_>
-                  9 5 9 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1097894981503487</threshold>
-            <left_val>-0.2161000967025757</left_val>
-            <right_val>0.0352399796247482</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 2 2 2 -1.</_>
-                <_>
-                  10 2 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2859810376539826e-003</threshold>
-            <left_val>-0.0768053531646729</left_val>
-            <right_val>0.0990003198385239</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 10 8 -1.</_>
-                <_>
-                  9 0 5 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1088009998202324</threshold>
-            <left_val>-0.0982203707098961</left_val>
-            <right_val>0.1162839010357857</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 4 1 -1.</_>
-                <_>
-                  8 3 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0142060602083802</threshold>
-            <left_val>4.8896879889070988e-003</left_val>
-            <right_val>-0.3838334977626801</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 3 4 1 -1.</_>
-                <_>
-                  8 3 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0132633903995156</threshold>
-            <left_val>0.0221766997128725</left_val>
-            <right_val>-0.3880636096000671</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 12 15 2 -1.</_>
-                <_>
-                  3 13 15 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.9566845670342445e-003</threshold>
-            <left_val>-0.0713148191571236</left_val>
-            <right_val>0.0741146504878998</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 18 8 -1.</_>
-                <_>
-                  0 9 18 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0769576579332352</threshold>
-            <left_val>-0.0361662209033966</left_val>
-            <right_val>0.2575767934322357</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 4 3 6 -1.</_>
-                <_>
-                  11 6 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0100203501060605</threshold>
-            <left_val>-0.0785313323140144</left_val>
-            <right_val>0.0633838027715683</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 2 3 -1.</_>
-                <_>
-                  2 4 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.2017520219087601e-003</threshold>
-            <left_val>0.0293919891119003</left_val>
-            <right_val>-0.2573288083076477</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 3 3 3 -1.</_>
-                <_>
-                  14 4 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0307231806218624</threshold>
-            <left_val>-0.0187381394207478</left_val>
-            <right_val>0.2283234000205994</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 3 3 -1.</_>
-                <_>
-                  4 4 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0110199600458145</threshold>
-            <left_val>-0.0532967299222946</left_val>
-            <right_val>0.1749452054500580</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 2 3 3 -1.</_>
-                <_>
-                  14 3 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0274540707468987</threshold>
-            <left_val>0.1702467948198319</left_val>
-            <right_val>-8.2028387114405632e-003</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 3 3 -1.</_>
-                <_>
-                  4 3 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0136898197233677</threshold>
-            <left_val>0.2001978009939194</left_val>
-            <right_val>-0.0419919602572918</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 3 2 -1.</_>
-                <_>
-                  10 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-8.1678535789251328e-003</threshold>
-            <left_val>-0.2626230120658875</left_val>
-            <right_val>0.0103546399623156</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 3 4 -1.</_>
-                <_>
-                  5 1 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0100999800488353</threshold>
-            <left_val>-0.0449482612311840</left_val>
-            <right_val>0.1852373033761978</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 5 12 10 -1.</_>
-                <_>
-                  3 5 6 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2002492994070053</threshold>
-            <left_val>-0.0368244796991348</left_val>
-            <right_val>0.2407283037900925</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 1 4 -1.</_>
-                <_>
-                  9 1 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.7789789494127035e-003</threshold>
-            <left_val>-0.1391090005636215</left_val>
-            <right_val>0.0761268436908722</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 6 5 -1.</_>
-                <_>
-                  8 0 2 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0111010000109673</threshold>
-            <left_val>0.2399149984121323</left_val>
-            <right_val>-0.0364109985530376</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 18 6 -1.</_>
-                <_>
-                  0 1 9 3 2.</_>
-                <_>
-                  9 4 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0620720200240612</threshold>
-            <left_val>0.0276025105267763</left_val>
-            <right_val>-0.2976244091987610</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 7 1 2 -1.</_>
-                <_>
-                  10 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.9415021203458309e-004</threshold>
-            <left_val>0.0430329516530037</left_val>
-            <right_val>-0.1610901951789856</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 6 2 -1.</_>
-                <_>
-                  6 7 3 1 2.</_>
-                <_>
-                  9 8 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.5258450079709291e-003</threshold>
-            <left_val>-0.1741313040256500</left_val>
-            <right_val>0.0575136989355087</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 6 1 6 -1.</_>
-                <_>
-                  12 8 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.6127668358385563e-003</threshold>
-            <left_val>-0.0242344699800015</left_val>
-            <right_val>0.0987889915704727</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 9 4 2 -1.</_>
-                <_>
-                  5 9 2 1 2.</_>
-                <_>
-                  7 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.7660789676010609e-003</threshold>
-            <left_val>-0.0366232991218567</left_val>
-            <right_val>0.2009083032608032</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 3 2 -1.</_>
-                <_>
-                  10 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0154594099149108</threshold>
-            <left_val>7.6649021357297897e-003</left_val>
-            <right_val>-0.2016355991363525</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 2 3 -1.</_>
-                <_>
-                  8 1 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0103579899296165</threshold>
-            <left_val>-0.4239524006843567</left_val>
-            <right_val>0.0170050095766783</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 2 -1.</_>
-                <_>
-                  15 1 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0131801199167967</threshold>
-            <left_val>-0.2812205851078033</left_val>
-            <right_val>0.0253022592514753</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 9 6 -1.</_>
-                <_>
-                  8 0 9 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.3639352023601532</threshold>
-            <left_val>0.0106940995901823</left_val>
-            <right_val>-0.6518303751945496</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 9 8 2 -1.</_>
-                <_>
-                  10 9 4 1 2.</_>
-                <_>
-                  6 10 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0457970909774303</threshold>
-            <left_val>-1.0829409584403038e-003</left_val>
-            <right_val>-0.6091793775558472</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 9 8 2 -1.</_>
-                <_>
-                  4 9 4 1 2.</_>
-                <_>
-                  8 10 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0168178994208574</threshold>
-            <left_val>0.2406727969646454</left_val>
-            <right_val>-0.0288416408002377</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 1 14 -1.</_>
-                <_>
-                  15 7 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0699327737092972</threshold>
-            <left_val>-0.2456905990839005</left_val>
-            <right_val>1.4374910097103566e-004</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 1 14 -1.</_>
-                <_>
-                  2 7 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0370729491114616</threshold>
-            <left_val>0.0120472796261311</left_val>
-            <right_val>-0.6182494759559631</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 9 1 3 -1.</_>
-                <_>
-                  17 10 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2509139962494373e-003</threshold>
-            <left_val>-0.1386857032775879</left_val>
-            <right_val>0.0234417803585529</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 6 2 -1.</_>
-                <_>
-                  6 8 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0411305986344814</threshold>
-            <left_val>-0.4958019852638245</left_val>
-            <right_val>0.0126163000240922</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 10 1 4 -1.</_>
-                <_>
-                  17 11 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3879110813140869e-005</threshold>
-            <left_val>-0.0702746585011482</left_val>
-            <right_val>0.0652459263801575</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 1 3 -1.</_>
-                <_>
-                  2 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.2828738912940025e-003</threshold>
-            <left_val>-0.2180141061544418</left_val>
-            <right_val>0.0284525100141764</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 2 4 8 -1.</_>
-                <_>
-                  14 6 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0589578114449978</threshold>
-            <left_val>-0.1131016984581947</left_val>
-            <right_val>0.0356478206813335</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 9 16 2 -1.</_>
-                <_>
-                  1 10 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2863670639926568e-005</threshold>
-            <left_val>-0.0697758123278618</left_val>
-            <right_val>0.0949401631951332</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 7 8 6 -1.</_>
-                <_>
-                  5 10 8 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0730367004871368</threshold>
-            <left_val>0.1069146022200584</left_val>
-            <right_val>-0.0896811932325363</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 16 8 -1.</_>
-                <_>
-                  0 2 8 4 2.</_>
-                <_>
-                  8 6 8 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1058195978403091</threshold>
-            <left_val>0.1823062002658844</left_val>
-            <right_val>-0.0388196706771851</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 10 4 4 -1.</_>
-                <_>
-                  16 10 2 2 2.</_>
-                <_>
-                  14 12 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.6694820048287511e-004</threshold>
-            <left_val>-0.1007533967494965</left_val>
-            <right_val>0.0651198998093605</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 1 3 -1.</_>
-                <_>
-                  0 10 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5920490734279156e-003</threshold>
-            <left_val>-0.2544820904731751</left_val>
-            <right_val>0.0231018606573343</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 1 -1.</_>
-                <_>
-                  16 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0104395002126694</threshold>
-            <left_val>4.0941308252513409e-003</left_val>
-            <right_val>-0.5827335715293884</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 1 2 -1.</_>
-                <_>
-                  2 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.3739310563541949e-005</threshold>
-            <left_val>0.0606367290019989</left_val>
-            <right_val>-0.1001473963260651</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 1 4 -1.</_>
-                <_>
-                  16 1 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2808990906924009e-003</threshold>
-            <left_val>0.1851990967988968</left_val>
-            <right_val>-0.0254341196268797</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 1 4 -1.</_>
-                <_>
-                  0 11 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.0937379449605942e-003</threshold>
-            <left_val>-0.1919911056756973</left_val>
-            <right_val>0.0333683788776398</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 6 -1.</_>
-                <_>
-                  0 11 18 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2182179987430573</threshold>
-            <left_val>0.3065988123416901</left_val>
-            <right_val>-0.0218403805047274</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 8 2 -1.</_>
-                <_>
-                  3 0 8 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0115180201828480</threshold>
-            <left_val>-0.1070621013641357</left_val>
-            <right_val>0.0582328587770462</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 9 10 6 -1.</_>
-                <_>
-                  13 9 5 3 2.</_>
-                <_>
-                  8 12 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0315043888986111</threshold>
-            <left_val>0.1176773980259895</left_val>
-            <right_val>-0.0459064915776253</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 12 12 1 -1.</_>
-                <_>
-                  5 12 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0294614192098379</threshold>
-            <left_val>-0.2296009957790375</left_val>
-            <right_val>0.0288945809006691</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 2 8 -1.</_>
-                <_>
-                  11 2 2 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-7.9243192449212074e-003</threshold>
-            <left_val>0.1419624984264374</left_val>
-            <right_val>-0.0125654498115182</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 8 4 2 -1.</_>
-                <_>
-                  1 8 2 1 2.</_>
-                <_>
-                  3 9 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.1360300965607166e-003</threshold>
-            <left_val>-0.0285923406481743</left_val>
-            <right_val>0.2037373036146164</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 4 2 6 -1.</_>
-                <_>
-                  12 6 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0104305995628238</threshold>
-            <left_val>-0.0423329882323742</left_val>
-            <right_val>0.0525090992450714</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 10 8 -1.</_>
-                <_>
-                  9 0 5 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2438413947820664</threshold>
-            <left_val>0.3361566960811615</left_val>
-            <right_val>-0.0189900696277618</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 2 1 -1.</_>
-                <_>
-                  9 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.5686741620302200e-003</threshold>
-            <left_val>6.4027151092886925e-003</left_val>
-            <right_val>-0.3058831095695496</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 1 2 -1.</_>
-                <_>
-                  9 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>1.2688450515270233e-003</threshold>
-            <left_val>-0.0901417508721352</left_val>
-            <right_val>0.0729410126805305</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 11 3 4 -1.</_>
-                <_>
-                  13 12 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0308157093822956</threshold>
-            <left_val>2.9594700317829847e-003</left_val>
-            <right_val>-0.2435165941715241</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 11 3 4 -1.</_>
-                <_>
-                  2 12 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1978209260851145e-003</threshold>
-            <left_val>-0.0633767321705818</left_val>
-            <right_val>0.1006520017981529</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 13 7 2 -1.</_>
-                <_>
-                  8 14 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.1282119713723660e-003</threshold>
-            <left_val>-0.0383862592279911</left_val>
-            <right_val>0.0665621683001518</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 1 3 -1.</_>
-                <_>
-                  2 2 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.8037100564688444e-003</threshold>
-            <left_val>0.0357193090021610</left_val>
-            <right_val>-0.1542093008756638</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 3 -1.</_>
-                <_>
-                  15 1 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.9568650536239147e-003</threshold>
-            <left_val>0.0709167122840881</left_val>
-            <right_val>-0.0399580597877502</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 3 2 -1.</_>
-                <_>
-                  3 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0139292301610112</threshold>
-            <left_val>-0.0233923103660345</left_val>
-            <right_val>0.2814770042896271</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 4 3 -1.</_>
-                <_>
-                  14 0 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0101550603285432</threshold>
-            <left_val>-0.1404235959053040</left_val>
-            <right_val>0.0185156203806400</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 4 3 -1.</_>
-                <_>
-                  2 0 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0146013703197241</threshold>
-            <left_val>0.0123592196032405</left_val>
-            <right_val>-0.5497545003890991</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 1 4 -1.</_>
-                <_>
-                  16 1 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.3091858717380092e-005</threshold>
-            <left_val>-0.0439675599336624</left_val>
-            <right_val>0.0347095616161823</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 1 4 -1.</_>
-                <_>
-                  1 1 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1016378886997700e-003</threshold>
-            <left_val>0.2275288999080658</left_val>
-            <right_val>-0.0287020802497864</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 1 -1.</_>
-                <_>
-                  15 1 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.4648198895156384e-003</threshold>
-            <left_val>0.0181927904486656</left_val>
-            <right_val>-0.2227513045072556</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 1 4 -1.</_>
-                <_>
-                  3 1 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.6089660823345184e-003</threshold>
-            <left_val>-0.1483312994241715</left_val>
-            <right_val>0.0421623699367046</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 18 6 -1.</_>
-                <_>
-                  0 6 18 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0491728708148003</threshold>
-            <left_val>0.1821604967117310</left_val>
-            <right_val>-0.0349443815648556</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 8 4 2 -1.</_>
-                <_>
-                  7 9 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7964000580832362e-003</threshold>
-            <left_val>0.0488241016864777</left_val>
-            <right_val>-0.1821431964635849</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 8 16 2 -1.</_>
-                <_>
-                  1 9 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.3850047774612904e-003</threshold>
-            <left_val>-0.0418660007417202</left_val>
-            <right_val>0.1861997991800308</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 4 8 2 -1.</_>
-                <_>
-                  3 4 8 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0205026101320982</threshold>
-            <left_val>-0.0581343583762646</left_val>
-            <right_val>0.1378950029611588</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 9 11 -1.</_>
-                <_>
-                  9 0 3 11 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1163681969046593</threshold>
-            <left_val>-0.0551596693694592</left_val>
-            <right_val>0.0670195221900940</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 1 -1.</_>
-                <_>
-                  9 0 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.8732312172651291e-003</threshold>
-            <left_val>0.2340030074119568</left_val>
-            <right_val>-0.0273893792182207</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 12 11 -1.</_>
-                <_>
-                  7 0 6 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2888160049915314</threshold>
-            <left_val>0.0193629097193480</left_val>
-            <right_val>-0.1619012057781220</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 12 11 -1.</_>
-                <_>
-                  5 0 6 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1196641996502876</threshold>
-            <left_val>0.2455915063619614</left_val>
-            <right_val>-0.0259939599782228</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 2 6 4 -1.</_>
-                <_>
-                  11 2 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.8372459821403027e-003</threshold>
-            <left_val>-0.1389679014682770</left_val>
-            <right_val>0.0567790493369102</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 1 2 2 -1.</_>
-                <_>
-                  5 2 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1065569706261158e-003</threshold>
-            <left_val>-0.1620949953794479</left_val>
-            <right_val>0.0360417217016220</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 3 2 6 -1.</_>
-                <_>
-                  8 5 2 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0863595679402351</threshold>
-            <left_val>-0.0102093601599336</left_val>
-            <right_val>0.2500715851783752</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 8 4 -1.</_>
-                <_>
-                  4 3 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0359533615410328</threshold>
-            <left_val>-0.7569807171821594</left_val>
-            <right_val>8.1533808261156082e-003</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 1 2 8 -1.</_>
-                <_>
-                  9 3 2 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0827576965093613</threshold>
-            <left_val>-0.0119722299277782</left_val>
-            <right_val>0.1315149962902069</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 18 14 -1.</_>
-                <_>
-                  0 1 9 7 2.</_>
-                <_>
-                  9 8 9 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1455516070127487</threshold>
-            <left_val>0.0256695207208395</left_val>
-            <right_val>-0.2337771952152252</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 5 5 10 -1.</_>
-                <_>
-                  13 10 5 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0666986927390099</threshold>
-            <left_val>0.0182299092411995</left_val>
-            <right_val>-0.1238626986742020</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 6 2 -1.</_>
-                <_>
-                  11 5 2 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0987812727689743</threshold>
-            <left_val>-0.0197382606565952</left_val>
-            <right_val>0.3210687935352325</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 7 8 -1.</_>
-                <_>
-                  7 2 7 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.2824327945709229</threshold>
-            <left_val>-0.5469413995742798</left_val>
-            <right_val>2.3887760471552610e-003</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 8 7 -1.</_>
-                <_>
-                  11 2 4 7 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.2101342976093292</threshold>
-            <left_val>0.0181991197168827</left_val>
-            <right_val>-0.3624803125858307</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 2 4 3 -1.</_>
-                <_>
-                  12 3 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.5322709269821644e-004</threshold>
-            <left_val>0.0552163012325764</left_val>
-            <right_val>-0.0308924391865730</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 2 3 4 -1.</_>
-                <_>
-                  6 3 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0345937386155128</threshold>
-            <left_val>0.3355734944343567</left_val>
-            <right_val>-0.0155041199177504</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 3 3 -1.</_>
-                <_>
-                  10 1 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2095651626586914e-003</threshold>
-            <left_val>-0.2595745027065277</left_val>
-            <right_val>0.0123718800023198</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 3 13 6 -1.</_>
-                <_>
-                  2 5 13 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0672681182622910</threshold>
-            <left_val>-0.0627519264817238</left_val>
-            <right_val>0.0915589928627014</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 5 2 3 -1.</_>
-                <_>
-                  8 6 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.0582818910479546e-003</threshold>
-            <left_val>0.0410736314952374</left_val>
-            <right_val>-0.1567548066377640</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 4 6 -1.</_>
-                <_>
-                  0 6 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0444693900644779</threshold>
-            <left_val>-0.1934425979852676</left_val>
-            <right_val>0.0311934594064951</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 9 16 2 -1.</_>
-                <_>
-                  1 10 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.8536471072584391e-003</threshold>
-            <left_val>-0.0742046609520912</left_val>
-            <right_val>0.0826525837182999</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 5 6 4 -1.</_>
-                <_>
-                  5 5 6 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1215196028351784</threshold>
-            <left_val>-0.0172205492854118</left_val>
-            <right_val>0.3772569000720978</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 2 8 -1.</_>
-                <_>
-                  13 4 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0527439787983894</threshold>
-            <left_val>7.3638479225337505e-003</left_val>
-            <right_val>-0.3958064913749695</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 2 8 -1.</_>
-                <_>
-                  3 4 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0133668296039104</threshold>
-            <left_val>0.0302810091525316</left_val>
-            <right_val>-0.1715900003910065</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 1 2 3 -1.</_>
-                <_>
-                  15 2 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.8486632555723190e-003</threshold>
-            <left_val>-0.0223950203508139</left_val>
-            <right_val>0.1505244970321655</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 3 3 1 -1.</_>
-                <_>
-                  2 4 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.8255099207162857e-003</threshold>
-            <left_val>0.1378811001777649</left_val>
-            <right_val>-0.0390050299465656</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 4 5 10 -1.</_>
-                <_>
-                  13 9 5 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1473706960678101</threshold>
-            <left_val>0.0984983816742897</left_val>
-            <right_val>-0.0175660997629166</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 5 10 -1.</_>
-                <_>
-                  0 9 5 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0714110434055328</threshold>
-            <left_val>0.0232200995087624</left_val>
-            <right_val>-0.2675958871841431</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 5 2 3 -1.</_>
-                <_>
-                  15 6 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0166891291737556</threshold>
-            <left_val>-0.0217618402093649</left_val>
-            <right_val>0.1461742073297501</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 5 3 2 -1.</_>
-                <_>
-                  3 6 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.2251640222966671e-003</threshold>
-            <left_val>0.1193147972226143</left_val>
-            <right_val>-0.0540297999978065</right_val></_></_>
-        <_>
-          <!-- tree 135 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 10 8 4 -1.</_>
-                <_>
-                  14 10 4 2 2.</_>
-                <_>
-                  10 12 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.9702045768499374e-003</threshold>
-            <left_val>-0.0543896183371544</left_val>
-            <right_val>0.0729502886533737</right_val></_></_>
-        <_>
-          <!-- tree 136 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 5 4 9 -1.</_>
-                <_>
-                  3 5 2 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0116266896948218</threshold>
-            <left_val>0.0324149206280708</left_val>
-            <right_val>-0.1705735027790070</right_val></_></_>
-        <_>
-          <!-- tree 137 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 1 8 9 -1.</_>
-                <_>
-                  10 1 4 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0332335010170937</threshold>
-            <left_val>-0.1532150954008102</left_val>
-            <right_val>0.0276584308594465</right_val></_></_>
-        <_>
-          <!-- tree 138 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 8 9 -1.</_>
-                <_>
-                  4 1 4 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0162025205790997</threshold>
-            <left_val>-0.0798396766185761</left_val>
-            <right_val>0.0804151371121407</right_val></_></_>
-        <_>
-          <!-- tree 139 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 10 8 4 -1.</_>
-                <_>
-                  14 10 4 2 2.</_>
-                <_>
-                  10 12 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0169930998235941</threshold>
-            <left_val>0.1070884987711906</left_val>
-            <right_val>-0.0270955804735422</right_val></_></_>
-        <_>
-          <!-- tree 140 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 8 4 -1.</_>
-                <_>
-                  0 9 4 2 2.</_>
-                <_>
-                  4 11 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.2699539810419083e-003</threshold>
-            <left_val>-0.0776714086532593</left_val>
-            <right_val>0.0904784426093102</right_val></_></_>
-        <_>
-          <!-- tree 141 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 14 2 -1.</_>
-                <_>
-                  10 0 7 1 2.</_>
-                <_>
-                  3 1 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0112306997179985</threshold>
-            <left_val>-0.3688867092132568</left_val>
-            <right_val>0.0147642102092505</right_val></_></_>
-        <_>
-          <!-- tree 142 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 13 18 2 -1.</_>
-                <_>
-                  0 13 9 1 2.</_>
-                <_>
-                  9 14 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0216833408921957</threshold>
-            <left_val>0.0211919397115707</left_val>
-            <right_val>-0.2431215047836304</right_val></_></_>
-        <_>
-          <!-- tree 143 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 13 1 2 -1.</_>
-                <_>
-                  11 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.7136749122291803e-003</threshold>
-            <left_val>0.1293199062347412</left_val>
-            <right_val>-0.0180541593581438</right_val></_></_>
-        <_>
-          <!-- tree 144 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 13 8 2 -1.</_>
-                <_>
-                  3 14 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.8232649676501751e-003</threshold>
-            <left_val>-0.0677571818232536</left_val>
-            <right_val>0.0790435373783112</right_val></_></_>
-        <_>
-          <!-- tree 145 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 13 10 2 -1.</_>
-                <_>
-                  9 13 5 1 2.</_>
-                <_>
-                  4 14 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0129264900460839</threshold>
-            <left_val>0.0228535197675228</left_val>
-            <right_val>-0.2579326927661896</right_val></_></_>
-        <_>
-          <!-- tree 146 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 13 1 2 -1.</_>
-                <_>
-                  6 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6950810570269823e-003</threshold>
-            <left_val>0.2166609019041061</left_val>
-            <right_val>-0.0270976908504963</right_val></_></_>
-        <_>
-          <!-- tree 147 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 9 -1.</_>
-                <_>
-                  14 0 2 9 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.2159149050712585</threshold>
-            <left_val>4.6611670404672623e-003</left_val>
-            <right_val>-0.8688737154006958</right_val></_></_>
-        <_>
-          <!-- tree 148 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 9 4 -1.</_>
-                <_>
-                  4 0 9 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1681632995605469</threshold>
-            <left_val>0.0141299199312925</left_val>
-            <right_val>-0.3501074910163879</right_val></_></_>
-        <_>
-          <!-- tree 149 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 5 6 3 -1.</_>
-                <_>
-                  8 6 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0491994395852089</threshold>
-            <left_val>-0.7729945778846741</left_val>
-            <right_val>6.0964501462876797e-003</right_val></_></_>
-        <_>
-          <!-- tree 150 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 9 3 2 -1.</_>
-                <_>
-                  3 10 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0261047407984734</threshold>
-            <left_val>6.1850231140851974e-003</left_val>
-            <right_val>-0.6686937212944031</right_val></_></_>
-        <_>
-          <!-- tree 151 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 7 2 -1.</_>
-                <_>
-                  6 1 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0145413503050804</threshold>
-            <left_val>5.0752838142216206e-003</left_val>
-            <right_val>-0.7429249882698059</right_val></_></_>
-        <_>
-          <!-- tree 152 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 7 1 2 -1.</_>
-                <_>
-                  4 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1107119498774409e-003</threshold>
-            <left_val>-0.0341122597455978</left_val>
-            <right_val>0.1507174968719482</right_val></_></_>
-        <_>
-          <!-- tree 153 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 4 3 -1.</_>
-                <_>
-                  10 5 2 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0107706598937511</threshold>
-            <left_val>-0.0934311375021935</left_val>
-            <right_val>0.0101868798956275</right_val></_></_>
-        <_>
-          <!-- tree 154 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 15 6 -1.</_>
-                <_>
-                  5 0 5 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0942776203155518</threshold>
-            <left_val>-0.0600805804133415</left_val>
-            <right_val>0.0837868973612785</right_val></_></_>
-        <_>
-          <!-- tree 155 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 9 14 -1.</_>
-                <_>
-                  10 0 3 14 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1235508024692535</threshold>
-            <left_val>-0.0419926010072231</left_val>
-            <right_val>0.0931324735283852</right_val></_></_>
-        <_>
-          <!-- tree 156 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 15 -1.</_>
-                <_>
-                  6 0 6 15 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.8364567756652832</threshold>
-            <left_val>0.0113448603078723</left_val>
-            <right_val>-0.5479543209075928</right_val></_></_>
-        <_>
-          <!-- tree 157 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 4 3 -1.</_>
-                <_>
-                  10 5 2 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0352501794695854</threshold>
-            <left_val>-0.0108188204467297</left_val>
-            <right_val>0.0904011875391006</right_val></_></_>
-        <_>
-          <!-- tree 158 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 4 2 2 -1.</_>
-                <_>
-                  7 4 1 1 2.</_>
-                <_>
-                  8 5 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1221748435636982e-005</threshold>
-            <left_val>0.0795160531997681</left_val>
-            <right_val>-0.0667194202542305</right_val></_></_>
-        <_>
-          <!-- tree 159 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 2 2 -1.</_>
-                <_>
-                  10 4 1 1 2.</_>
-                <_>
-                  9 5 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.7162756749894470e-005</threshold>
-            <left_val>-0.0442888401448727</left_val>
-            <right_val>0.0536684095859528</right_val></_></_>
-        <_>
-          <!-- tree 160 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 11 8 4 -1.</_>
-                <_>
-                  0 11 4 2 2.</_>
-                <_>
-                  4 13 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.6395221725106239e-003</threshold>
-            <left_val>-0.0847273468971252</left_val>
-            <right_val>0.0621006116271019</right_val></_></_>
-        <_>
-          <!-- tree 161 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 12 2 3 -1.</_>
-                <_>
-                  16 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.3368109939619899e-003</threshold>
-            <left_val>-0.0803513526916504</left_val>
-            <right_val>0.0279868002980947</right_val></_></_>
-        <_>
-          <!-- tree 162 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 8 4 -1.</_>
-                <_>
-                  0 10 4 2 2.</_>
-                <_>
-                  4 12 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0337816514074802</threshold>
-            <left_val>0.3246152102947235</left_val>
-            <right_val>-0.0163126401603222</right_val></_></_>
-        <_>
-          <!-- tree 163 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 2 2 -1.</_>
-                <_>
-                  12 1 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7830280121415854e-003</threshold>
-            <left_val>-0.1649041026830673</left_val>
-            <right_val>0.0217570792883635</right_val></_></_>
-        <_>
-          <!-- tree 164 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 2 2 -1.</_>
-                <_>
-                  4 1 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0984211005270481e-003</threshold>
-            <left_val>0.0295347701758146</left_val>
-            <right_val>-0.1795125007629395</right_val></_></_>
-        <_>
-          <!-- tree 165 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 2 2 -1.</_>
-                <_>
-                  10 0 1 1 2.</_>
-                <_>
-                  9 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3364270570455119e-005</threshold>
-            <left_val>0.0443317405879498</left_val>
-            <right_val>-0.0367653109133244</right_val></_></_>
-        <_>
-          <!-- tree 166 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 11 11 4 -1.</_>
-                <_>
-                  0 13 11 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1226925998926163</threshold>
-            <left_val>0.0124071799218655</left_val>
-            <right_val>-0.4055337905883789</right_val></_></_>
-        <_>
-          <!-- tree 167 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 4 3 -1.</_>
-                <_>
-                  10 5 2 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0949875265359879</threshold>
-            <left_val>-3.5644270246848464e-004</left_val>
-            <right_val>-0.9999405145645142</right_val></_></_>
-        <_>
-          <!-- tree 168 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 3 4 -1.</_>
-                <_>
-                  8 5 3 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0637726783752441</threshold>
-            <left_val>0.7416344881057739</left_val>
-            <right_val>-6.8990588188171387e-003</right_val></_></_>
-        <_>
-          <!-- tree 169 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 4 3 -1.</_>
-                <_>
-                  10 4 2 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0555911287665367</threshold>
-            <left_val>-3.5102190449833870e-003</left_val>
-            <right_val>0.2164891064167023</right_val></_></_>
-        <_>
-          <!-- tree 170 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 4 6 4 -1.</_>
-                <_>
-                  6 4 3 2 2.</_>
-                <_>
-                  9 6 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0157034005969763</threshold>
-            <left_val>-0.2336577028036118</left_val>
-            <right_val>0.0235169809311628</right_val></_></_>
-        <_>
-          <!-- tree 171 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 3 9 -1.</_>
-                <_>
-                  10 4 1 9 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1162799000740051</threshold>
-            <left_val>-1.</left_val>
-            <right_val>5.0003651995211840e-004</right_val></_></_>
-        <_>
-          <!-- tree 172 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 9 3 -1.</_>
-                <_>
-                  8 4 9 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0639397129416466</threshold>
-            <left_val>8.5324635729193687e-003</left_val>
-            <right_val>-0.5650091767311096</right_val></_></_>
-        <_>
-          <!-- tree 173 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 12 2 3 -1.</_>
-                <_>
-                  16 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.8591650296002626e-003</threshold>
-            <left_val>-0.0215167496353388</left_val>
-            <right_val>0.0431870110332966</right_val></_></_>
-        <_>
-          <!-- tree 174 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 10 2 -1.</_>
-                <_>
-                  3 0 5 1 2.</_>
-                <_>
-                  8 1 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3360128980129957e-003</threshold>
-            <left_val>0.0451245903968811</left_val>
-            <right_val>-0.1088766977190971</right_val></_></_>
-        <_>
-          <!-- tree 175 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 1 3 13 -1.</_>
-                <_>
-                  14 1 1 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0587388910353184</threshold>
-            <left_val>-0.5649691224098206</left_val>
-            <right_val>5.2059069275856018e-003</right_val></_></_>
-        <_>
-          <!-- tree 176 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 1 2 -1.</_>
-                <_>
-                  1 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.7132750730961561e-003</threshold>
-            <left_val>-0.0134631600230932</left_val>
-            <right_val>0.3763531148433685</right_val></_></_>
-        <_>
-          <!-- tree 177 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 1 -1.</_>
-                <_>
-                  16 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.0255730487406254e-003</threshold>
-            <left_val>0.0314449593424797</left_val>
-            <right_val>-0.1232260987162590</right_val></_></_>
-        <_>
-          <!-- tree 178 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 1 2 -1.</_>
-                <_>
-                  3 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3382161897607148e-005</threshold>
-            <left_val>0.0770330131053925</left_val>
-            <right_val>-0.0667390972375870</right_val></_></_>
-        <_>
-          <!-- tree 179 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 6 4 8 -1.</_>
-                <_>
-                  14 10 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1296906024217606</threshold>
-            <left_val>3.6417250521481037e-003</left_val>
-            <right_val>-0.4113129973411560</right_val></_></_>
-        <_>
-          <!-- tree 180 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 4 8 -1.</_>
-                <_>
-                  0 10 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1191373988986015</threshold>
-            <left_val>-0.6026347875595093</left_val>
-            <right_val>7.9903472214937210e-003</right_val></_></_>
-        <_>
-          <!-- tree 181 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 1 -1.</_>
-                <_>
-                  16 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0128018800169230</threshold>
-            <left_val>-0.5977100133895874</left_val>
-            <right_val>1.0519300121814013e-003</right_val></_></_>
-        <_>
-          <!-- tree 182 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 6 13 -1.</_>
-                <_>
-                  2 0 2 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1910737007856369</threshold>
-            <left_val>-0.8129808902740479</left_val>
-            <right_val>5.7100728154182434e-003</right_val></_></_>
-        <_>
-          <!-- tree 183 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 14 12 1 -1.</_>
-                <_>
-                  9 14 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0228933207690716</threshold>
-            <left_val>0.0194525197148323</left_val>
-            <right_val>-0.1632170975208283</right_val></_></_>
-        <_>
-          <!-- tree 184 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 2 9 2 -1.</_>
-                <_>
-                  10 5 3 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1703315973281860</threshold>
-            <left_val>-0.0198107101023197</left_val>
-            <right_val>0.2434374988079071</right_val></_></_>
-        <_>
-          <!-- tree 185 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 1 6 12 -1.</_>
-                <_>
-                  6 5 6 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3816856145858765</threshold>
-            <left_val>7.4787861667573452e-003</left_val>
-            <right_val>-0.8387240767478943</right_val></_></_>
-        <_>
-          <!-- tree 186 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 5 2 4 -1.</_>
-                <_>
-                  9 5 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.2416237778961658e-003</threshold>
-            <left_val>-0.1422827988862991</left_val>
-            <right_val>0.0332785397768021</right_val></_></_>
-        <_>
-          <!-- tree 187 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 5 4 4 -1.</_>
-                <_>
-                  11 5 4 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0845880135893822</threshold>
-            <left_val>0.0167654994875193</left_val>
-            <right_val>-0.0928579717874527</right_val></_></_>
-        <_>
-          <!-- tree 188 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 12 1 -1.</_>
-                <_>
-                  4 0 6 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0225149597972631</threshold>
-            <left_val>0.0879255905747414</left_val>
-            <right_val>-0.0715503692626953</right_val></_></_>
-        <_>
-          <!-- tree 189 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 2 5 10 -1.</_>
-                <_>
-                  10 7 5 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1966812014579773</threshold>
-            <left_val>0.0833218693733215</left_val>
-            <right_val>-0.0203528292477131</right_val></_></_>
-        <_>
-          <!-- tree 190 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 5 10 -1.</_>
-                <_>
-                  3 7 5 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2161691039800644</threshold>
-            <left_val>0.2964927852153778</left_val>
-            <right_val>-0.0161115303635597</right_val></_></_>
-        <_>
-          <!-- tree 191 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 2 14 6 -1.</_>
-                <_>
-                  2 4 14 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.8920090347528458e-003</threshold>
-            <left_val>0.1377834975719452</left_val>
-            <right_val>-0.0358431711792946</right_val></_></_>
-        <_>
-          <!-- tree 192 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 5 3 -1.</_>
-                <_>
-                  4 5 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0120847998186946</threshold>
-            <left_val>-0.4384394884109497</left_val>
-            <right_val>0.0123654901981354</right_val></_></_>
-        <_>
-          <!-- tree 193 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 15 3 -1.</_>
-                <_>
-                  7 2 5 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2580629885196686</threshold>
-            <left_val>-5.2921390160918236e-003</left_val>
-            <right_val>0.3777414858341217</right_val></_></_>
-        <_>
-          <!-- tree 194 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 2 2 3 -1.</_>
-                <_>
-                  6 2 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0148832304403186</threshold>
-            <left_val>9.0738674625754356e-003</left_val>
-            <right_val>-0.5520840287208557</right_val></_></_>
-        <_>
-          <!-- tree 195 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 12 9 -1.</_>
-                <_>
-                  8 5 4 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.6691424250602722</threshold>
-            <left_val>-0.0149384997785091</left_val>
-            <right_val>0.1785112023353577</right_val></_></_>
-        <_>
-          <!-- tree 196 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 1 2 -1.</_>
-                <_>
-                  2 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.9930079840123653e-003</threshold>
-            <left_val>-0.2314859032630920</left_val>
-            <right_val>0.0234815701842308</right_val></_></_>
-        <_>
-          <!-- tree 197 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 6 11 -1.</_>
-                <_>
-                  10 0 2 11 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2031546980142593</threshold>
-            <left_val>2.1833679638803005e-003</left_val>
-            <right_val>-0.4934430122375488</right_val></_></_>
-        <_>
-          <!-- tree 198 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 1 3 1 -1.</_>
-                <_>
-                  2 2 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.6780078448355198e-003</threshold>
-            <left_val>0.1934317052364349</left_val>
-            <right_val>-0.0277863405644894</right_val></_></_>
-        <_>
-          <!-- tree 199 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 1 6 -1.</_>
-                <_>
-                  16 2 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9304530732333660e-003</threshold>
-            <left_val>-0.0200895592570305</left_val>
-            <right_val>0.1090969964861870</right_val></_></_>
-        <_>
-          <!-- tree 200 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 1 2 -1.</_>
-                <_>
-                  0 5 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3739310563541949e-005</threshold>
-            <left_val>0.0694196820259094</left_val>
-            <right_val>-0.0834254324436188</right_val></_></_>
-        <_>
-          <!-- tree 201 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 6 3 2 -1.</_>
-                <_>
-                  15 6 3 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.2176208011806011e-003</threshold>
-            <left_val>0.0786899477243423</left_val>
-            <right_val>-0.0139514803886414</right_val></_></_>
-        <_>
-          <!-- tree 202 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 6 2 3 -1.</_>
-                <_>
-                  3 6 1 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.5320560932159424e-003</threshold>
-            <left_val>-0.0663150474429131</left_val>
-            <right_val>0.0798476189374924</right_val></_></_>
-        <_>
-          <!-- tree 203 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 4 -1.</_>
-                <_>
-                  9 0 9 2 2.</_>
-                <_>
-                  0 2 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0369591601192951</threshold>
-            <left_val>-0.2938030958175659</left_val>
-            <right_val>0.0157649908214808</right_val></_></_>
-        <_>
-          <!-- tree 204 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 5 3 4 -1.</_>
-                <_>
-                  5 6 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0163652505725622</threshold>
-            <left_val>-0.0322352685034275</left_val>
-            <right_val>0.1461254954338074</right_val></_></_>
-        <_>
-          <!-- tree 205 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 1 4 12 -1.</_>
-                <_>
-                  15 1 2 6 2.</_>
-                <_>
-                  13 7 2 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0785978734493256</threshold>
-            <left_val>-0.1932214051485062</left_val>
-            <right_val>9.7729396075010300e-003</right_val></_></_>
-        <_>
-          <!-- tree 206 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 2 14 -1.</_>
-                <_>
-                  3 8 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0371479801833630</threshold>
-            <left_val>-0.0805545896291733</left_val>
-            <right_val>0.0657810792326927</right_val></_></_>
-        <_>
-          <!-- tree 207 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 6 5 3 -1.</_>
-                <_>
-                  7 7 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0117284599691629</threshold>
-            <left_val>0.0272431094199419</left_val>
-            <right_val>-0.1464972943067551</right_val></_></_>
-        <_>
-          <!-- tree 208 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 6 2 -1.</_>
-                <_>
-                  6 8 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0103350402787328</threshold>
-            <left_val>0.0627673566341400</left_val>
-            <right_val>-0.0815778523683548</right_val></_></_>
-        <_>
-          <!-- tree 209 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 8 9 3 -1.</_>
-                <_>
-                  10 9 3 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0225539691746235</threshold>
-            <left_val>-0.0534550100564957</left_val>
-            <right_val>0.0260324496775866</right_val></_></_>
-        <_>
-          <!-- tree 210 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 8 9 3 -1.</_>
-                <_>
-                  5 9 3 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0209841597825289</threshold>
-            <left_val>-0.0704301372170448</left_val>
-            <right_val>0.0790670588612556</right_val></_></_>
-        <_>
-          <!-- tree 211 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 4 4 7 -1.</_>
-                <_>
-                  11 4 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.0778899826109409e-003</threshold>
-            <left_val>0.0680953115224838</left_val>
-            <right_val>-0.0216820295900106</right_val></_></_>
-        <_>
-          <!-- tree 212 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 4 7 -1.</_>
-                <_>
-                  5 4 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.9395829876884818e-003</threshold>
-            <left_val>0.0617897398769856</left_val>
-            <right_val>-0.1004408970475197</right_val></_></_>
-        <_>
-          <!-- tree 213 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 14 3 1 -1.</_>
-                <_>
-                  11 14 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5511269448325038e-003</threshold>
-            <left_val>-0.0237703006714582</left_val>
-            <right_val>0.1048393994569778</right_val></_></_>
-        <_>
-          <!-- tree 214 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 14 3 1 -1.</_>
-                <_>
-                  6 14 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.7477812485303730e-005</threshold>
-            <left_val>0.0735548809170723</left_val>
-            <right_val>-0.0689330399036407</right_val></_></_>
-        <_>
-          <!-- tree 215 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 14 12 1 -1.</_>
-                <_>
-                  9 14 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.8028680612333119e-004</threshold>
-            <left_val>0.0447285212576389</left_val>
-            <right_val>-0.0435139797627926</right_val></_></_>
-        <_>
-          <!-- tree 216 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 18 8 -1.</_>
-                <_>
-                  0 1 9 4 2.</_>
-                <_>
-                  9 5 9 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1720701009035111</threshold>
-            <left_val>-0.5927919149398804</left_val>
-            <right_val>8.8808601722121239e-003</right_val></_></_>
-        <_>
-          <!-- tree 217 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 6 4 -1.</_>
-                <_>
-                  9 1 6 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1584734022617340</threshold>
-            <left_val>3.0388650484383106e-003</left_val>
-            <right_val>-0.2743625938892365</right_val></_></_>
-        <_>
-          <!-- tree 218 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 4 6 -1.</_>
-                <_>
-                  9 1 2 6 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1497168987989426</threshold>
-            <left_val>-0.7600219845771790</left_val>
-            <right_val>6.4801289699971676e-003</right_val></_></_>
-        <_>
-          <!-- tree 219 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 2 2 -1.</_>
-                <_>
-                  12 8 1 1 2.</_>
-                <_>
-                  11 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.0640289876610041e-003</threshold>
-            <left_val>0.1553120017051697</left_val>
-            <right_val>-0.0304844807833433</right_val></_></_>
-        <_>
-          <!-- tree 220 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 11 -1.</_>
-                <_>
-                  7 0 4 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0771084874868393</threshold>
-            <left_val>0.4302985966205597</left_val>
-            <right_val>-0.0116477198898792</right_val></_></_>
-        <_>
-          <!-- tree 221 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 6 3 -1.</_>
-                <_>
-                  9 8 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0343285612761974</threshold>
-            <left_val>-0.2315476983785629</left_val>
-            <right_val>0.0161607693880796</right_val></_></_>
-        <_>
-          <!-- tree 222 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 6 9 -1.</_>
-                <_>
-                  6 0 2 9 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0435740090906620</threshold>
-            <left_val>-0.0281460192054510</left_val>
-            <right_val>0.1697372943162918</right_val></_></_>
-        <_>
-          <!-- tree 223 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 3 2 -1.</_>
-                <_>
-                  11 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.4282230343669653e-005</threshold>
-            <left_val>-0.0652616396546364</left_val>
-            <right_val>0.0352620482444763</right_val></_></_>
-        <_>
-          <!-- tree 224 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 3 -1.</_>
-                <_>
-                  7 1 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.1579340100288391e-003</threshold>
-            <left_val>0.0431658513844013</left_val>
-            <right_val>-0.1101099997758865</right_val></_></_>
-        <_>
-          <!-- tree 225 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 3 1 -1.</_>
-                <_>
-                  11 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.0436691120266914e-003</threshold>
-            <left_val>0.0295867193490267</left_val>
-            <right_val>-0.0619979798793793</right_val></_></_>
-        <_>
-          <!-- tree 226 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 4 6 11 -1.</_>
-                <_>
-                  8 4 2 11 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1842591017484665</threshold>
-            <left_val>5.3550167940557003e-003</left_val>
-            <right_val>-0.9289578795433044</right_val></_></_>
-        <_>
-          <!-- tree 227 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 8 3 3 -1.</_>
-                <_>
-                  11 8 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0191197507083416</threshold>
-            <left_val>5.3580361418426037e-003</left_val>
-            <right_val>-0.6534789204597473</right_val></_></_>
-        <_>
-          <!-- tree 228 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 1 9 2 -1.</_>
-                <_>
-                  8 1 9 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0641443729400635</threshold>
-            <left_val>-0.0103305000811815</left_val>
-            <right_val>0.4671950936317444</right_val></_></_>
-        <_>
-          <!-- tree 229 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 3 1 -1.</_>
-                <_>
-                  11 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.3394681997597218e-003</threshold>
-            <left_val>-0.1537874042987824</left_val>
-            <right_val>0.0111428704112768</right_val></_></_>
-        <_>
-          <!-- tree 230 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 6 -1.</_>
-                <_>
-                  0 9 9 3 2.</_>
-                <_>
-                  9 12 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2232117950916290</threshold>
-            <left_val>-0.9469724893569946</left_val>
-            <right_val>4.8918798565864563e-003</right_val></_></_>
-        <_>
-          <!-- tree 231 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 8 2 2 -1.</_>
-                <_>
-                  9 8 1 1 2.</_>
-                <_>
-                  8 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.6038159527815878e-005</threshold>
-            <left_val>0.0709768906235695</left_val>
-            <right_val>-0.0623531192541122</right_val></_></_>
-        <_>
-          <!-- tree 232 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 7 2 2 -1.</_>
-                <_>
-                  4 7 1 1 2.</_>
-                <_>
-                  5 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3452749699354172e-003</threshold>
-            <left_val>-0.0286097601056099</left_val>
-            <right_val>0.1554924994707108</right_val></_></_>
-        <_>
-          <!-- tree 233 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 8 3 3 -1.</_>
-                <_>
-                  11 8 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3946880353614688e-003</threshold>
-            <left_val>-0.0402705408632755</left_val>
-            <right_val>0.0586122795939446</right_val></_></_>
-        <_>
-          <!-- tree 234 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 8 3 3 -1.</_>
-                <_>
-                  6 8 1 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0156203303486109</threshold>
-            <left_val>7.3195630684494972e-003</left_val>
-            <right_val>-0.6321095824241638</right_val></_></_>
-        <_>
-          <!-- tree 235 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 3 1 -1.</_>
-                <_>
-                  11 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.5555468861712143e-005</threshold>
-            <left_val>0.0450235009193420</left_val>
-            <right_val>-0.0287142004817724</right_val></_></_>
-        <_>
-          <!-- tree 236 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 1 6 -1.</_>
-                <_>
-                  0 8 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0111428601667285</threshold>
-            <left_val>0.0157248601317406</left_val>
-            <right_val>-0.2853612005710602</right_val></_></_>
-        <_>
-          <!-- tree 237 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 5 6 -1.</_>
-                <_>
-                  11 10 5 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0131013197824359</threshold>
-            <left_val>-0.0355839505791664</left_val>
-            <right_val>0.1051271036267281</right_val></_></_>
-        <_>
-          <!-- tree 238 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 1 6 -1.</_>
-                <_>
-                  0 10 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.7957009673118591e-003</threshold>
-            <left_val>0.0244174394756556</left_val>
-            <right_val>-0.1893509030342102</right_val></_></_>
-        <_>
-          <!-- tree 239 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 6 6 -1.</_>
-                <_>
-                  11 10 6 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0499279797077179</threshold>
-            <left_val>0.0787372216582298</left_val>
-            <right_val>-0.0277854092419147</right_val></_></_>
-        <_>
-          <!-- tree 240 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 8 6 6 -1.</_>
-                <_>
-                  1 10 6 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0398713387548923</threshold>
-            <left_val>-0.0298023894429207</left_val>
-            <right_val>0.1944461017847061</right_val></_></_>
-        <_>
-          <!-- tree 241 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 3 1 -1.</_>
-                <_>
-                  11 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0157816000282764</threshold>
-            <left_val>-0.7665395736694336</left_val>
-            <right_val>9.5044961199164391e-004</right_val></_></_>
-        <_>
-          <!-- tree 242 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 1 3 -1.</_>
-                <_>
-                  7 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.1174961738288403e-003</threshold>
-            <left_val>-0.2676964104175568</left_val>
-            <right_val>0.0171274207532406</right_val></_></_>
-        <_>
-          <!-- tree 243 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 3 9 9 -1.</_>
-                <_>
-                  8 6 3 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.4499483108520508</threshold>
-            <left_val>-0.0190667398273945</left_val>
-            <right_val>0.2348536998033524</right_val></_></_>
-        <_>
-          <!-- tree 244 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 8 2 -1.</_>
-                <_>
-                  7 0 8 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0433428809046745</threshold>
-            <left_val>-0.7188379168510437</left_val>
-            <right_val>6.2806149944663048e-003</right_val></_></_>
-        <_>
-          <!-- tree 245 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 9 3 6 -1.</_>
-                <_>
-                  12 9 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0301288608461618</threshold>
-            <left_val>-0.6576640009880066</left_val>
-            <right_val>4.9726511351764202e-003</right_val></_></_>
-        <_>
-          <!-- tree 246 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 14 12 1 -1.</_>
-                <_>
-                  5 14 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0227169692516327</threshold>
-            <left_val>-0.1927156001329422</left_val>
-            <right_val>0.0224213097244501</right_val></_></_>
-        <_>
-          <!-- tree 247 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 14 4 1 -1.</_>
-                <_>
-                  9 14 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0098509956151247e-003</threshold>
-            <left_val>0.0785590186715126</left_val>
-            <right_val>-0.0356715284287930</right_val></_></_>
-        <_>
-          <!-- tree 248 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 14 4 1 -1.</_>
-                <_>
-                  7 14 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0692490031942725e-003</threshold>
-            <left_val>0.1281787008047104</left_val>
-            <right_val>-0.0513950809836388</right_val></_></_>
-        <_>
-          <!-- tree 249 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 14 2 1 -1.</_>
-                <_>
-                  14 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.7365992106497288e-003</threshold>
-            <left_val>-0.4571113884449005</left_val>
-            <right_val>4.0395711548626423e-003</right_val></_></_>
-        <_>
-          <!-- tree 250 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 14 2 1 -1.</_>
-                <_>
-                  3 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.0038979679811746e-005</threshold>
-            <left_val>0.0696846470236778</left_val>
-            <right_val>-0.0743912681937218</right_val></_></_>
-        <_>
-          <!-- tree 251 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 9 3 6 -1.</_>
-                <_>
-                  12 9 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0336750186979771</threshold>
-            <left_val>3.2588799949735403e-003</left_val>
-            <right_val>-0.8050068020820618</right_val></_></_>
-        <_>
-          <!-- tree 252 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 9 3 6 -1.</_>
-                <_>
-                  5 9 1 6 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0159147903323174</threshold>
-            <left_val>0.0107761099934578</left_val>
-            <right_val>-0.4024600088596344</right_val></_></_>
-        <_>
-          <!-- tree 253 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 12 12 2 -1.</_>
-                <_>
-                  5 13 12 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.2607940849848092e-004</threshold>
-            <left_val>-0.0471980608999729</left_val>
-            <right_val>0.0233493093401194</right_val></_></_>
-        <_>
-          <!-- tree 254 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 15 15 -1.</_>
-                <_>
-                  5 0 5 15 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2248571068048477</threshold>
-            <left_val>-0.0398878902196884</left_val>
-            <right_val>0.1068518981337547</right_val></_></_>
-        <_>
-          <!-- tree 255 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 1 2 4 -1.</_>
-                <_>
-                  8 1 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9953860212117434e-003</threshold>
-            <left_val>0.0916093885898590</left_val>
-            <right_val>-0.0748484134674072</right_val></_></_>
-        <_>
-          <!-- tree 256 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 2 8 -1.</_>
-                <_>
-                  0 3 1 4 2.</_>
-                <_>
-                  1 7 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.1523170657455921e-003</threshold>
-            <left_val>0.1153976023197174</left_val>
-            <right_val>-0.0425119213759899</right_val></_></_>
-        <_>
-          <!-- tree 257 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 1 3 3 -1.</_>
-                <_>
-                  14 2 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0498369298875332</threshold>
-            <left_val>-3.9297798648476601e-003</left_val>
-            <right_val>0.5181720256805420</right_val></_></_>
-        <_>
-          <!-- tree 258 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 3 3 -1.</_>
-                <_>
-                  4 2 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0200233291834593</threshold>
-            <left_val>0.1912897974252701</left_val>
-            <right_val>-0.0231510493904352</right_val></_></_>
-        <_>
-          <!-- tree 259 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 6 -1.</_>
-                <_>
-                  16 0 2 3 2.</_>
-                <_>
-                  14 3 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.2091718427836895e-003</threshold>
-            <left_val>0.1013979017734528</left_val>
-            <right_val>-0.0324465110898018</right_val></_></_>
-        <_>
-          <!-- tree 260 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 12 2 -1.</_>
-                <_>
-                  3 3 6 1 2.</_>
-                <_>
-                  9 4 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2683670073747635e-003</threshold>
-            <left_val>-0.1818909049034119</left_val>
-            <right_val>0.0307422205805779</right_val></_></_>
-        <_>
-          <!-- tree 261 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 10 2 1 -1.</_>
-                <_>
-                  16 10 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.5454410351812840e-003</threshold>
-            <left_val>0.0155313396826386</left_val>
-            <right_val>-0.0760350972414017</right_val></_></_>
-        <_>
-          <!-- tree 262 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 10 1 2 -1.</_>
-                <_>
-                  2 10 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.3172550611197948e-003</threshold>
-            <left_val>-0.1350935995578766</left_val>
-            <right_val>0.0359591096639633</right_val></_></_>
-        <_>
-          <!-- tree 263 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 7 6 4 -1.</_>
-                <_>
-                  13 7 3 2 2.</_>
-                <_>
-                  10 9 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0261108204722404</threshold>
-            <left_val>0.0872836336493492</left_val>
-            <right_val>-0.0217705499380827</right_val></_></_>
-        <_>
-          <!-- tree 264 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 18 5 -1.</_>
-                <_>
-                  6 4 6 5 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2431263029575348</threshold>
-            <left_val>0.0361428782343864</left_val>
-            <right_val>-0.1462513059377670</right_val></_></_>
-        <_>
-          <!-- tree 265 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 1 5 6 -1.</_>
-                <_>
-                  9 3 5 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1904131025075913</threshold>
-            <left_val>7.3239780031144619e-003</left_val>
-            <right_val>-0.2772952020168304</right_val></_></_>
-        <_>
-          <!-- tree 266 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 6 6 -1.</_>
-                <_>
-                  10 2 2 6 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0163597594946623</threshold>
-            <left_val>-0.1068542972207069</left_val>
-            <right_val>0.0491146706044674</right_val></_></_>
-        <_>
-          <!-- tree 267 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 14 4 -1.</_>
-                <_>
-                  11 4 7 2 2.</_>
-                <_>
-                  4 6 7 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0688577666878700</threshold>
-            <left_val>-0.4238899052143097</left_val>
-            <right_val>8.5399514064192772e-003</right_val></_></_>
-        <_>
-          <!-- tree 268 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 14 4 -1.</_>
-                <_>
-                  0 4 7 2 2.</_>
-                <_>
-                  7 6 7 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0203291904181242</threshold>
-            <left_val>-0.0396039597690105</left_val>
-            <right_val>0.1634790003299713</right_val></_></_>
-        <_>
-          <!-- tree 269 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 7 6 4 -1.</_>
-                <_>
-                  13 7 3 2 2.</_>
-                <_>
-                  10 9 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0129730198532343</threshold>
-            <left_val>-0.0195611193776131</left_val>
-            <right_val>0.1110479012131691</right_val></_></_>
-        <_>
-          <!-- tree 270 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 7 6 4 -1.</_>
-                <_>
-                  2 7 3 2 2.</_>
-                <_>
-                  5 9 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.2990398146212101e-003</threshold>
-            <left_val>-0.0387555509805679</left_val>
-            <right_val>0.1649558991193771</right_val></_></_>
-        <_>
-          <!-- tree 271 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 2 2 2 -1.</_>
-                <_>
-                  10 2 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.6493619447574019e-004</threshold>
-            <left_val>-0.0703989788889885</left_val>
-            <right_val>0.0591666884720325</right_val></_></_>
-        <_>
-          <!-- tree 272 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 14 6 1 -1.</_>
-                <_>
-                  9 14 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0114370100200176</threshold>
-            <left_val>-0.2558253109455109</left_val>
-            <right_val>0.0225616004317999</right_val></_></_>
-        <_>
-          <!-- tree 273 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 6 -1.</_>
-                <_>
-                  9 9 9 3 2.</_>
-                <_>
-                  0 12 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0605634413659573</threshold>
-            <left_val>-0.1502590030431747</left_val>
-            <right_val>0.0358815304934978</right_val></_></_>
-        <_>
-          <!-- tree 274 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 1 14 -1.</_>
-                <_>
-                  1 7 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0571704693138599</threshold>
-            <left_val>-0.5516524910926819</left_val>
-            <right_val>8.8588111102581024e-003</right_val></_></_>
-        <_>
-          <!-- tree 275 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 3 1 -1.</_>
-                <_>
-                  15 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.7495139986276627e-003</threshold>
-            <left_val>-0.1063347011804581</left_val>
-            <right_val>0.0165663603693247</right_val></_></_>
-        <_>
-          <!-- tree 276 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 7 3 3 -1.</_>
-                <_>
-                  3 8 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.6156480200588703e-003</threshold>
-            <left_val>-0.0469515882432461</left_val>
-            <right_val>0.0984329879283905</right_val></_></_>
-        <_>
-          <!-- tree 277 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 3 1 -1.</_>
-                <_>
-                  15 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.9375461637973785e-003</threshold>
-            <left_val>0.0158571396023035</left_val>
-            <right_val>-0.1276154965162277</right_val></_></_>
-        <_>
-          <!-- tree 278 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 2 2 2 -1.</_>
-                <_>
-                  7 2 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.9156679091975093e-004</threshold>
-            <left_val>-0.0969325676560402</left_val>
-            <right_val>0.0460354201495647</right_val></_></_>
-        <_>
-          <!-- tree 279 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 12 -1.</_>
-                <_>
-                  7 0 4 12 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0171396601945162</threshold>
-            <left_val>0.1832552999258041</left_val>
-            <right_val>-0.0297442600131035</right_val></_></_>
-        <_>
-          <!-- tree 280 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 8 2 1 -1.</_>
-                <_>
-                  9 8 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.1130971144884825e-003</threshold>
-            <left_val>-0.1469496935606003</left_val>
-            <right_val>0.0371412001550198</right_val></_></_>
-        <_>
-          <!-- tree 281 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 2 2 -1.</_>
-                <_>
-                  10 4 1 1 2.</_>
-                <_>
-                  9 5 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3239036535378546e-005</threshold>
-            <left_val>0.0560943596065044</left_val>
-            <right_val>-0.0452513098716736</right_val></_></_>
-        <_>
-          <!-- tree 282 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 4 2 2 -1.</_>
-                <_>
-                  7 4 1 1 2.</_>
-                <_>
-                  8 5 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.2524639613693580e-005</threshold>
-            <left_val>-0.0660794675350189</left_val>
-            <right_val>0.0848461315035820</right_val></_></_>
-        <_>
-          <!-- tree 283 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 8 4 4 -1.</_>
-                <_>
-                  8 8 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2989229764789343e-003</threshold>
-            <left_val>-0.0628855079412460</left_val>
-            <right_val>0.0724585726857185</right_val></_></_>
-        <_>
-          <!-- tree 284 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 6 3 1 -1.</_>
-                <_>
-                  10 7 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.5239242762327194e-003</threshold>
-            <left_val>0.0245985891669989</left_val>
-            <right_val>-0.2040424942970276</right_val></_></_>
-        <_>
-          <!-- tree 285 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 18 2 -1.</_>
-                <_>
-                  0 11 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0152474995702505</threshold>
-            <left_val>-0.0463051386177540</left_val>
-            <right_val>0.0926802083849907</right_val></_></_>
-        <_>
-          <!-- tree 286 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 5 2 8 -1.</_>
-                <_>
-                  8 5 2 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0411155596375465</threshold>
-            <left_val>-0.1647908985614777</left_val>
-            <right_val>0.0320520587265491</right_val></_></_>
-        <_>
-          <!-- tree 287 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 12 4 -1.</_>
-                <_>
-                  3 5 12 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0570124983787537</threshold>
-            <left_val>0.1769132018089294</left_val>
-            <right_val>-0.0289100594818592</right_val></_></_>
-        <_>
-          <!-- tree 288 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 8 1 -1.</_>
-                <_>
-                  6 2 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0361419506371021</threshold>
-            <left_val>0.3357386887073517</left_val>
-            <right_val>-0.0146681498736143</right_val></_></_>
-        <_>
-          <!-- tree 289 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 4 10 -1.</_>
-                <_>
-                  11 0 2 5 2.</_>
-                <_>
-                  9 5 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0473424009978771</threshold>
-            <left_val>-0.3646846115589142</left_val>
-            <right_val>9.7021097317337990e-003</right_val></_></_>
-        <_>
-          <!-- tree 290 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 10 2 -1.</_>
-                <_>
-                  4 3 10 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5224410162772983e-004</threshold>
-            <left_val>-0.0855662599205971</left_val>
-            <right_val>0.0563358217477798</right_val></_></_>
-        <_>
-          <!-- tree 291 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 0 3 4 -1.</_>
-                <_>
-                  12 0 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0744449682533741e-003</threshold>
-            <left_val>0.0676028802990913</left_val>
-            <right_val>-0.0449445992708206</right_val></_></_>
-        <_>
-          <!-- tree 292 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 5 2 -1.</_>
-                <_>
-                  6 1 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4688818957656622e-003</threshold>
-            <left_val>0.0393917709589005</left_val>
-            <right_val>-0.1143665015697479</right_val></_></_>
-        <_>
-          <!-- tree 293 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 0 3 4 -1.</_>
-                <_>
-                  12 0 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0223950799554586</threshold>
-            <left_val>-0.4149968922138214</left_val>
-            <right_val>3.3534979447722435e-003</right_val></_></_>
-        <_>
-          <!-- tree 294 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 3 4 -1.</_>
-                <_>
-                  5 0 1 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0141458800062537</threshold>
-            <left_val>7.8060040250420570e-003</left_val>
-            <right_val>-0.5624625086784363</right_val></_></_>
-        <_>
-          <!-- tree 295 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 3 3 -1.</_>
-                <_>
-                  10 1 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.6172739277826622e-005</threshold>
-            <left_val>0.0422396287322044</left_val>
-            <right_val>-0.0399822406470776</right_val></_></_>
-        <_>
-          <!-- tree 296 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 3 3 -1.</_>
-                <_>
-                  5 1 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.6720141544938087e-003</threshold>
-            <left_val>-0.3006666898727417</left_val>
-            <right_val>0.0159843992441893</right_val></_></_>
-        <_>
-          <!-- tree 297 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 2 2 -1.</_>
-                <_>
-                  12 8 1 1 2.</_>
-                <_>
-                  11 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9289661294315010e-005</threshold>
-            <left_val>-0.0410341098904610</left_val>
-            <right_val>0.0526925884187222</right_val></_></_>
-        <_>
-          <!-- tree 298 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 8 2 2 -1.</_>
-                <_>
-                  5 8 1 1 2.</_>
-                <_>
-                  6 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.9730681087821722e-003</threshold>
-            <left_val>0.1511884927749634</left_val>
-            <right_val>-0.0325110815465450</right_val></_></_>
-        <_>
-          <!-- tree 299 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 2 2 -1.</_>
-                <_>
-                  12 8 1 1 2.</_>
-                <_>
-                  11 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3879110813140869e-005</threshold>
-            <left_val>0.0414035692811012</left_val>
-            <right_val>-0.0429901182651520</right_val></_></_>
-        <_>
-          <!-- tree 300 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 8 2 2 -1.</_>
-                <_>
-                  5 8 1 1 2.</_>
-                <_>
-                  6 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1802700909320265e-005</threshold>
-            <left_val>-0.0583424791693687</left_val>
-            <right_val>0.0939400717616081</right_val></_></_>
-        <_>
-          <!-- tree 301 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 7 1 4 -1.</_>
-                <_>
-                  10 8 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.2840979509055614e-003</threshold>
-            <left_val>0.0185070801526308</left_val>
-            <right_val>-0.0458313114941120</right_val></_></_>
-        <_>
-          <!-- tree 302 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 5 12 -1.</_>
-                <_>
-                  3 6 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1312506943941116</threshold>
-            <left_val>-0.1768728047609329</left_val>
-            <right_val>0.0260149408131838</right_val></_></_>
-        <_>
-          <!-- tree 303 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 10 4 1 -1.</_>
-                <_>
-                  11 10 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-1.1948959436267614e-003</threshold>
-            <left_val>0.0419367291033268</left_val>
-            <right_val>-0.0555466488003731</right_val></_></_>
-        <_>
-          <!-- tree 304 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 1 3 6 -1.</_>
-                <_>
-                  4 3 3 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0722346305847168</threshold>
-            <left_val>0.0106889596208930</left_val>
-            <right_val>-0.4012762010097504</right_val></_></_>
-        <_>
-          <!-- tree 305 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 16 1 -1.</_>
-                <_>
-                  6 1 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0563969314098358</threshold>
-            <left_val>-0.8849198818206787</left_val>
-            <right_val>3.6692508729174733e-004</right_val></_></_>
-        <_>
-          <!-- tree 306 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 6 12 4 -1.</_>
-                <_>
-                  3 6 6 2 2.</_>
-                <_>
-                  9 8 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0541536509990692</threshold>
-            <left_val>-0.2249650955200195</left_val>
-            <right_val>0.0179232098162174</right_val></_></_>
-        <_>
-          <!-- tree 307 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 7 16 3 -1.</_>
-                <_>
-                  1 8 16 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0251673292368650</threshold>
-            <left_val>0.1300235986709595</left_val>
-            <right_val>-0.0366861596703529</right_val></_></_>
-        <_>
-          <!-- tree 308 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 6 6 6 -1.</_>
-                <_>
-                  4 8 2 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0137102100998163</threshold>
-            <left_val>-0.0405139811336994</left_val>
-            <right_val>0.1120186001062393</right_val></_></_>
-        <_>
-          <!-- tree 309 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 4 4 3 -1.</_>
-                <_>
-                  14 5 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0278908200562000</threshold>
-            <left_val>-0.7313765883445740</left_val>
-            <right_val>3.7337029352784157e-003</right_val></_></_>
-        <_>
-          <!-- tree 310 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 4 3 -1.</_>
-                <_>
-                  0 5 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.5335809960961342e-003</threshold>
-            <left_val>-0.2311984002590179</left_val>
-            <right_val>0.0176145397126675</right_val></_></_>
-        <_>
-          <!-- tree 311 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 1 1 3 -1.</_>
-                <_>
-                  14 2 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2403611112385988e-003</threshold>
-            <left_val>-8.7237963452935219e-003</left_val>
-            <right_val>0.2038265019655228</right_val></_></_>
-        <_>
-          <!-- tree 312 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 9 9 3 -1.</_>
-                <_>
-                  4 9 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0844089612364769</threshold>
-            <left_val>5.1954388618469238e-003</left_val>
-            <right_val>-0.8245453238487244</right_val></_></_>
-        <_>
-          <!-- tree 313 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 2 2 3 -1.</_>
-                <_>
-                  14 2 1 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-8.2196877337992191e-004</threshold>
-            <left_val>-0.0817157030105591</left_val>
-            <right_val>0.0218308698385954</right_val></_></_>
-        <_>
-          <!-- tree 314 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 2 4 -1.</_>
-                <_>
-                  3 2 1 2 2.</_>
-                <_>
-                  4 4 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9956221114844084e-003</threshold>
-            <left_val>-0.0280322693288326</left_val>
-            <right_val>0.1512784063816071</right_val></_></_>
-        <_>
-          <!-- tree 315 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 5 4 10 -1.</_>
-                <_>
-                  12 5 2 5 2.</_>
-                <_>
-                  10 10 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0703764632344246</threshold>
-            <left_val>-0.1352009028196335</left_val>
-            <right_val>3.9681098423898220e-003</right_val></_></_>
-        <_>
-          <!-- tree 316 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 5 4 10 -1.</_>
-                <_>
-                  4 5 2 5 2.</_>
-                <_>
-                  6 10 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0321913808584213</threshold>
-            <left_val>0.0131358997896314</left_val>
-            <right_val>-0.3347019851207733</right_val></_></_>
-        <_>
-          <!-- tree 317 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 2 2 2 -1.</_>
-                <_>
-                  11 2 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.4974909871816635e-003</threshold>
-            <left_val>-0.0265497900545597</left_val>
-            <right_val>0.1170909032225609</right_val></_></_>
-        <_>
-          <!-- tree 318 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 4 3 6 -1.</_>
-                <_>
-                  5 6 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0164293907582760</threshold>
-            <left_val>-0.0533613413572311</left_val>
-            <right_val>0.0821190625429153</right_val></_></_>
-        <_>
-          <!-- tree 319 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 2 2 2 -1.</_>
-                <_>
-                  11 2 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-7.4506900273263454e-003</threshold>
-            <left_val>0.0808582007884979</left_val>
-            <right_val>-0.0223928596824408</right_val></_></_>
-        <_>
-          <!-- tree 320 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 2 2 2 -1.</_>
-                <_>
-                  7 2 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.9851150251924992e-003</threshold>
-            <left_val>-0.0205729696899652</left_val>
-            <right_val>0.2598786056041718</right_val></_></_>
-        <_>
-          <!-- tree 321 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 5 2 1 -1.</_>
-                <_>
-                  9 5 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.9100670944899321e-003</threshold>
-            <left_val>-0.0231053698807955</left_val>
-            <right_val>0.0452293008565903</right_val></_></_>
-        <_>
-          <!-- tree 322 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 9 14 -1.</_>
-                <_>
-                  5 0 3 14 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1352230012416840</threshold>
-            <left_val>0.1116971969604492</left_val>
-            <right_val>-0.0436136610805988</right_val></_></_>
-        <_>
-          <!-- tree 323 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 3 1 -1.</_>
-                <_>
-                  15 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.8680844530463219e-003</threshold>
-            <left_val>-0.1834681928157806</left_val>
-            <right_val>3.8948319852352142e-003</right_val></_></_>
-        <_>
-          <!-- tree 324 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 1 3 -1.</_>
-                <_>
-                  3 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.0301959961652756e-003</threshold>
-            <left_val>0.0233750492334366</left_val>
-            <right_val>-0.2056623995304108</right_val></_></_>
-        <_>
-          <!-- tree 325 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 4 10 -1.</_>
-                <_>
-                  11 0 2 5 2.</_>
-                <_>
-                  9 5 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0396324507892132</threshold>
-            <left_val>7.7001759782433510e-003</left_val>
-            <right_val>-0.1663939058780670</right_val></_></_>
-        <_>
-          <!-- tree 326 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 2 5 -1.</_>
-                <_>
-                  5 0 1 5 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0127424998208880</threshold>
-            <left_val>0.1485241055488586</left_val>
-            <right_val>-0.0306067708879709</right_val></_></_>
-        <_>
-          <!-- tree 327 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 2 1 -1.</_>
-                <_>
-                  14 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.7017830181866884e-003</threshold>
-            <left_val>0.0209220908582211</left_val>
-            <right_val>-0.1147229969501495</right_val></_></_>
-        <_>
-          <!-- tree 328 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 1 2 -1.</_>
-                <_>
-                  4 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.2704519797116518e-003</threshold>
-            <left_val>0.0270258691161871</left_val>
-            <right_val>-0.1654057949781418</right_val></_></_>
-        <_>
-          <!-- tree 329 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 1 4 4 -1.</_>
-                <_>
-                  12 1 2 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1495328992605209</threshold>
-            <left_val>-2.0300289615988731e-003</left_val>
-            <right_val>0.5981509089469910</right_val></_></_>
-        <_>
-          <!-- tree 330 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 1 4 -1.</_>
-                <_>
-                  0 2 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1417769864201546e-003</threshold>
-            <left_val>0.3844088912010193</left_val>
-            <right_val>-0.0112848002463579</right_val></_></_>
-        <_>
-          <!-- tree 331 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 2 4 -1.</_>
-                <_>
-                  9 7 1 2 2.</_>
-                <_>
-                  8 9 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3616367988288403e-003</threshold>
-            <left_val>-0.3109016120433807</left_val>
-            <right_val>0.0143518401309848</right_val></_></_>
-        <_>
-          <!-- tree 332 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 5 16 2 -1.</_>
-                <_>
-                  5 5 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0598138608038425</threshold>
-            <left_val>-0.7037869095802307</left_val>
-            <right_val>5.7968678884208202e-003</right_val></_></_>
-        <_>
-          <!-- tree 333 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 12 -1.</_>
-                <_>
-                  5 4 8 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3535721004009247</threshold>
-            <left_val>0.0112126599997282</left_val>
-            <right_val>-0.3322969973087311</right_val></_></_>
-        <_>
-          <!-- tree 334 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 2 12 9 -1.</_>
-                <_>
-                  6 5 4 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.6899908185005188</threshold>
-            <left_val>-0.0105861099436879</left_val>
-            <right_val>0.3837656974792481</right_val></_></_>
-        <_>
-          <!-- tree 335 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 3 3 -1.</_>
-                <_>
-                  14 1 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.8297038301825523e-003</threshold>
-            <left_val>0.0210381299257278</left_val>
-            <right_val>-0.0573535598814487</right_val></_></_>
-        <_>
-          <!-- tree 336 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 3 3 -1.</_>
-                <_>
-                  4 1 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0178284905850887</threshold>
-            <left_val>-0.0106050595641136</left_val>
-            <right_val>0.3956354856491089</right_val></_></_>
-        <_>
-          <!-- tree 337 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 2 16 7 -1.</_>
-                <_>
-                  6 2 8 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0642841011285782</threshold>
-            <left_val>-0.0638428777456284</left_val>
-            <right_val>0.0267954096198082</right_val></_></_>
-        <_>
-          <!-- tree 338 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 16 7 -1.</_>
-                <_>
-                  4 2 8 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2549147009849548</threshold>
-            <left_val>0.0193274095654488</left_val>
-            <right_val>-0.2430274933576584</right_val></_></_>
-        <_>
-          <!-- tree 339 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 13 2 2 -1.</_>
-                <_>
-                  16 13 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1334970630705357e-003</threshold>
-            <left_val>0.0115080103278160</left_val>
-            <right_val>-0.2383089959621429</right_val></_></_>
-        <_>
-          <!-- tree 340 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 13 2 2 -1.</_>
-                <_>
-                  1 13 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.9797872304916382e-003</threshold>
-            <left_val>-0.2042689025402069</left_val>
-            <right_val>0.0203900802880526</right_val></_></_>
-        <_>
-          <!-- tree 341 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 7 2 8 -1.</_>
-                <_>
-                  17 7 1 4 2.</_>
-                <_>
-                  16 11 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7258729096502066e-003</threshold>
-            <left_val>-0.0465084612369537</left_val>
-            <right_val>0.0794106870889664</right_val></_></_>
-        <_>
-          <!-- tree 342 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 2 8 -1.</_>
-                <_>
-                  0 7 1 4 2.</_>
-                <_>
-                  1 11 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0149838598445058</threshold>
-            <left_val>0.3958691954612732</left_val>
-            <right_val>-0.0113431699573994</right_val></_></_>
-        <_>
-          <!-- tree 343 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 2 7 3 -1.</_>
-                <_>
-                  11 3 7 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9130540788173676e-003</threshold>
-            <left_val>0.0363716296851635</left_val>
-            <right_val>-0.0906147211790085</right_val></_></_>
-        <_>
-          <!-- tree 344 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 2 3 -1.</_>
-                <_>
-                  1 8 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.0548500884324312e-004</threshold>
-            <left_val>0.0620919205248356</left_val>
-            <right_val>-0.0684250965714455</right_val></_></_>
-        <_>
-          <!-- tree 345 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 5 6 4 -1.</_>
-                <_>
-                  12 7 2 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1165482997894287</threshold>
-            <left_val>0.1156952977180481</left_val>
-            <right_val>-0.0132687203586102</right_val></_></_>
-        <_>
-          <!-- tree 346 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 7 2 1 -1.</_>
-                <_>
-                  9 7 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0107813002541661</threshold>
-            <left_val>0.0174200199544430</left_val>
-            <right_val>-0.2803607881069183</right_val></_></_>
-        <_>
-          <!-- tree 347 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 18 8 -1.</_>
-                <_>
-                  0 7 18 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.5344784855842590</threshold>
-            <left_val>-0.4741159081459045</left_val>
-            <right_val>8.6649907752871513e-003</right_val></_></_>
-        <_>
-          <!-- tree 348 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 6 2 2 -1.</_>
-                <_>
-                  7 6 1 1 2.</_>
-                <_>
-                  8 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.6615539506310597e-005</threshold>
-            <left_val>-0.0586382709443569</left_val>
-            <right_val>0.0750202611088753</right_val></_></_>
-        <_>
-          <!-- tree 349 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 6 2 2 -1.</_>
-                <_>
-                  12 6 1 1 2.</_>
-                <_>
-                  11 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.2536040786653757e-005</threshold>
-            <left_val>-0.0498466081917286</left_val>
-            <right_val>0.0593500696122646</right_val></_></_>
-        <_>
-          <!-- tree 350 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 5 4 6 -1.</_>
-                <_>
-                  6 7 4 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0730543434619904</threshold>
-            <left_val>-0.0140366898849607</left_val>
-            <right_val>0.3588446080684662</right_val></_></_>
-        <_>
-          <!-- tree 351 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 3 2 2 -1.</_>
-                <_>
-                  16 3 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0165301598608494</threshold>
-            <left_val>-0.3463242053985596</left_val>
-            <right_val>6.7927599884569645e-003</right_val></_></_>
-        <_>
-          <!-- tree 352 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 14 2 1 -1.</_>
-                <_>
-                  9 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3628758653067052e-005</threshold>
-            <left_val>0.0716383680701256</left_val>
-            <right_val>-0.0592160597443581</right_val></_></_>
-        <_>
-          <!-- tree 353 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 2 7 3 -1.</_>
-                <_>
-                  11 3 7 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0194537602365017</threshold>
-            <left_val>-0.5169472098350525</left_val>
-            <right_val>6.2814089469611645e-003</right_val></_></_>
-        <_>
-          <!-- tree 354 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 9 12 -1.</_>
-                <_>
-                  0 5 9 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2120210975408554</threshold>
-            <left_val>7.6583931222558022e-003</left_val>
-            <right_val>-0.5098584294319153</right_val></_></_>
-        <_>
-          <!-- tree 355 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 11 -1.</_>
-                <_>
-                  16 0 1 11 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0196576490998268</threshold>
-            <left_val>-0.0431430488824844</left_val>
-            <right_val>0.0518909394741058</right_val></_></_></trees>
-      <stage_threshold>-1.1554880142211914</stage_threshold>
-      <parent>16</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 18 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 8 3 -1.</_>
-                <_>
-                  10 2 4 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0868941992521286</threshold>
-            <left_val>-0.1896995007991791</left_val>
-            <right_val>0.2203574031591415</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 8 4 2 -1.</_>
-                <_>
-                  12 8 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.6704717725515366e-003</threshold>
-            <left_val>0.1185135021805763</left_val>
-            <right_val>-0.0863395631313324</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 4 5 6 -1.</_>
-                <_>
-                  4 6 5 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0814679488539696</threshold>
-            <left_val>0.1499083936214447</left_val>
-            <right_val>-0.1296371966600418</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 2 2 3 -1.</_>
-                <_>
-                  16 2 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7537999665364623e-003</threshold>
-            <left_val>0.1775088012218475</left_val>
-            <right_val>-0.1069336980581284</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 2 3 -1.</_>
-                <_>
-                  1 2 1 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.4387797212693840e-005</threshold>
-            <left_val>0.0960103869438171</left_val>
-            <right_val>-0.1622508019208908</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 7 3 3 -1.</_>
-                <_>
-                  14 8 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.0011058598756790e-003</threshold>
-            <left_val>-0.0185400806367397</left_val>
-            <right_val>0.2466017007827759</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 4 4 9 -1.</_>
-                <_>
-                  4 4 2 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0170908197760582</threshold>
-            <left_val>0.0325614809989929</left_val>
-            <right_val>-0.2618162035942078</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 4 1 -1.</_>
-                <_>
-                  10 0 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.9246148020029068e-003</threshold>
-            <left_val>-0.0193589702248573</left_val>
-            <right_val>0.1254267990589142</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 2 2 2 -1.</_>
-                <_>
-                  8 2 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0122903902083635</threshold>
-            <left_val>0.0343302115797997</left_val>
-            <right_val>-0.3286471068859100</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 4 1 -1.</_>
-                <_>
-                  9 0 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1256268955767155e-003</threshold>
-            <left_val>-0.0717979818582535</left_val>
-            <right_val>0.0692160725593567</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 14 15 -1.</_>
-                <_>
-                  9 0 7 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2496016025543213</threshold>
-            <left_val>-0.1123834997415543</left_val>
-            <right_val>0.1429843008518219</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 4 4 3 -1.</_>
-                <_>
-                  12 5 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.9557890743017197e-003</threshold>
-            <left_val>0.1379792988300324</left_val>
-            <right_val>-0.0583309903740883</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 6 12 8 -1.</_>
-                <_>
-                  3 6 6 4 2.</_>
-                <_>
-                  9 10 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0697411075234413</threshold>
-            <left_val>0.0297146998345852</left_val>
-            <right_val>-0.3442580103874207</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 5 3 6 -1.</_>
-                <_>
-                  13 7 1 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.1527782604098320e-003</threshold>
-            <left_val>-0.0469510108232498</left_val>
-            <right_val>0.0782470628619194</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 4 3 4 -1.</_>
-                <_>
-                  6 5 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0103493202477694</threshold>
-            <left_val>-0.0694328024983406</left_val>
-            <right_val>0.1585589051246643</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 3 3 -1.</_>
-                <_>
-                  13 8 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.3299350440502167e-003</threshold>
-            <left_val>-0.0399102084338665</left_val>
-            <right_val>0.1524983942508698</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 4 14 -1.</_>
-                <_>
-                  0 8 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0309557206928730</threshold>
-            <left_val>0.0419439598917961</left_val>
-            <right_val>-0.2322739958763123</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 8 3 4 -1.</_>
-                <_>
-                  13 9 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0125044696033001</threshold>
-            <left_val>-0.0183122493326664</left_val>
-            <right_val>0.0996528565883636</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 8 4 3 -1.</_>
-                <_>
-                  5 9 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.4256081134080887e-003</threshold>
-            <left_val>-0.0621832795441151</left_val>
-            <right_val>0.1663811951875687</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 4 -1.</_>
-                <_>
-                  9 0 6 2 2.</_>
-                <_>
-                  3 2 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0200669895857573</threshold>
-            <left_val>0.0226579904556274</left_val>
-            <right_val>-0.3470891118049622</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 12 12 -1.</_>
-                <_>
-                  3 8 12 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.5828899741172791</threshold>
-            <left_val>0.2862842977046967</left_val>
-            <right_val>-0.0296743903309107</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 2 4 -1.</_>
-                <_>
-                  12 8 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0142788495868444</threshold>
-            <left_val>0.1778019964694977</left_val>
-            <right_val>-0.0291071794927120</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 6 1 6 -1.</_>
-                <_>
-                  5 8 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9483898803591728e-003</threshold>
-            <left_val>-0.0514614395797253</left_val>
-            <right_val>0.2133691012859345</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 1 1 14 -1.</_>
-                <_>
-                  17 8 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0376777388155460</threshold>
-            <left_val>-0.3693261146545410</left_val>
-            <right_val>0.0577233098447323</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 10 -1.</_>
-                <_>
-                  0 0 9 5 2.</_>
-                <_>
-                  9 5 9 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0658088922500610</threshold>
-            <left_val>0.0406517907977104</left_val>
-            <right_val>-0.2107470035552979</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 12 11 -1.</_>
-                <_>
-                  9 0 4 11 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2313210964202881</threshold>
-            <left_val>0.4183537065982819</left_val>
-            <right_val>-0.0121959000825882</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 2 4 -1.</_>
-                <_>
-                  7 0 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>9.2640687944367528e-004</threshold>
-            <left_val>-0.1446887999773026</left_val>
-            <right_val>0.0585397295653820</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 13 10 2 -1.</_>
-                <_>
-                  13 13 5 1 2.</_>
-                <_>
-                  8 14 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0040670167654753e-003</threshold>
-            <left_val>-0.0440565086901188</left_val>
-            <right_val>0.0339186899363995</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 3 4 -1.</_>
-                <_>
-                  3 2 3 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0161782503128052</threshold>
-            <left_val>-0.2537319064140320</left_val>
-            <right_val>0.0289683602750301</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 8 4 1 -1.</_>
-                <_>
-                  14 8 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.0239218873903155e-004</threshold>
-            <left_val>0.0413237288594246</left_val>
-            <right_val>-0.0400842092931271</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 6 3 2 -1.</_>
-                <_>
-                  4 7 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.0449438169598579e-003</threshold>
-            <left_val>0.1437224000692368</left_val>
-            <right_val>-0.0471708290278912</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 3 1 -1.</_>
-                <_>
-                  14 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.2208129521459341e-003</threshold>
-            <left_val>0.0451353900134563</left_val>
-            <right_val>-0.1686334013938904</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 3 3 -1.</_>
-                <_>
-                  4 3 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0254353806376457</threshold>
-            <left_val>0.2748624980449677</left_val>
-            <right_val>-0.0250210706144571</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 3 1 -1.</_>
-                <_>
-                  14 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.7569217905402184e-003</threshold>
-            <left_val>-0.3510535955429077</left_val>
-            <right_val>6.7487931810319424e-003</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 11 2 2 -1.</_>
-                <_>
-                  2 11 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.8798119425773621e-003</threshold>
-            <left_val>-0.2365276068449020</left_val>
-            <right_val>0.0292028002440929</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 11 16 2 -1.</_>
-                <_>
-                  2 12 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7566860187798738e-003</threshold>
-            <left_val>-0.0990074127912521</left_val>
-            <right_val>0.0523698702454567</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 6 6 3 -1.</_>
-                <_>
-                  10 8 2 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0742733180522919</threshold>
-            <left_val>-0.2623257040977478</left_val>
-            <right_val>0.0324768982827663</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 16 3 -1.</_>
-                <_>
-                  2 13 16 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0311077497899532</threshold>
-            <left_val>-0.0317390114068985</left_val>
-            <right_val>0.1974492967128754</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 18 4 -1.</_>
-                <_>
-                  0 10 9 2 2.</_>
-                <_>
-                  9 12 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0637038722634315</threshold>
-            <left_val>0.0268714595586061</left_val>
-            <right_val>-0.2767395079135895</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 12 9 2 -1.</_>
-                <_>
-                  9 12 3 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0475392416119576</threshold>
-            <left_val>-0.4051026105880737</left_val>
-            <right_val>0.0122220404446125</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 1 3 -1.</_>
-                <_>
-                  4 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.5632580984383821e-003</threshold>
-            <left_val>-0.1999291926622391</left_val>
-            <right_val>0.0335399098694324</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 9 6 -1.</_>
-                <_>
-                  8 3 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0265275891870260</threshold>
-            <left_val>-0.1629005968570709</left_val>
-            <right_val>0.0278331693261862</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 12 9 -1.</_>
-                <_>
-                  6 3 6 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2804817855358124</threshold>
-            <left_val>0.0288105905056000</left_val>
-            <right_val>-0.2271182984113693</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 4 12 6 -1.</_>
-                <_>
-                  7 6 4 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.4559194147586823</threshold>
-            <left_val>-0.0227571800351143</left_val>
-            <right_val>0.3102968931198120</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 8 3 -1.</_>
-                <_>
-                  10 2 4 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0867485329508781</threshold>
-            <left_val>0.0726863965392113</left_val>
-            <right_val>-0.1027626991271973</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 1 1 2 -1.</_>
-                <_>
-                  11 1 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>1.6994470497593284e-003</threshold>
-            <left_val>-0.0318094082176685</left_val>
-            <right_val>0.0871460884809494</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 2 1 -1.</_>
-                <_>
-                  7 1 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-1.1253879638388753e-003</threshold>
-            <left_val>0.0680664330720901</left_val>
-            <right_val>-0.1239006966352463</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 1 4 3 -1.</_>
-                <_>
-                  12 2 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0508721508085728</threshold>
-            <left_val>-8.7517164647579193e-003</left_val>
-            <right_val>0.3118421137332916</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 12 11 -1.</_>
-                <_>
-                  5 0 4 11 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1996172964572907</threshold>
-            <left_val>-0.0309105496853590</left_val>
-            <right_val>0.2165288031101227</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 1 4 3 -1.</_>
-                <_>
-                  12 2 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0638386905193329</threshold>
-            <left_val>-0.6026582717895508</left_val>
-            <right_val>1.3233360368758440e-003</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 1 3 4 -1.</_>
-                <_>
-                  6 2 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.3007958233356476e-003</threshold>
-            <left_val>-0.0520633496344090</left_val>
-            <right_val>0.1260793954133987</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 2 1 -1.</_>
-                <_>
-                  9 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.6697470135986805e-003</threshold>
-            <left_val>9.0780286118388176e-003</left_val>
-            <right_val>-0.1944532990455627</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 13 10 2 -1.</_>
-                <_>
-                  0 13 5 1 2.</_>
-                <_>
-                  5 14 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4293550048023462e-003</threshold>
-            <left_val>-0.0857814326882362</left_val>
-            <right_val>0.0712894573807716</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 12 4 3 -1.</_>
-                <_>
-                  13 12 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0138120101764798</threshold>
-            <left_val>8.0618355423212051e-003</left_val>
-            <right_val>-0.3879789113998413</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 6 1 2 -1.</_>
-                <_>
-                  3 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3739310563541949e-005</threshold>
-            <left_val>-0.0624911710619926</left_val>
-            <right_val>0.1092092990875244</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 4 2 -1.</_>
-                <_>
-                  7 8 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.9398381486535072e-003</threshold>
-            <left_val>0.0509323291480541</left_val>
-            <right_val>-0.1498032063245773</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 18 4 -1.</_>
-                <_>
-                  0 12 18 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1235888004302979</threshold>
-            <left_val>0.3147651851177216</left_val>
-            <right_val>-0.0257598794996738</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 12 4 3 -1.</_>
-                <_>
-                  13 12 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0109574301168323</threshold>
-            <left_val>-0.2607482075691223</left_val>
-            <right_val>0.0158497299998999</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 10 4 2 -1.</_>
-                <_>
-                  5 10 2 1 2.</_>
-                <_>
-                  7 11 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.6301600784063339e-003</threshold>
-            <left_val>0.2610065937042236</left_val>
-            <right_val>-0.0243298895657063</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 1 2 8 -1.</_>
-                <_>
-                  13 5 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0678390711545944</threshold>
-            <left_val>0.1969130933284760</left_val>
-            <right_val>-8.3496840670704842e-003</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 2 8 -1.</_>
-                <_>
-                  3 5 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0186073090881109</threshold>
-            <left_val>0.0256039593368769</left_val>
-            <right_val>-0.2541362941265106</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 12 4 3 -1.</_>
-                <_>
-                  13 12 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.8711939345812425e-005</threshold>
-            <left_val>0.0356258116662502</left_val>
-            <right_val>-0.0410842113196850</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 1 2 -1.</_>
-                <_>
-                  9 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.3914608694612980e-005</threshold>
-            <left_val>-0.1306141018867493</left_val>
-            <right_val>0.0493933893740177</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 4 4 -1.</_>
-                <_>
-                  8 0 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0177341904491186</threshold>
-            <left_val>-0.0342735201120377</left_val>
-            <right_val>0.1212686002254486</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 4 3 -1.</_>
-                <_>
-                  3 12 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.8113701418042183e-003</threshold>
-            <left_val>0.0226712208241224</left_val>
-            <right_val>-0.2659026980400085</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 5 1 6 -1.</_>
-                <_>
-                  7 7 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0454825609922409</threshold>
-            <left_val>-6.1395200900733471e-003</left_val>
-            <right_val>0.4723165929317474</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 4 -1.</_>
-                <_>
-                  8 2 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.0767141878604889e-003</threshold>
-            <left_val>-0.3165093064308167</left_val>
-            <right_val>0.0200363900512457</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 9 2 2 -1.</_>
-                <_>
-                  11 9 1 1 2.</_>
-                <_>
-                  10 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.3222210630774498e-004</threshold>
-            <left_val>-0.0228806100785732</left_val>
-            <right_val>0.0647242665290833</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 9 2 2 -1.</_>
-                <_>
-                  6 9 1 1 2.</_>
-                <_>
-                  7 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.2817400060594082e-003</threshold>
-            <left_val>0.2516623139381409</left_val>
-            <right_val>-0.0231686402112246</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 6 12 4 -1.</_>
-                <_>
-                  9 6 6 2 2.</_>
-                <_>
-                  3 8 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0461158901453018</threshold>
-            <left_val>-0.3592045903205872</left_val>
-            <right_val>0.0159878805279732</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 1 2 2 -1.</_>
-                <_>
-                  7 1 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0105268899351358</threshold>
-            <left_val>9.6597811207175255e-003</left_val>
-            <right_val>-0.5830839872360230</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 7 1 6 -1.</_>
-                <_>
-                  17 9 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0218886006623507</threshold>
-            <left_val>2.8070888947695494e-003</left_val>
-            <right_val>-0.2902213037014008</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 8 2 2 -1.</_>
-                <_>
-                  6 8 1 1 2.</_>
-                <_>
-                  7 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.7969578988850117e-003</threshold>
-            <left_val>0.2682308852672577</left_val>
-            <right_val>-0.0220357701182365</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 6 6 3 -1.</_>
-                <_>
-                  9 7 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0291505903005600</threshold>
-            <left_val>0.0370618589222431</left_val>
-            <right_val>-0.0972430408000946</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 17 6 -1.</_>
-                <_>
-                  0 6 17 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0796693712472916</threshold>
-            <left_val>-0.0613007396459579</left_val>
-            <right_val>0.1079474985599518</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 6 16 3 -1.</_>
-                <_>
-                  1 7 16 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0276291705667973</threshold>
-            <left_val>0.2252894937992096</left_val>
-            <right_val>-0.0325724296271801</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 12 1 -1.</_>
-                <_>
-                  3 0 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0120179802179337</threshold>
-            <left_val>0.1010048985481262</left_val>
-            <right_val>-0.0664613619446754</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 5 3 4 -1.</_>
-                <_>
-                  12 6 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0119251403957605</threshold>
-            <left_val>-0.1859060972929001</left_val>
-            <right_val>0.0324855595827103</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 1 8 4 -1.</_>
-                <_>
-                  7 1 4 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.2512350976467133</threshold>
-            <left_val>-0.0248921401798725</left_val>
-            <right_val>0.2803005874156952</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 16 1 -1.</_>
-                <_>
-                  6 0 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.9036600179970264e-003</threshold>
-            <left_val>-0.0628988519310951</left_val>
-            <right_val>0.0317778214812279</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 5 6 1 -1.</_>
-                <_>
-                  11 7 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0535753183066845</threshold>
-            <left_val>-0.0124396402388811</left_val>
-            <right_val>0.4609141051769257</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 6 6 8 -1.</_>
-                <_>
-                  13 6 2 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.4652660191059113e-003</threshold>
-            <left_val>0.0841030478477478</left_val>
-            <right_val>-0.1130022034049034</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 8 7 -1.</_>
-                <_>
-                  11 2 4 7 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1846922039985657</threshold>
-            <left_val>0.0215761400759220</left_val>
-            <right_val>-0.2691057026386261</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 6 6 8 -1.</_>
-                <_>
-                  13 6 2 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1181607022881508</threshold>
-            <left_val>-0.4720633924007416</left_val>
-            <right_val>9.0096276253461838e-003</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 5 4 3 -1.</_>
-                <_>
-                  6 6 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.6900841223541647e-005</threshold>
-            <left_val>-0.0588331595063210</left_val>
-            <right_val>0.0994533821940422</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 6 6 8 -1.</_>
-                <_>
-                  13 6 2 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1633061021566391</threshold>
-            <left_val>-0.6099013090133667</left_val>
-            <right_val>1.3118899660184979e-003</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 6 6 8 -1.</_>
-                <_>
-                  3 6 2 8 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0965555906295776</threshold>
-            <left_val>-0.5272396206855774</left_val>
-            <right_val>0.0116685898974538</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 2 6 6 -1.</_>
-                <_>
-                  6 5 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0401624515652657</threshold>
-            <left_val>-0.0327838994562626</left_val>
-            <right_val>0.1810777038335800</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 4 6 4 -1.</_>
-                <_>
-                  6 6 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0296869408339262</threshold>
-            <left_val>0.1054842993617058</left_val>
-            <right_val>-0.0615133084356785</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 8 1 2 -1.</_>
-                <_>
-                  17 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.5436946644913405e-005</threshold>
-            <left_val>-0.0359807685017586</left_val>
-            <right_val>0.0499344505369663</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 1 2 -1.</_>
-                <_>
-                  0 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0552529022097588e-003</threshold>
-            <left_val>0.0275182090699673</left_val>
-            <right_val>-0.2457398027181625</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 8 2 4 -1.</_>
-                <_>
-                  16 9 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3879110813140869e-005</threshold>
-            <left_val>-0.0258090496063232</left_val>
-            <right_val>0.0299507193267345</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 2 4 -1.</_>
-                <_>
-                  0 9 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.0713717937469482e-003</threshold>
-            <left_val>-0.2063910961151123</left_val>
-            <right_val>0.0320026017725468</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 4 17 2 -1.</_>
-                <_>
-                  1 5 17 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.8216218128800392e-003</threshold>
-            <left_val>-0.0975668132305145</left_val>
-            <right_val>0.0551092401146889</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 4 -1.</_>
-                <_>
-                  0 0 9 2 2.</_>
-                <_>
-                  9 2 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0652106925845146</threshold>
-            <left_val>6.3420450314879417e-003</left_val>
-            <right_val>-0.7882834076881409</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 9 4 2 -1.</_>
-                <_>
-                  13 10 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0158219691365957</threshold>
-            <left_val>-0.0214756801724434</left_val>
-            <right_val>0.1222712993621826</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 9 2 4 -1.</_>
-                <_>
-                  5 10 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0300759393721819</threshold>
-            <left_val>0.3701142966747284</left_val>
-            <right_val>-0.0154766896739602</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 8 1 2 -1.</_>
-                <_>
-                  9 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.5496598361060023e-004</threshold>
-            <left_val>0.0414319299161434</left_val>
-            <right_val>-0.1214471980929375</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 8 4 2 -1.</_>
-                <_>
-                  7 9 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0247548408806324</threshold>
-            <left_val>-0.3526229858398438</left_val>
-            <right_val>0.0153448497876525</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 3 1 3 -1.</_>
-                <_>
-                  16 4 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-8.7477359920740128e-003</threshold>
-            <left_val>0.1915535926818848</left_val>
-            <right_val>-0.0225379504263401</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 9 2 3 -1.</_>
-                <_>
-                  4 10 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.5500800004228950e-004</threshold>
-            <left_val>-0.0846040025353432</left_val>
-            <right_val>0.0653416514396667</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 3 16 6 -1.</_>
-                <_>
-                  1 5 16 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0578844510018826</threshold>
-            <left_val>0.2597366869449616</left_val>
-            <right_val>-0.0210837107151747</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 1 2 -1.</_>
-                <_>
-                  2 12 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.7522350903600454e-003</threshold>
-            <left_val>0.0316149704158306</left_val>
-            <right_val>-0.1879500001668930</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 0 1 4 -1.</_>
-                <_>
-                  17 1 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0266280625946820e-004</threshold>
-            <left_val>-0.0488242693245411</left_val>
-            <right_val>0.0477622412145138</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 5 4 2 -1.</_>
-                <_>
-                  6 5 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0179599896073341</threshold>
-            <left_val>-0.1835830062627792</left_val>
-            <right_val>0.0270573794841766</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 13 18 2 -1.</_>
-                <_>
-                  0 14 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0512004382908344</threshold>
-            <left_val>0.2723462879657745</left_val>
-            <right_val>-0.0199546292424202</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 4 6 3 -1.</_>
-                <_>
-                  7 5 6 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-7.3698651976883411e-003</threshold>
-            <left_val>-0.1229937970638275</left_val>
-            <right_val>0.0452794395387173</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 2 1 -1.</_>
-                <_>
-                  9 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.1579107791185379e-004</threshold>
-            <left_val>0.0460813082754612</left_val>
-            <right_val>-0.0212064106017351</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 4 2 1 -1.</_>
-                <_>
-                  8 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.7019751188345253e-005</threshold>
-            <left_val>-0.1122386977076531</left_val>
-            <right_val>0.0467198304831982</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 6 10 -1.</_>
-                <_>
-                  10 0 2 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0337534099817276</threshold>
-            <left_val>-0.0296947807073593</left_val>
-            <right_val>0.0309586394578218</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 6 10 -1.</_>
-                <_>
-                  6 0 2 10 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0288798399269581</threshold>
-            <left_val>-0.0476091802120209</left_val>
-            <right_val>0.1637064069509506</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 6 6 -1.</_>
-                <_>
-                  10 5 2 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1380393058061600</threshold>
-            <left_val>-0.7450910210609436</left_val>
-            <right_val>2.3958049714565277e-003</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 3 6 6 -1.</_>
-                <_>
-                  6 5 2 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0903065428137779</threshold>
-            <left_val>0.0284100994467735</left_val>
-            <right_val>-0.2060600072145462</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 5 4 6 -1.</_>
-                <_>
-                  9 5 2 6 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1313064992427826</threshold>
-            <left_val>5.8837989345192909e-003</left_val>
-            <right_val>-0.2589462995529175</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 5 6 4 -1.</_>
-                <_>
-                  9 5 6 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1362369954586029</threshold>
-            <left_val>0.0184906795620918</left_val>
-            <right_val>-0.2909663021564484</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 3 4 1 -1.</_>
-                <_>
-                  15 3 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1483960552141070e-003</threshold>
-            <left_val>-0.0253341905772686</left_val>
-            <right_val>0.0819629207253456</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 4 1 -1.</_>
-                <_>
-                  1 3 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.0390116889029741e-005</threshold>
-            <left_val>-0.0650801733136177</left_val>
-            <right_val>0.0823377668857574</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 3 1 -1.</_>
-                <_>
-                  16 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.8111059479415417e-003</threshold>
-            <left_val>-0.2012600004673004</left_val>
-            <right_val>0.0141831701621413</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 3 2 -1.</_>
-                <_>
-                  3 2 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0121500901877880</threshold>
-            <left_val>0.2102168947458267</left_val>
-            <right_val>-0.0297118108719587</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 3 1 -1.</_>
-                <_>
-                  16 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.3220389634370804e-003</threshold>
-            <left_val>0.0221526604145765</left_val>
-            <right_val>-0.1970590054988861</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 1 3 -1.</_>
-                <_>
-                  2 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.6673179604113102e-003</threshold>
-            <left_val>0.0223421193659306</left_val>
-            <right_val>-0.2634218931198120</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 0 1 4 -1.</_>
-                <_>
-                  17 1 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.3583960244432092e-003</threshold>
-            <left_val>0.0737654492259026</left_val>
-            <right_val>-0.0178339798003435</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 2 3 -1.</_>
-                <_>
-                  2 1 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.0764158368110657e-003</threshold>
-            <left_val>-0.1749037057161331</left_val>
-            <right_val>0.0299977697432041</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 5 3 1 -1.</_>
-                <_>
-                  15 5 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.9497750326991081e-003</threshold>
-            <left_val>-0.0271147508174181</left_val>
-            <right_val>0.1616608947515488</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 5 3 1 -1.</_>
-                <_>
-                  2 5 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5937429163604975e-003</threshold>
-            <left_val>0.1807800978422165</left_val>
-            <right_val>-0.0271914806216955</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 13 16 2 -1.</_>
-                <_>
-                  5 13 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0217158906161785</threshold>
-            <left_val>0.0960418581962585</left_val>
-            <right_val>-0.0522431582212448</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- 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>-2.5649809686001390e-005</threshold>
-            <left_val>0.0830500423908234</left_val>
-            <right_val>-0.0617705583572388</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 3 2 2 -1.</_>
-                <_>
-                  15 3 1 1 2.</_>
-                <_>
-                  14 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.8641996737569571e-004</threshold>
-            <left_val>-0.0246842093765736</left_val>
-            <right_val>0.0971914604306221</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- 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>2.3739310563541949e-005</threshold>
-            <left_val>-0.0695554167032242</left_val>
-            <right_val>0.0771528929471970</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 11 3 -1.</_>
-                <_>
-                  4 2 11 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0109101701527834</threshold>
-            <left_val>-0.2544479072093964</left_val>
-            <right_val>0.0161350406706333</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 3 1 2 -1.</_>
-                <_>
-                  7 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.6066219258354977e-005</threshold>
-            <left_val>-0.0764008387923241</left_val>
-            <right_val>0.0709967613220215</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 14 9 1 -1.</_>
-                <_>
-                  10 14 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0277181603014469</threshold>
-            <left_val>7.7127898111939430e-003</left_val>
-            <right_val>-0.3020167946815491</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 10 6 2 -1.</_>
-                <_>
-                  5 10 3 1 2.</_>
-                <_>
-                  8 11 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.3827071785926819e-003</threshold>
-            <left_val>-0.0343367606401443</left_val>
-            <right_val>0.1395512074232101</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 18 2 -1.</_>
-                <_>
-                  9 10 9 1 2.</_>
-                <_>
-                  0 11 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0375617109239101</threshold>
-            <left_val>-0.4568941891193390</left_val>
-            <right_val>0.0118549996986985</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 11 15 4 -1.</_>
-                <_>
-                  0 13 15 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0137532595545053</threshold>
-            <left_val>-0.0834474489092827</left_val>
-            <right_val>0.0594723001122475</right_val></_></_>
-        <_>
-          <!-- tree 135 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 16 3 -1.</_>
-                <_>
-                  2 13 16 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0275797992944717</threshold>
-            <left_val>0.2129182070493698</left_val>
-            <right_val>-0.0230544097721577</right_val></_></_>
-        <_>
-          <!-- tree 136 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 16 1 -1.</_>
-                <_>
-                  4 0 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0408227592706680</threshold>
-            <left_val>-0.5026323199272156</left_val>
-            <right_val>0.0106398798525333</right_val></_></_>
-        <_>
-          <!-- tree 137 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 5 12 5 -1.</_>
-                <_>
-                  9 5 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1474343985319138</threshold>
-            <left_val>7.7440468594431877e-003</left_val>
-            <right_val>-0.1845449060201645</right_val></_></_>
-        <_>
-          <!-- tree 138 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 12 5 -1.</_>
-                <_>
-                  3 5 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1937156021595001</threshold>
-            <left_val>0.4649069905281067</left_val>
-            <right_val>-0.0140745798125863</right_val></_></_>
-        <_>
-          <!-- tree 139 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 11 9 3 -1.</_>
-                <_>
-                  11 12 3 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0414674803614616</threshold>
-            <left_val>-0.1333149969577789</left_val>
-            <right_val>0.0317224115133286</right_val></_></_>
-        <_>
-          <!-- tree 140 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 2 -1.</_>
-                <_>
-                  7 1 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1617549937218428e-003</threshold>
-            <left_val>0.0348884016275406</left_val>
-            <right_val>-0.1198396012187004</right_val></_></_>
-        <_>
-          <!-- tree 141 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 2 -1.</_>
-                <_>
-                  7 1 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.8305849991738796e-003</threshold>
-            <left_val>-0.2148375064134598</left_val>
-            <right_val>0.0255391206592321</right_val></_></_>
-        <_>
-          <!-- tree 142 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 1 4 3 -1.</_>
-                <_>
-                  7 1 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0108386399224401</threshold>
-            <left_val>0.3380304872989655</left_val>
-            <right_val>-0.0135911796241999</right_val></_></_>
-        <_>
-          <!-- tree 143 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 4 1 -1.</_>
-                <_>
-                  10 0 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1821239497512579e-003</threshold>
-            <left_val>-0.0311352293938398</left_val>
-            <right_val>0.0836798921227455</right_val></_></_>
-        <_>
-          <!-- tree 144 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 7 2 -1.</_>
-                <_>
-                  3 0 7 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.8489680415950716e-005</threshold>
-            <left_val>-0.1545356065034866</left_val>
-            <right_val>0.0330539792776108</right_val></_></_>
-        <_>
-          <!-- tree 145 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 5 12 4 -1.</_>
-                <_>
-                  3 7 12 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.2545121870934963e-003</threshold>
-            <left_val>-0.0294149704277515</left_val>
-            <right_val>0.1650622040033341</right_val></_></_>
-        <_>
-          <!-- tree 146 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 3 1 -1.</_>
-                <_>
-                  9 8 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.5199748389422894e-003</threshold>
-            <left_val>0.0233634002506733</left_val>
-            <right_val>-0.2177156955003738</right_val></_></_>
-        <_>
-          <!-- tree 147 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 11 8 4 -1.</_>
-                <_>
-                  7 11 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0451239906251431</threshold>
-            <left_val>-0.3253602981567383</left_val>
-            <right_val>0.0132816601544619</right_val></_></_>
-        <_>
-          <!-- tree 148 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 14 6 1 -1.</_>
-                <_>
-                  8 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.0451450254768133e-003</threshold>
-            <left_val>0.0958046466112137</left_val>
-            <right_val>-0.0509931109845638</right_val></_></_>
-        <_>
-          <!-- tree 149 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 13 4 1 -1.</_>
-                <_>
-                  8 13 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9070109594613314e-003</threshold>
-            <left_val>-0.0276902206242085</left_val>
-            <right_val>0.1959555000066757</right_val></_></_>
-        <_>
-          <!-- tree 150 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 8 2 -1.</_>
-                <_>
-                  4 12 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0255583897233009</threshold>
-            <left_val>-0.2762543857097626</left_val>
-            <right_val>0.0211479291319847</right_val></_></_>
-        <_>
-          <!-- tree 151 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 10 3 2 -1.</_>
-                <_>
-                  16 11 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.6447090785950422e-003</threshold>
-            <left_val>-0.0326275005936623</left_val>
-            <right_val>0.0412402711808681</right_val></_></_>
-        <_>
-          <!-- tree 152 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 10 2 3 -1.</_>
-                <_>
-                  2 11 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.8334530725260265e-005</threshold>
-            <left_val>-0.0848775878548622</left_val>
-            <right_val>0.0558658987283707</right_val></_></_>
-        <_>
-          <!-- tree 153 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 12 2 2 -1.</_>
-                <_>
-                  17 12 1 1 2.</_>
-                <_>
-                  16 13 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.6109612816944718e-004</threshold>
-            <left_val>-0.0328278504312038</left_val>
-            <right_val>0.0740109831094742</right_val></_></_>
-        <_>
-          <!-- tree 154 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 18 4 -1.</_>
-                <_>
-                  0 12 18 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2091878950595856</threshold>
-            <left_val>0.0100189801305532</left_val>
-            <right_val>-0.4741156101226807</right_val></_></_>
-        <_>
-          <!-- tree 155 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 12 2 2 -1.</_>
-                <_>
-                  17 12 1 1 2.</_>
-                <_>
-                  16 13 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.0340400523273274e-005</threshold>
-            <left_val>0.0483234487473965</left_val>
-            <right_val>-0.0327794998884201</right_val></_></_>
-        <_>
-          <!-- tree 156 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 1 4 -1.</_>
-                <_>
-                  0 1 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.6149746999144554e-005</threshold>
-            <left_val>-0.0749692469835281</left_val>
-            <right_val>0.0619521290063858</right_val></_></_>
-        <_>
-          <!-- tree 157 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 1 2 4 -1.</_>
-                <_>
-                  16 1 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.1479000831022859e-004</threshold>
-            <left_val>-0.0949240326881409</left_val>
-            <right_val>0.0353007800877094</right_val></_></_>
-        <_>
-          <!-- tree 158 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 4 2 -1.</_>
-                <_>
-                  2 1 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.3261340148746967e-003</threshold>
-            <left_val>0.0385022200644016</left_val>
-            <right_val>-0.1484065949916840</right_val></_></_>
-        <_>
-          <!-- tree 159 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 4 3 -1.</_>
-                <_>
-                  13 1 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0244394596666098</threshold>
-            <left_val>-0.0134110199287534</left_val>
-            <right_val>0.1884368062019348</right_val></_></_>
-        <_>
-          <!-- tree 160 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 3 4 -1.</_>
-                <_>
-                  5 1 1 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.1021420620381832e-003</threshold>
-            <left_val>-0.0499801896512508</left_val>
-            <right_val>0.1074775010347366</right_val></_></_>
-        <_>
-          <!-- tree 161 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 2 2 2 -1.</_>
-                <_>
-                  17 2 1 1 2.</_>
-                <_>
-                  16 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2003119811415672e-003</threshold>
-            <left_val>0.1520256996154785</left_val>
-            <right_val>-0.0104131698608398</right_val></_></_>
-        <_>
-          <!-- tree 162 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 2 2 -1.</_>
-                <_>
-                  0 2 1 1 2.</_>
-                <_>
-                  1 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3748419051989913e-005</threshold>
-            <left_val>0.0831847265362740</left_val>
-            <right_val>-0.0730274766683578</right_val></_></_>
-        <_>
-          <!-- tree 163 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 5 6 1 -1.</_>
-                <_>
-                  12 5 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0169174205511808</threshold>
-            <left_val>0.0226879809051752</left_val>
-            <right_val>-0.1706082969903946</right_val></_></_>
-        <_>
-          <!-- tree 164 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 6 1 -1.</_>
-                <_>
-                  3 5 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3382799699902534e-003</threshold>
-            <left_val>-0.0599084608256817</left_val>
-            <right_val>0.0865803733468056</right_val></_></_>
-        <_>
-          <!-- tree 165 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 3 8 2 -1.</_>
-                <_>
-                  9 3 4 1 2.</_>
-                <_>
-                  5 4 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.5319819580763578e-003</threshold>
-            <left_val>0.0330129303038120</left_val>
-            <right_val>-0.1592663973569870</right_val></_></_>
-        <_>
-          <!-- tree 166 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 2 8 -1.</_>
-                <_>
-                  8 0 1 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.2293795421719551e-003</threshold>
-            <left_val>-0.0760265216231346</left_val>
-            <right_val>0.0753199979662895</right_val></_></_>
-        <_>
-          <!-- tree 167 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 2 3 -1.</_>
-                <_>
-                  9 2 1 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0413003005087376</threshold>
-            <left_val>-0.6109560728073120</left_val>
-            <right_val>2.1895230747759342e-003</right_val></_></_>
-        <_>
-          <!-- tree 168 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 3 2 -1.</_>
-                <_>
-                  9 2 3 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.3179420754313469e-003</threshold>
-            <left_val>0.1440498977899551</left_val>
-            <right_val>-0.0388708002865314</right_val></_></_>
-        <_>
-          <!-- tree 169 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 12 2 2 -1.</_>
-                <_>
-                  17 12 1 1 2.</_>
-                <_>
-                  16 13 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.7153229388641194e-005</threshold>
-            <left_val>-0.0498175993561745</left_val>
-            <right_val>0.0487685203552246</right_val></_></_>
-        <_>
-          <!-- tree 170 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 12 2 2 -1.</_>
-                <_>
-                  0 12 1 1 2.</_>
-                <_>
-                  1 13 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.9003963037393987e-005</threshold>
-            <left_val>-0.0683221071958542</left_val>
-            <right_val>0.0680771768093109</right_val></_></_>
-        <_>
-          <!-- tree 171 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 12 2 2 -1.</_>
-                <_>
-                  17 12 1 1 2.</_>
-                <_>
-                  16 13 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.0340400523273274e-005</threshold>
-            <left_val>0.0513286590576172</left_val>
-            <right_val>-0.0355508588254452</right_val></_></_>
-        <_>
-          <!-- tree 172 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 12 2 2 -1.</_>
-                <_>
-                  0 12 1 1 2.</_>
-                <_>
-                  1 13 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1807070121867582e-005</threshold>
-            <left_val>0.0842122733592987</left_val>
-            <right_val>-0.0549248084425926</right_val></_></_>
-        <_>
-          <!-- tree 173 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 13 8 2 -1.</_>
-                <_>
-                  8 13 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0472138598561287</threshold>
-            <left_val>2.3352450225502253e-003</left_val>
-            <right_val>-0.3441792130470276</right_val></_></_>
-        <_>
-          <!-- tree 174 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 2 -1.</_>
-                <_>
-                  5 0 4 1 2.</_>
-                <_>
-                  9 1 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.0626591071486473e-003</threshold>
-            <left_val>-0.1841911971569061</left_val>
-            <right_val>0.0257207695394754</right_val></_></_>
-        <_>
-          <!-- tree 175 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 8 1 4 -1.</_>
-                <_>
-                  13 8 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0227853395044804</threshold>
-            <left_val>-0.1396211981773377</left_val>
-            <right_val>0.0121513595804572</right_val></_></_>
-        <_>
-          <!-- tree 176 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 16 6 -1.</_>
-                <_>
-                  0 7 16 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0758542269468308</threshold>
-            <left_val>0.1125688031315804</left_val>
-            <right_val>-0.0392036698758602</right_val></_></_>
-        <_>
-          <!-- tree 177 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 5 1 6 -1.</_>
-                <_>
-                  12 7 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.5154039077460766e-003</threshold>
-            <left_val>-0.0197846591472626</left_val>
-            <right_val>0.0587355606257916</right_val></_></_>
-        <_>
-          <!-- tree 178 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 5 1 6 -1.</_>
-                <_>
-                  5 7 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1700478866696358e-003</threshold>
-            <left_val>-0.0542454309761524</left_val>
-            <right_val>0.0902648568153381</right_val></_></_>
-        <_>
-          <!-- tree 179 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 8 6 4 -1.</_>
-                <_>
-                  15 8 3 2 2.</_>
-                <_>
-                  12 10 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2852489966899157e-003</threshold>
-            <left_val>-0.0545393712818623</left_val>
-            <right_val>0.0909095332026482</right_val></_></_>
-        <_>
-          <!-- tree 180 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 18 4 -1.</_>
-                <_>
-                  0 5 9 2 2.</_>
-                <_>
-                  9 7 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0938187167048454</threshold>
-            <left_val>-0.4816806912422180</left_val>
-            <right_val>9.7587006166577339e-003</right_val></_></_>
-        <_>
-          <!-- tree 181 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 3 2 2 -1.</_>
-                <_>
-                  11 3 1 1 2.</_>
-                <_>
-                  10 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3132712966762483e-005</threshold>
-            <left_val>0.0410898402333260</left_val>
-            <right_val>-0.0365439392626286</right_val></_></_>
-        <_>
-          <!-- tree 182 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 10 6 3 -1.</_>
-                <_>
-                  4 11 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0198575109243393</threshold>
-            <left_val>-0.1172147020697594</left_val>
-            <right_val>0.0405645594000816</right_val></_></_>
-        <_>
-          <!-- tree 183 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 5 1 3 -1.</_>
-                <_>
-                  17 6 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.7911748774349689e-003</threshold>
-            <left_val>6.4080609008669853e-003</left_val>
-            <right_val>-0.3227761089801788</right_val></_></_>
-        <_>
-          <!-- tree 184 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 3 8 -1.</_>
-                <_>
-                  8 3 3 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0894692763686180</threshold>
-            <left_val>-0.3574151098728180</left_val>
-            <right_val>0.0124983703717589</right_val></_></_>
-        <_>
-          <!-- tree 185 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 4 1 -1.</_>
-                <_>
-                  13 8 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.4639841914176941e-003</threshold>
-            <left_val>-0.0199772007763386</left_val>
-            <right_val>0.1834387928247452</right_val></_></_>
-        <_>
-          <!-- tree 186 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 3 9 12 -1.</_>
-                <_>
-                  4 7 3 4 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3588905930519104</threshold>
-            <left_val>0.0110323298722506</left_val>
-            <right_val>-0.5567330121994019</right_val></_></_>
-        <_>
-          <!-- tree 187 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 4 1 -1.</_>
-                <_>
-                  13 8 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0288398806005716</threshold>
-            <left_val>0.1999306976795197</left_val>
-            <right_val>-8.9885722845792770e-003</right_val></_></_>
-        <_>
-          <!-- tree 188 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 1 4 -1.</_>
-                <_>
-                  5 8 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>1.3966220431029797e-003</threshold>
-            <left_val>-0.0439058393239975</left_val>
-            <right_val>0.1105595976114273</right_val></_></_>
-        <_>
-          <!-- tree 189 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 5 1 3 -1.</_>
-                <_>
-                  17 6 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.6227077990770340e-003</threshold>
-            <left_val>-0.4303059875965118</left_val>
-            <right_val>4.9329511821269989e-003</right_val></_></_>
-        <_>
-          <!-- tree 190 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 1 3 -1.</_>
-                <_>
-                  0 6 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.1372596323490143e-003</threshold>
-            <left_val>6.1173681169748306e-003</left_val>
-            <right_val>-0.7087032198905945</right_val></_></_>
-        <_>
-          <!-- tree 191 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 1 1 3 -1.</_>
-                <_>
-                  13 2 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2080889872740954e-005</threshold>
-            <left_val>0.0546860583126545</left_val>
-            <right_val>-0.0489871315658093</right_val></_></_>
-        <_>
-          <!-- tree 192 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 3 2 2 -1.</_>
-                <_>
-                  6 3 1 1 2.</_>
-                <_>
-                  7 4 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.2907347455620766e-005</threshold>
-            <left_val>0.0777546167373657</left_val>
-            <right_val>-0.0597959607839584</right_val></_></_>
-        <_>
-          <!-- tree 193 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 13 8 2 -1.</_>
-                <_>
-                  8 13 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0226010698825121</threshold>
-            <left_val>-0.1179111003875732</left_val>
-            <right_val>7.3637152090668678e-003</right_val></_></_>
-        <_>
-          <!-- tree 194 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 5 4 3 -1.</_>
-                <_>
-                  6 6 2 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.6634320169687271e-003</threshold>
-            <left_val>0.0752310603857040</left_val>
-            <right_val>-0.0575729906558990</right_val></_></_>
-        <_>
-          <!-- tree 195 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 9 6 2 -1.</_>
-                <_>
-                  6 10 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.7270618379116058e-003</threshold>
-            <left_val>0.0710658580064774</left_val>
-            <right_val>-0.0859678834676743</right_val></_></_>
-        <_>
-          <!-- tree 196 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 11 -1.</_>
-                <_>
-                  6 0 6 11 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.7271161079406738</threshold>
-            <left_val>0.0102728903293610</left_val>
-            <right_val>-0.4684585928916931</right_val></_></_>
-        <_>
-          <!-- tree 197 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 3 2 4 -1.</_>
-                <_>
-                  17 3 1 2 2.</_>
-                <_>
-                  16 5 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.0634279828518629e-003</threshold>
-            <left_val>0.1082748025655747</left_val>
-            <right_val>-0.0231780707836151</right_val></_></_>
-        <_>
-          <!-- tree 198 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 3 6 6 -1.</_>
-                <_>
-                  5 3 3 3 2.</_>
-                <_>
-                  8 6 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0512203201651573</threshold>
-            <left_val>0.0100829303264618</left_val>
-            <right_val>-0.4622367024421692</right_val></_></_>
-        <_>
-          <!-- tree 199 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 2 8 6 -1.</_>
-                <_>
-                  7 2 4 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0233622491359711</threshold>
-            <left_val>0.2221122980117798</left_val>
-            <right_val>-0.0204992592334747</right_val></_></_>
-        <_>
-          <!-- tree 200 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 12 4 -1.</_>
-                <_>
-                  6 2 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0226982291787863</threshold>
-            <left_val>-0.1140964999794960</left_val>
-            <right_val>0.0413477197289467</right_val></_></_>
-        <_>
-          <!-- tree 201 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 3 2 4 -1.</_>
-                <_>
-                  17 3 1 2 2.</_>
-                <_>
-                  16 5 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2806419767439365e-003</threshold>
-            <left_val>-0.0227168798446655</left_val>
-            <right_val>0.1028605028986931</right_val></_></_>
-        <_>
-          <!-- tree 202 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 3 2 -1.</_>
-                <_>
-                  2 0 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.5968020092695951e-003</threshold>
-            <left_val>0.0211614202708006</left_val>
-            <right_val>-0.2068026065826416</right_val></_></_>
-        <_>
-          <!-- tree 203 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 3 2 4 -1.</_>
-                <_>
-                  17 3 1 2 2.</_>
-                <_>
-                  16 5 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0120496097952127</threshold>
-            <left_val>-0.2600671947002411</left_val>
-            <right_val>2.0481001120060682e-003</right_val></_></_>
-        <_>
-          <!-- tree 204 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 2 4 -1.</_>
-                <_>
-                  0 3 1 2 2.</_>
-                <_>
-                  1 5 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6617539115250111e-003</threshold>
-            <left_val>0.1557877063751221</left_val>
-            <right_val>-0.0324140116572380</right_val></_></_>
-        <_>
-          <!-- tree 205 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 3 4 1 -1.</_>
-                <_>
-                  15 4 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0147399995476007</threshold>
-            <left_val>-0.1630623042583466</left_val>
-            <right_val>7.1668480522930622e-003</right_val></_></_>
-        <_>
-          <!-- tree 206 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 5 6 6 -1.</_>
-                <_>
-                  5 5 3 3 2.</_>
-                <_>
-                  8 8 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0702147036790848</threshold>
-            <left_val>0.3676038086414337</left_val>
-            <right_val>-0.0122618498280644</right_val></_></_>
-        <_>
-          <!-- tree 207 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 2 10 -1.</_>
-                <_>
-                  8 8 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1149382963776588</threshold>
-            <left_val>-0.4100660979747772</left_val>
-            <right_val>0.0111378999426961</right_val></_></_>
-        <_>
-          <!-- tree 208 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 3 1 4 -1.</_>
-                <_>
-                  3 4 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0165353007614613</threshold>
-            <left_val>-0.4933117032051086</left_val>
-            <right_val>8.9259371161460876e-003</right_val></_></_>
-        <_>
-          <!-- tree 209 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 6 1 -1.</_>
-                <_>
-                  11 8 3 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0684577375650406</threshold>
-            <left_val>-0.6294438838958740</left_val>
-            <right_val>1.3810090022161603e-003</right_val></_></_>
-        <_>
-          <!-- tree 210 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 8 1 6 -1.</_>
-                <_>
-                  7 8 1 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>1.7950909677892923e-003</threshold>
-            <left_val>0.0439951792359352</left_val>
-            <right_val>-0.0981230884790421</right_val></_></_>
-        <_>
-          <!-- tree 211 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 13 12 1 -1.</_>
-                <_>
-                  6 13 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.2409765347838402e-003</threshold>
-            <left_val>-0.0319279804825783</left_val>
-            <right_val>0.0786244422197342</right_val></_></_>
-        <_>
-          <!-- tree 212 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 13 16 2 -1.</_>
-                <_>
-                  8 13 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0150848804041743</threshold>
-            <left_val>-0.0652311071753502</left_val>
-            <right_val>0.0835528671741486</right_val></_></_>
-        <_>
-          <!-- tree 213 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 9 4 4 -1.</_>
-                <_>
-                  10 11 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0147555302828550</threshold>
-            <left_val>0.0596954599022865</left_val>
-            <right_val>-0.0246289800852537</right_val></_></_>
-        <_>
-          <!-- tree 214 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 7 3 -1.</_>
-                <_>
-                  4 2 7 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0138705503195524</threshold>
-            <left_val>6.8354210816323757e-003</left_val>
-            <right_val>-0.6697801947593689</right_val></_></_>
-        <_>
-          <!-- tree 215 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 2 2 2 -1.</_>
-                <_>
-                  12 2 1 1 2.</_>
-                <_>
-                  11 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.4027196862734854e-005</threshold>
-            <left_val>-0.0388491488993168</left_val>
-            <right_val>0.0505469888448715</right_val></_></_>
-        <_>
-          <!-- tree 216 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 2 2 2 -1.</_>
-                <_>
-                  5 2 1 1 2.</_>
-                <_>
-                  6 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3879110813140869e-005</threshold>
-            <left_val>0.0776163190603256</left_val>
-            <right_val>-0.0570690892636776</right_val></_></_>
-        <_>
-          <!-- tree 217 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 13 8 2 -1.</_>
-                <_>
-                  8 13 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.7118638865649700e-003</threshold>
-            <left_val>0.0576838590204716</left_val>
-            <right_val>-0.0364302918314934</right_val></_></_>
-        <_>
-          <!-- tree 218 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 13 8 2 -1.</_>
-                <_>
-                  6 13 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0293781608343124</threshold>
-            <left_val>0.0116572398692369</left_val>
-            <right_val>-0.3750464916229248</right_val></_></_>
-        <_>
-          <!-- tree 219 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 3 12 9 -1.</_>
-                <_>
-                  8 6 4 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.7575286030769348</threshold>
-            <left_val>-0.0124912802129984</left_val>
-            <right_val>0.3014566004276276</right_val></_></_>
-        <_>
-          <!-- tree 220 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 6 4 -1.</_>
-                <_>
-                  9 2 2 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0284970905631781</threshold>
-            <left_val>-0.0739599689841270</left_val>
-            <right_val>0.0625938624143600</right_val></_></_>
-        <_>
-          <!-- tree 221 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 8 1 4 -1.</_>
-                <_>
-                  13 8 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0307283699512482</threshold>
-            <left_val>8.5481833666563034e-003</left_val>
-            <right_val>-0.2512742877006531</right_val></_></_>
-        <_>
-          <!-- tree 222 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 8 4 1 -1.</_>
-                <_>
-                  5 8 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0336146205663681</threshold>
-            <left_val>-0.0114417197182775</left_val>
-            <right_val>0.4936141073703766</right_val></_></_>
-        <_>
-          <!-- tree 223 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 12 5 -1.</_>
-                <_>
-                  7 1 6 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0226515103131533</threshold>
-            <left_val>0.2068635970354080</left_val>
-            <right_val>-9.4910562038421631e-003</right_val></_></_>
-        <_>
-          <!-- tree 224 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 4 1 -1.</_>
-                <_>
-                  6 0 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.5092899856390432e-005</threshold>
-            <left_val>0.0643607303500175</left_val>
-            <right_val>-0.0726891383528709</right_val></_></_>
-        <_>
-          <!-- tree 225 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 1 4 -1.</_>
-                <_>
-                  8 1 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.5959710627794266e-003</threshold>
-            <left_val>-0.1754118949174881</left_val>
-            <right_val>0.0161602105945349</right_val></_></_>
-        <_>
-          <!-- tree 226 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 2 2 -1.</_>
-                <_>
-                  4 2 1 1 2.</_>
-                <_>
-                  5 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.0941398260183632e-005</threshold>
-            <left_val>0.0750486701726913</left_val>
-            <right_val>-0.0528231002390385</right_val></_></_>
-        <_>
-          <!-- tree 227 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 2 2 2 -1.</_>
-                <_>
-                  13 2 1 1 2.</_>
-                <_>
-                  12 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.5904899302986450e-005</threshold>
-            <left_val>-0.0497396588325500</left_val>
-            <right_val>0.0585739016532898</right_val></_></_>
-        <_>
-          <!-- tree 228 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 2 2 -1.</_>
-                <_>
-                  4 2 1 1 2.</_>
-                <_>
-                  5 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0394570280332118e-005</threshold>
-            <left_val>-0.0618803091347218</left_val>
-            <right_val>0.0666748136281967</right_val></_></_>
-        <_>
-          <!-- tree 229 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 5 4 -1.</_>
-                <_>
-                  7 2 5 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0125536797568202</threshold>
-            <left_val>0.0249107405543327</left_val>
-            <right_val>-0.1277243942022324</right_val></_></_>
-        <_>
-          <!-- tree 230 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 1 6 -1.</_>
-                <_>
-                  9 3 1 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0580843500792980</threshold>
-            <left_val>-0.0178222507238388</left_val>
-            <right_val>0.2289890944957733</right_val></_></_>
-        <_>
-          <!-- tree 231 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 6 2 4 -1.</_>
-                <_>
-                  15 7 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.0750687047839165e-003</threshold>
-            <left_val>-0.0227536000311375</left_val>
-            <right_val>0.1436315029859543</right_val></_></_>
-        <_>
-          <!-- tree 232 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 18 2 -1.</_>
-                <_>
-                  0 6 9 1 2.</_>
-                <_>
-                  9 7 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0121633401140571</threshold>
-            <left_val>0.0267546195536852</left_val>
-            <right_val>-0.1825599968433380</right_val></_></_>
-        <_>
-          <!-- tree 233 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 6 2 2 -1.</_>
-                <_>
-                  14 6 1 1 2.</_>
-                <_>
-                  13 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5941649908199906e-003</threshold>
-            <left_val>0.0994387790560722</left_val>
-            <right_val>-0.0237834397703409</right_val></_></_>
-        <_>
-          <!-- tree 234 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 5 8 -1.</_>
-                <_>
-                  0 4 5 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1208584979176521</threshold>
-            <left_val>-0.5958552956581116</left_val>
-            <right_val>6.8441159091889858e-003</right_val></_></_>
-        <_>
-          <!-- tree 235 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 2 2 2 -1.</_>
-                <_>
-                  12 2 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.7481532245874405e-003</threshold>
-            <left_val>-0.0220798607915640</left_val>
-            <right_val>0.2665669023990631</right_val></_></_>
-        <_>
-          <!-- tree 236 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 10 2 -1.</_>
-                <_>
-                  8 0 10 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0161353591829538</threshold>
-            <left_val>0.0678508132696152</left_val>
-            <right_val>-0.0773861631751060</right_val></_></_>
-        <_>
-          <!-- tree 237 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 11 12 -1.</_>
-                <_>
-                  5 4 11 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2290714979171753</threshold>
-            <left_val>-0.0353788398206234</left_val>
-            <right_val>0.0487073697149754</right_val></_></_>
-        <_>
-          <!-- tree 238 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 11 12 -1.</_>
-                <_>
-                  2 4 11 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.5067147016525269</threshold>
-            <left_val>5.8341762050986290e-003</left_val>
-            <right_val>-0.6683058738708496</right_val></_></_>
-        <_>
-          <!-- tree 239 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 1 2 14 -1.</_>
-                <_>
-                  12 1 1 7 2.</_>
-                <_>
-                  11 8 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0358187593519688</threshold>
-            <left_val>-0.2682330906391144</left_val>
-            <right_val>1.7747150268405676e-003</right_val></_></_>
-        <_>
-          <!-- tree 240 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 1 2 14 -1.</_>
-                <_>
-                  5 1 1 7 2.</_>
-                <_>
-                  6 8 1 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0265013501048088</threshold>
-            <left_val>-0.3013739883899689</left_val>
-            <right_val>0.0139737101271749</right_val></_></_>
-        <_>
-          <!-- tree 241 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 2 1 -1.</_>
-                <_>
-                  11 8 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0247978400439024</threshold>
-            <left_val>2.4552580434828997e-003</left_val>
-            <right_val>-0.5952212214469910</right_val></_></_>
-        <_>
-          <!-- tree 242 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 6 2 2 -1.</_>
-                <_>
-                  3 6 1 1 2.</_>
-                <_>
-                  4 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6543349483981729e-003</threshold>
-            <left_val>-0.0251259692013264</left_val>
-            <right_val>0.1939691007137299</right_val></_></_>
-        <_>
-          <!-- tree 243 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 2 1 -1.</_>
-                <_>
-                  11 8 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.0274528115987778e-003</threshold>
-            <left_val>0.0204041302204132</left_val>
-            <right_val>-0.0531757883727551</right_val></_></_>
-        <_>
-          <!-- tree 244 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 18 4 -1.</_>
-                <_>
-                  0 8 9 2 2.</_>
-                <_>
-                  9 10 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0742075890302658</threshold>
-            <left_val>0.0124620702117682</left_val>
-            <right_val>-0.3335205912590027</right_val></_></_>
-        <_>
-          <!-- tree 245 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 2 1 -1.</_>
-                <_>
-                  14 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.3010969161987305e-003</threshold>
-            <left_val>-0.1495874971151352</left_val>
-            <right_val>0.0201095491647720</right_val></_></_>
-        <_>
-          <!-- tree 246 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 1 2 -1.</_>
-                <_>
-                  4 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>1.3790120137855411e-003</threshold>
-            <left_val>0.0333775207400322</left_val>
-            <right_val>-0.1239598989486694</right_val></_></_>
-        <_>
-          <!-- tree 247 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 15 14 -1.</_>
-                <_>
-                  8 0 5 14 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.8267709016799927</threshold>
-            <left_val>4.6560140326619148e-003</left_val>
-            <right_val>-0.7640576958656311</right_val></_></_>
-        <_>
-          <!-- tree 248 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 9 13 -1.</_>
-                <_>
-                  7 0 3 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2946146130561829</threshold>
-            <left_val>-0.0152309397235513</left_val>
-            <right_val>0.3104419112205505</right_val></_></_>
-        <_>
-          <!-- tree 249 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 5 4 9 -1.</_>
-                <_>
-                  7 5 2 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0746835619211197</threshold>
-            <left_val>8.8676074519753456e-003</left_val>
-            <right_val>-0.5228682756423950</right_val></_></_>
-        <_>
-          <!-- tree 250 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 4 4 -1.</_>
-                <_>
-                  9 1 2 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0880003422498703</threshold>
-            <left_val>-0.0119359400123358</left_val>
-            <right_val>0.4041942954063416</right_val></_></_>
-        <_>
-          <!-- tree 251 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 2 6 2 -1.</_>
-                <_>
-                  10 2 3 1 2.</_>
-                <_>
-                  7 3 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.3336159326136112e-003</threshold>
-            <left_val>0.0136402798816562</left_val>
-            <right_val>-0.2447970956563950</right_val></_></_>
-        <_>
-          <!-- tree 252 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 4 6 2 -1.</_>
-                <_>
-                  9 6 2 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0543241314589977</threshold>
-            <left_val>-0.3354822993278503</left_val>
-            <right_val>0.0117584997788072</right_val></_></_>
-        <_>
-          <!-- tree 253 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 3 2 -1.</_>
-                <_>
-                  12 9 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0325612500309944</threshold>
-            <left_val>1.3724969467148185e-003</left_val>
-            <right_val>-0.3325941860675812</right_val></_></_>
-        <_>
-          <!-- tree 254 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 8 2 3 -1.</_>
-                <_>
-                  6 9 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.8455069772899151e-003</threshold>
-            <left_val>-0.0363678596913815</left_val>
-            <right_val>0.1394127011299133</right_val></_></_>
-        <_>
-          <!-- tree 255 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 14 4 1 -1.</_>
-                <_>
-                  12 14 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.4578228890895844e-003</threshold>
-            <left_val>-0.1517935991287231</left_val>
-            <right_val>7.1280989795923233e-003</right_val></_></_>
-        <_>
-          <!-- tree 256 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 14 4 1 -1.</_>
-                <_>
-                  4 14 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5718130208551884e-003</threshold>
-            <left_val>0.0160512197762728</left_val>
-            <right_val>-0.2522624135017395</right_val></_></_>
-        <_>
-          <!-- tree 257 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 11 4 4 -1.</_>
-                <_>
-                  14 11 2 2 2.</_>
-                <_>
-                  12 13 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0234677102416754</threshold>
-            <left_val>6.1246878467500210e-003</left_val>
-            <right_val>-0.2341949939727783</right_val></_></_>
-        <_>
-          <!-- tree 258 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 12 1 3 -1.</_>
-                <_>
-                  6 13 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7358670011162758e-003</threshold>
-            <left_val>-0.0396148599684238</left_val>
-            <right_val>0.1216652020812035</right_val></_></_>
-        <_>
-          <!-- tree 259 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 13 1 2 -1.</_>
-                <_>
-                  11 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.0753577640280128e-004</threshold>
-            <left_val>-0.0265275705605745</left_val>
-            <right_val>0.0391027294099331</right_val></_></_>
-        <_>
-          <!-- tree 260 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 10 4 4 -1.</_>
-                <_>
-                  3 11 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.5824369192123413e-003</threshold>
-            <left_val>-0.1007393002510071</left_val>
-            <right_val>0.0372616909444332</right_val></_></_>
-        <_>
-          <!-- tree 261 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 13 1 2 -1.</_>
-                <_>
-                  11 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6079979725182056e-003</threshold>
-            <left_val>0.0740168169140816</left_val>
-            <right_val>-0.0109551800414920</right_val></_></_>
-        <_>
-          <!-- tree 262 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 13 1 2 -1.</_>
-                <_>
-                  6 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.9571033236570656e-005</threshold>
-            <left_val>-0.0852629169821739</left_val>
-            <right_val>0.0644899830222130</right_val></_></_>
-        <_>
-          <!-- tree 263 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 10 4 -1.</_>
-                <_>
-                  12 7 5 2 2.</_>
-                <_>
-                  7 9 5 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0819417685270309</threshold>
-            <left_val>2.0980359986424446e-003</left_val>
-            <right_val>-0.6184495091438294</right_val></_></_>
-        <_>
-          <!-- tree 264 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 7 10 4 -1.</_>
-                <_>
-                  1 7 5 2 2.</_>
-                <_>
-                  6 9 5 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0194270908832550</threshold>
-            <left_val>-0.0222837105393410</left_val>
-            <right_val>0.1991835981607437</right_val></_></_>
-        <_>
-          <!-- tree 265 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 18 4 -1.</_>
-                <_>
-                  6 4 6 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1507761031389237</threshold>
-            <left_val>-0.6439470052719116</left_val>
-            <right_val>7.0817708037793636e-003</right_val></_></_>
-        <_>
-          <!-- tree 266 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 11 4 4 -1.</_>
-                <_>
-                  2 11 2 2 2.</_>
-                <_>
-                  4 13 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5093310503289104e-003</threshold>
-            <left_val>-0.1065026968717575</left_val>
-            <right_val>0.0375769101083279</right_val></_></_>
-        <_>
-          <!-- tree 267 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 14 6 1 -1.</_>
-                <_>
-                  11 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0362875610589981</threshold>
-            <left_val>6.2272557988762856e-004</left_val>
-            <right_val>-1.0000269412994385</right_val></_></_>
-        <_>
-          <!-- tree 268 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 14 6 1 -1.</_>
-                <_>
-                  5 14 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7432459862902761e-003</threshold>
-            <left_val>0.0829876065254211</left_val>
-            <right_val>-0.0519000887870789</right_val></_></_>
-        <_>
-          <!-- tree 269 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 12 3 1 -1.</_>
-                <_>
-                  12 12 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.1345883295871317e-005</threshold>
-            <left_val>0.0411302000284195</left_val>
-            <right_val>-0.0397632196545601</right_val></_></_>
-        <_>
-          <!-- tree 270 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 12 3 1 -1.</_>
-                <_>
-                  5 12 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6694999178289436e-005</threshold>
-            <left_val>-0.0574894510209560</left_val>
-            <right_val>0.0767864733934402</right_val></_></_>
-        <_>
-          <!-- tree 271 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 5 1 2 -1.</_>
-                <_>
-                  13 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4684870368218981e-005</threshold>
-            <left_val>-0.0332492999732494</left_val>
-            <right_val>0.0608417689800262</right_val></_></_>
-        <_>
-          <!-- tree 272 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 3 6 4 -1.</_>
-                <_>
-                  5 4 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0216660704463720</threshold>
-            <left_val>-0.4239960014820099</left_val>
-            <right_val>9.5887510105967522e-003</right_val></_></_>
-        <_>
-          <!-- tree 273 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 3 12 9 -1.</_>
-                <_>
-                  8 6 4 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.6512408256530762</threshold>
-            <left_val>-0.0139236301183701</left_val>
-            <right_val>0.2035869956016541</right_val></_></_>
-        <_>
-          <!-- tree 274 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 6 10 2 -1.</_>
-                <_>
-                  4 7 10 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.1125432625412941e-003</threshold>
-            <left_val>0.0472846701741219</left_val>
-            <right_val>-0.0877940282225609</right_val></_></_>
-        <_>
-          <!-- tree 275 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 5 1 2 -1.</_>
-                <_>
-                  13 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.7661407887935638e-003</threshold>
-            <left_val>3.6122149322181940e-004</left_val>
-            <right_val>-0.4613266885280609</right_val></_></_>
-        <_>
-          <!-- tree 276 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 5 1 2 -1.</_>
-                <_>
-                  4 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.6974760809680447e-005</threshold>
-            <left_val>-0.0540806017816067</left_val>
-            <right_val>0.0876793190836906</right_val></_></_>
-        <_>
-          <!-- tree 277 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 4 4 2 -1.</_>
-                <_>
-                  11 5 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.2681202911771834e-005</threshold>
-            <left_val>-0.0361079499125481</left_val>
-            <right_val>0.0403531081974506</right_val></_></_>
-        <_>
-          <!-- tree 278 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 4 4 2 -1.</_>
-                <_>
-                  3 5 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.6902779247611761e-003</threshold>
-            <left_val>0.0328456684947014</left_val>
-            <right_val>-0.1765446066856384</right_val></_></_>
-        <_>
-          <!-- tree 279 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 4 8 2 -1.</_>
-                <_>
-                  9 4 4 1 2.</_>
-                <_>
-                  5 5 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4884620215743780e-003</threshold>
-            <left_val>-0.1116909012198448</left_val>
-            <right_val>0.0380927696824074</right_val></_></_>
-        <_>
-          <!-- tree 280 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 2 2 2 -1.</_>
-                <_>
-                  6 2 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.1029191128909588e-003</threshold>
-            <left_val>-0.0218723006546497</left_val>
-            <right_val>0.2147480994462967</right_val></_></_>
-        <_>
-          <!-- tree 281 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 3 2 11 -1.</_>
-                <_>
-                  14 3 1 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.4216389805078506e-003</threshold>
-            <left_val>0.0250333193689585</left_val>
-            <right_val>-0.1052472963929176</right_val></_></_>
-        <_>
-          <!-- tree 282 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 3 2 11 -1.</_>
-                <_>
-                  3 3 1 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0112776597961783</threshold>
-            <left_val>-0.1206863969564438</left_val>
-            <right_val>0.0366918705403805</right_val></_></_>
-        <_>
-          <!-- tree 283 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 6 4 3 -1.</_>
-                <_>
-                  15 6 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5908139068633318e-003</threshold>
-            <left_val>0.0489619709551334</left_val>
-            <right_val>-0.0271127801388502</right_val></_></_>
-        <_>
-          <!-- tree 284 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 4 5 -1.</_>
-                <_>
-                  1 6 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.9354357868432999e-003</threshold>
-            <left_val>-0.0488033294677734</left_val>
-            <right_val>0.0915941670536995</right_val></_></_>
-        <_>
-          <!-- tree 285 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 0 6 3 -1.</_>
-                <_>
-                  13 0 2 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.7140849530696869e-003</threshold>
-            <left_val>0.0652810335159302</left_val>
-            <right_val>-0.0544281415641308</right_val></_></_>
-        <_>
-          <!-- tree 286 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 6 2 2 -1.</_>
-                <_>
-                  7 6 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.5044799596071243e-003</threshold>
-            <left_val>0.0404559001326561</left_val>
-            <right_val>-0.1001691967248917</right_val></_></_>
-        <_>
-          <!-- tree 287 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 3 1 6 -1.</_>
-                <_>
-                  13 5 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.6039410624653101e-003</threshold>
-            <left_val>-0.0484412014484406</left_val>
-            <right_val>0.0443660393357277</right_val></_></_>
-        <_>
-          <!-- tree 288 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 4 4 -1.</_>
-                <_>
-                  5 4 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0142484996467829</threshold>
-            <left_val>-0.1895865947008133</left_val>
-            <right_val>0.0223791096359491</right_val></_></_>
-        <_>
-          <!-- tree 289 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 1 3 9 -1.</_>
-                <_>
-                  9 4 1 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1074685975909233</threshold>
-            <left_val>-0.0145733403041959</left_val>
-            <right_val>0.1853380054235458</right_val></_></_>
-        <_>
-          <!-- tree 290 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 3 1 -1.</_>
-                <_>
-                  10 5 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.5448340028524399e-003</threshold>
-            <left_val>0.0309639498591423</left_val>
-            <right_val>-0.1545622944831848</right_val></_></_>
-        <_>
-          <!-- tree 291 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 2 9 9 -1.</_>
-                <_>
-                  9 5 3 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.4055879116058350</threshold>
-            <left_val>-0.0106067704036832</left_val>
-            <right_val>0.0930665135383606</right_val></_></_>
-        <_>
-          <!-- tree 292 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 9 9 -1.</_>
-                <_>
-                  6 5 3 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.4504162073135376</threshold>
-            <left_val>-0.0119176097214222</left_val>
-            <right_val>0.3723948001861572</right_val></_></_>
-        <_>
-          <!-- tree 293 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 12 -1.</_>
-                <_>
-                  6 4 6 4 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.0484869480133057</threshold>
-            <left_val>0.0248466003686190</left_val>
-            <right_val>-0.2055020928382874</right_val></_></_>
-        <_>
-          <!-- tree 294 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 3 14 4 -1.</_>
-                <_>
-                  1 3 7 2 2.</_>
-                <_>
-                  8 5 7 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0317365005612373</threshold>
-            <left_val>0.1823897957801819</left_val>
-            <right_val>-0.0208370704203844</right_val></_></_>
-        <_>
-          <!-- tree 295 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 8 -1.</_>
-                <_>
-                  9 0 9 4 2.</_>
-                <_>
-                  0 4 9 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1016217023134232</threshold>
-            <left_val>0.0152149600908160</left_val>
-            <right_val>-0.2873800098896027</right_val></_></_>
-        <_>
-          <!-- tree 296 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 10 2 2 -1.</_>
-                <_>
-                  5 10 1 1 2.</_>
-                <_>
-                  6 11 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6911029815673828e-003</threshold>
-            <left_val>-0.0272036101669073</left_val>
-            <right_val>0.1536138951778412</right_val></_></_>
-        <_>
-          <!-- tree 297 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 8 2 3 -1.</_>
-                <_>
-                  8 9 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0550902001559734</threshold>
-            <left_val>0.4018200933933258</left_val>
-            <right_val>-2.6924409903585911e-003</right_val></_></_>
-        <_>
-          <!-- tree 298 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 8 3 2 -1.</_>
-                <_>
-                  10 9 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.6355741582810879e-003</threshold>
-            <left_val>-0.1039951965212822</left_val>
-            <right_val>0.0399309694766998</right_val></_></_>
-        <_>
-          <!-- tree 299 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 6 9 -1.</_>
-                <_>
-                  9 0 3 9 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.2823461890220642</threshold>
-            <left_val>-0.6573529839515686</left_val>
-            <right_val>2.2085180971771479e-003</right_val></_></_>
-        <_>
-          <!-- tree 300 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 9 6 -1.</_>
-                <_>
-                  9 0 9 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.3560608029365540</threshold>
-            <left_val>8.8273994624614716e-003</left_val>
-            <right_val>-0.4184055030345917</right_val></_></_>
-        <_>
-          <!-- tree 301 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 4 2 -1.</_>
-                <_>
-                  9 4 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.8794088866561651e-003</threshold>
-            <left_val>-0.0477025806903839</left_val>
-            <right_val>0.0486192405223846</right_val></_></_>
-        <_>
-          <!-- tree 302 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 18 1 -1.</_>
-                <_>
-                  9 2 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0345713905990124</threshold>
-            <left_val>-0.1654108017683029</left_val>
-            <right_val>0.0324508398771286</right_val></_></_>
-        <_>
-          <!-- tree 303 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 10 6 3 -1.</_>
-                <_>
-                  11 11 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0700211822986603</threshold>
-            <left_val>7.1347500197589397e-003</left_val>
-            <right_val>-0.5142191052436829</right_val></_></_>
-        <_>
-          <!-- tree 304 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 8 4 -1.</_>
-                <_>
-                  0 5 8 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0253863092511892</threshold>
-            <left_val>-0.1287622004747391</left_val>
-            <right_val>0.0291819702833891</right_val></_></_>
-        <_>
-          <!-- tree 305 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 3 3 8 -1.</_>
-                <_>
-                  14 5 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.7927471138536930e-003</threshold>
-            <left_val>0.0385298691689968</left_val>
-            <right_val>-0.0494838394224644</right_val></_></_>
-        <_>
-          <!-- tree 306 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 2 1 -1.</_>
-                <_>
-                  5 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0142815597355366</threshold>
-            <left_val>5.6447219103574753e-003</left_val>
-            <right_val>-0.7038524746894836</right_val></_></_>
-        <_>
-          <!-- tree 307 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 1 2 2 -1.</_>
-                <_>
-                  14 1 1 1 2.</_>
-                <_>
-                  13 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3879110813140869e-005</threshold>
-            <left_val>-0.0420181788504124</left_val>
-            <right_val>0.0442302897572517</right_val></_></_>
-        <_>
-          <!-- tree 308 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 2 2 -1.</_>
-                <_>
-                  3 1 1 1 2.</_>
-                <_>
-                  4 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.5789560060948133e-003</threshold>
-            <left_val>0.4614329040050507</left_val>
-            <right_val>-9.7652971744537354e-003</right_val></_></_>
-        <_>
-          <!-- tree 309 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 4 1 -1.</_>
-                <_>
-                  14 0 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.9024448748677969e-005</threshold>
-            <left_val>0.0501331388950348</left_val>
-            <right_val>-0.0589645393192768</right_val></_></_>
-        <_>
-          <!-- tree 310 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 4 1 -1.</_>
-                <_>
-                  2 0 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.0192299745976925e-003</threshold>
-            <left_val>-0.1949381977319717</left_val>
-            <right_val>0.0247106906026602</right_val></_></_>
-        <_>
-          <!-- tree 311 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 0 1 2 -1.</_>
-                <_>
-                  17 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-2.5278010871261358e-003</threshold>
-            <left_val>0.0835050269961357</left_val>
-            <right_val>-0.0252687390893698</right_val></_></_>
-        <_>
-          <!-- tree 312 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 2 1 -1.</_>
-                <_>
-                  1 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>1.7980269622057676e-003</threshold>
-            <left_val>-0.0484824590384960</left_val>
-            <right_val>0.0943117365241051</right_val></_></_>
-        <_>
-          <!-- tree 313 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 1 8 -1.</_>
-                <_>
-                  16 2 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0226906202733517</threshold>
-            <left_val>-0.2997882068157196</left_val>
-            <right_val>2.2890099789947271e-003</right_val></_></_>
-        <_>
-          <!-- tree 314 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 1 8 -1.</_>
-                <_>
-                  1 2 1 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4375130413100123e-003</threshold>
-            <left_val>-0.0624394081532955</left_val>
-            <right_val>0.0752900913357735</right_val></_></_>
-        <_>
-          <!-- tree 315 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 4 2 -1.</_>
-                <_>
-                  8 0 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.2696974277496338e-003</threshold>
-            <left_val>-0.0303539503365755</left_val>
-            <right_val>0.0880893915891647</right_val></_></_>
-        <_>
-          <!-- tree 316 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 12 15 -1.</_>
-                <_>
-                  5 0 6 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1505593955516815</threshold>
-            <left_val>0.1941386014223099</left_val>
-            <right_val>-0.0227722208946943</right_val></_></_>
-        <_>
-          <!-- tree 317 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 2 6 4 -1.</_>
-                <_>
-                  11 2 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7811149591580033e-003</threshold>
-            <left_val>-0.0603102482855320</left_val>
-            <right_val>0.0200738906860352</right_val></_></_>
-        <_>
-          <!-- tree 318 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 8 6 -1.</_>
-                <_>
-                  4 2 4 3 2.</_>
-                <_>
-                  8 5 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.7450647689402103e-003</threshold>
-            <left_val>-0.0518799908459187</left_val>
-            <right_val>0.0740923434495926</right_val></_></_>
-        <_>
-          <!-- tree 319 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 1 1 4 -1.</_>
-                <_>
-                  9 2 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.9645358920097351e-003</threshold>
-            <left_val>-0.1222385987639427</left_val>
-            <right_val>0.0184847600758076</right_val></_></_>
-        <_>
-          <!-- tree 320 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 7 6 -1.</_>
-                <_>
-                  7 2 7 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.2112957984209061</threshold>
-            <left_val>6.9678751751780510e-003</left_val>
-            <right_val>-0.6340553164482117</right_val></_></_>
-        <_>
-          <!-- tree 321 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 6 8 2 -1.</_>
-                <_>
-                  10 6 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0679322928190231</threshold>
-            <left_val>0.0112383002415299</left_val>
-            <right_val>-0.2989783883094788</right_val></_></_>
-        <_>
-          <!-- tree 322 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 17 9 -1.</_>
-                <_>
-                  0 3 17 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.3546049892902374</threshold>
-            <left_val>0.0108207296580076</left_val>
-            <right_val>-0.4018031060695648</right_val></_></_>
-        <_>
-          <!-- tree 323 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 5 6 -1.</_>
-                <_>
-                  7 3 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0678805708885193</threshold>
-            <left_val>-9.0837832540273666e-003</left_val>
-            <right_val>0.2855814099311829</right_val></_></_>
-        <_>
-          <!-- tree 324 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 1 8 4 -1.</_>
-                <_>
-                  5 1 4 2 2.</_>
-                <_>
-                  9 3 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0231790095567703</threshold>
-            <left_val>0.0120336599647999</left_val>
-            <right_val>-0.3428303003311157</right_val></_></_>
-        <_>
-          <!-- tree 325 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 3 9 -1.</_>
-                <_>
-                  9 3 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0250181294977665</threshold>
-            <left_val>0.1685106009244919</left_val>
-            <right_val>-0.0148548297584057</right_val></_></_>
-        <_>
-          <!-- tree 326 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 4 2 -1.</_>
-                <_>
-                  9 2 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0108465002849698</threshold>
-            <left_val>-0.0498660691082478</left_val>
-            <right_val>0.0913302898406982</right_val></_></_>
-        <_>
-          <!-- tree 327 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 11 8 -1.</_>
-                <_>
-                  4 4 11 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0674327909946442</threshold>
-            <left_val>-0.0671769231557846</left_val>
-            <right_val>0.0522870086133480</right_val></_></_>
-        <_>
-          <!-- tree 328 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 4 16 6 -1.</_>
-                <_>
-                  1 6 16 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1040098965167999</threshold>
-            <left_val>0.2126909047365189</left_val>
-            <right_val>-0.0196353103965521</right_val></_></_>
-        <_>
-          <!-- tree 329 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 6 8 2 -1.</_>
-                <_>
-                  10 6 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0195524599403143</threshold>
-            <left_val>-0.0859493836760521</left_val>
-            <right_val>0.0108785601332784</right_val></_></_>
-        <_>
-          <!-- tree 330 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 8 2 -1.</_>
-                <_>
-                  4 6 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0041260393336415e-003</threshold>
-            <left_val>-0.0881467536091805</left_val>
-            <right_val>0.0533496886491776</right_val></_></_>
-        <_>
-          <!-- tree 331 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 8 4 2 -1.</_>
-                <_>
-                  15 8 2 1 2.</_>
-                <_>
-                  13 9 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.1779510900378227e-003</threshold>
-            <left_val>-0.0257080793380737</left_val>
-            <right_val>0.1262018978595734</right_val></_></_>
-        <_>
-          <!-- tree 332 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 3 3 -1.</_>
-                <_>
-                  0 8 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1974221132695675e-003</threshold>
-            <left_val>-0.1490999013185501</left_val>
-            <right_val>0.0257342308759689</right_val></_></_>
-        <_>
-          <!-- tree 333 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 5 1 3 -1.</_>
-                <_>
-                  16 6 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-8.4385536611080170e-003</threshold>
-            <left_val>0.1762731969356537</left_val>
-            <right_val>-0.0173361804336309</right_val></_></_>
-        <_>
-          <!-- tree 334 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 5 3 1 -1.</_>
-                <_>
-                  2 6 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.3723679631948471e-003</threshold>
-            <left_val>-0.0288299303501844</left_val>
-            <right_val>0.1601462066173554</right_val></_></_>
-        <_>
-          <!-- tree 335 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 6 1 2 -1.</_>
-                <_>
-                  17 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.4913480309769511e-004</threshold>
-            <left_val>0.0250607505440712</left_val>
-            <right_val>-0.0684819966554642</right_val></_></_>
-        <_>
-          <!-- tree 336 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 1 2 -1.</_>
-                <_>
-                  0 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3739310563541949e-005</threshold>
-            <left_val>0.0597767196595669</left_val>
-            <right_val>-0.0690794587135315</right_val></_></_>
-        <_>
-          <!-- tree 337 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 1 1 12 -1.</_>
-                <_>
-                  17 7 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0219023097306490</threshold>
-            <left_val>0.0158000495284796</left_val>
-            <right_val>-0.2590233981609345</right_val></_></_>
-        <_>
-          <!-- tree 338 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 1 12 -1.</_>
-                <_>
-                  0 7 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0232256501913071</threshold>
-            <left_val>-0.1524018943309784</left_val>
-            <right_val>0.0343589708209038</right_val></_></_>
-        <_>
-          <!-- tree 339 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 18 4 -1.</_>
-                <_>
-                  0 7 18 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0173969995230436</threshold>
-            <left_val>-0.0445144101977348</left_val>
-            <right_val>0.0861461684107780</right_val></_></_>
-        <_>
-          <!-- tree 340 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 2 -1.</_>
-                <_>
-                  0 10 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.3821102008223534e-003</threshold>
-            <left_val>-0.0655946731567383</left_val>
-            <right_val>0.0700312927365303</right_val></_></_>
-        <_>
-          <!-- tree 341 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 6 2 -1.</_>
-                <_>
-                  6 8 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0522718392312527</threshold>
-            <left_val>-0.8459323048591614</left_val>
-            <right_val>4.0736538358032703e-003</right_val></_></_>
-        <_>
-          <!-- tree 342 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 3 1 -1.</_>
-                <_>
-                  1 9 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6945039280690253e-005</threshold>
-            <left_val>0.0711033865809441</left_val>
-            <right_val>-0.0569700710475445</right_val></_></_>
-        <_>
-          <!-- tree 343 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 9 2 2 -1.</_>
-                <_>
-                  16 10 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.3246699757874012e-003</threshold>
-            <left_val>0.0101481601595879</left_val>
-            <right_val>-0.1649581938982010</right_val></_></_>
-        <_>
-          <!-- tree 344 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 10 6 3 -1.</_>
-                <_>
-                  5 11 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0796489417552948</threshold>
-            <left_val>4.9309800378978252e-003</left_val>
-            <right_val>-0.7393599152565002</right_val></_></_>
-        <_>
-          <!-- tree 345 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 1 3 3 -1.</_>
-                <_>
-                  14 2 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0256457198411226</threshold>
-            <left_val>-9.9361119791865349e-003</left_val>
-            <right_val>0.1957349032163620</right_val></_></_>
-        <_>
-          <!-- tree 346 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 5 14 2 -1.</_>
-                <_>
-                  2 5 7 1 2.</_>
-                <_>
-                  9 6 7 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0215177107602358</threshold>
-            <left_val>-0.3739817142486572</left_val>
-            <right_val>0.0105646802112460</right_val></_></_>
-        <_>
-          <!-- tree 347 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 1 3 3 -1.</_>
-                <_>
-                  14 2 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>3.1084879301488400e-003</threshold>
-            <left_val>-0.0232892800122499</left_val>
-            <right_val>0.0444528982043266</right_val></_></_>
-        <_>
-          <!-- tree 348 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 3 3 -1.</_>
-                <_>
-                  4 2 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0203057900071144</threshold>
-            <left_val>0.1845038980245590</left_val>
-            <right_val>-0.0220416504889727</right_val></_></_>
-        <_>
-          <!-- tree 349 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 4 3 2 -1.</_>
-                <_>
-                  14 5 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3073209740687162e-004</threshold>
-            <left_val>-0.0425330288708210</left_val>
-            <right_val>0.0405342392623425</right_val></_></_>
-        <_>
-          <!-- tree 350 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 4 3 2 -1.</_>
-                <_>
-                  1 5 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1654567942023277e-003</threshold>
-            <left_val>0.0195509009063244</left_val>
-            <right_val>-0.2752223014831543</right_val></_></_>
-        <_>
-          <!-- tree 351 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 3 3 11 -1.</_>
-                <_>
-                  16 3 1 11 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0133738899603486</threshold>
-            <left_val>-0.1067676991224289</left_val>
-            <right_val>0.0157130900770426</right_val></_></_>
-        <_>
-          <!-- tree 352 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 3 11 -1.</_>
-                <_>
-                  1 3 1 11 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0305575095117092</threshold>
-            <left_val>-0.4903602004051209</left_val>
-            <right_val>8.4824627265334129e-003</right_val></_></_>
-        <_>
-          <!-- tree 353 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 5 2 2 -1.</_>
-                <_>
-                  15 5 1 1 2.</_>
-                <_>
-                  14 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.4938637875020504e-003</threshold>
-            <left_val>0.2458741962909699</left_val>
-            <right_val>-7.3765181005001068e-003</right_val></_></_>
-        <_>
-          <!-- tree 354 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 5 2 2 -1.</_>
-                <_>
-                  2 5 1 1 2.</_>
-                <_>
-                  3 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5328789595514536e-003</threshold>
-            <left_val>-0.0219983607530594</left_val>
-            <right_val>0.1710575073957443</right_val></_></_>
-        <_>
-          <!-- tree 355 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 5 3 4 -1.</_>
-                <_>
-                  15 6 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0284645706415176</threshold>
-            <left_val>-4.4271750375628471e-003</left_val>
-            <right_val>0.3786450028419495</right_val></_></_>
-        <_>
-          <!-- tree 356 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 3 4 -1.</_>
-                <_>
-                  0 6 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.6278439220041037e-003</threshold>
-            <left_val>-0.1194301024079323</left_val>
-            <right_val>0.0363873392343521</right_val></_></_>
-        <_>
-          <!-- tree 357 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 8 1 3 -1.</_>
-                <_>
-                  17 9 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5880590118467808e-003</threshold>
-            <left_val>4.7421031631529331e-003</left_val>
-            <right_val>-0.2304062992334366</right_val></_></_>
-        <_>
-          <!-- tree 358 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 1 3 -1.</_>
-                <_>
-                  0 9 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7257609870284796e-003</threshold>
-            <left_val>-0.1512462049722672</left_val>
-            <right_val>0.0245305094867945</right_val></_></_>
-        <_>
-          <!-- tree 359 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 6 2 4 -1.</_>
-                <_>
-                  17 6 1 2 2.</_>
-                <_>
-                  16 8 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.0079229511320591e-003</threshold>
-            <left_val>0.1179575026035309</left_val>
-            <right_val>-0.0284553095698357</right_val></_></_>
-        <_>
-          <!-- tree 360 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 2 4 -1.</_>
-                <_>
-                  0 6 1 2 2.</_>
-                <_>
-                  1 8 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.0597620904445648e-003</threshold>
-            <left_val>-0.0159428808838129</left_val>
-            <right_val>0.2634926140308380</right_val></_></_>
-        <_>
-          <!-- tree 361 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 18 6 -1.</_>
-                <_>
-                  9 6 9 3 2.</_>
-                <_>
-                  0 9 9 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1020618006587029</threshold>
-            <left_val>0.0228738095611334</left_val>
-            <right_val>-0.1756930947303772</right_val></_></_>
-        <_>
-          <!-- tree 362 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 1 6 2 -1.</_>
-                <_>
-                  5 1 3 1 2.</_>
-                <_>
-                  8 2 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3605949506163597e-003</threshold>
-            <left_val>-0.2843278944492340</left_val>
-            <right_val>0.0135392798110843</right_val></_></_>
-        <_>
-          <!-- tree 363 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 1 2 2 -1.</_>
-                <_>
-                  11 1 1 1 2.</_>
-                <_>
-                  10 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3634009519591928e-003</threshold>
-            <left_val>0.0150163397192955</left_val>
-            <right_val>-0.2169246971607208</right_val></_></_>
-        <_>
-          <!-- tree 364 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 1 2 2 -1.</_>
-                <_>
-                  6 1 1 1 2.</_>
-                <_>
-                  7 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1867151341866702e-005</threshold>
-            <left_val>0.0715956836938858</left_val>
-            <right_val>-0.0591941215097904</right_val></_></_>
-        <_>
-          <!-- tree 365 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 1 6 3 -1.</_>
-                <_>
-                  10 1 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.5599510669708252e-003</threshold>
-            <left_val>-0.0504433810710907</left_val>
-            <right_val>0.0246312096714973</right_val></_></_>
-        <_>
-          <!-- tree 366 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 6 3 -1.</_>
-                <_>
-                  5 1 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.1721879541873932e-003</threshold>
-            <left_val>0.1485853940248489</left_val>
-            <right_val>-0.0320550985634327</right_val></_></_>
-        <_>
-          <!-- tree 367 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 6 3 -1.</_>
-                <_>
-                  14 0 2 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0511872991919518</threshold>
-            <left_val>-0.2539905905723572</left_val>
-            <right_val>6.8093240261077881e-003</right_val></_></_>
-        <_>
-          <!-- tree 368 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 6 3 -1.</_>
-                <_>
-                  2 0 2 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0402427017688751</threshold>
-            <left_val>7.3603428900241852e-003</left_val>
-            <right_val>-0.5389612913131714</right_val></_></_>
-        <_>
-          <!-- tree 369 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 8 4 2 -1.</_>
-                <_>
-                  15 8 2 1 2.</_>
-                <_>
-                  13 9 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.6354929953813553e-003</threshold>
-            <left_val>0.2015924006700516</left_val>
-            <right_val>-0.0168281905353069</right_val></_></_>
-        <_>
-          <!-- tree 370 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 8 4 2 -1.</_>
-                <_>
-                  1 8 2 1 2.</_>
-                <_>
-                  3 9 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.2959326896816492e-005</threshold>
-            <left_val>-0.0544128902256489</left_val>
-            <right_val>0.0732978805899620</right_val></_></_></trees>
-      <stage_threshold>-1.1236120462417603</stage_threshold>
-      <parent>17</parent>
-      <next>-1</next></_>
-    <_>
-      <!-- stage 19 -->
-      <trees>
-        <_>
-          <!-- tree 0 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 6 1 6 -1.</_>
-                <_>
-                  7 8 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0465844385325909</threshold>
-            <left_val>0.3975890874862671</left_val>
-            <right_val>-0.1048778966069222</right_val></_></_>
-        <_>
-          <!-- tree 1 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 6 6 -1.</_>
-                <_>
-                  12 2 2 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0135460803285241</threshold>
-            <left_val>0.1016070991754532</left_val>
-            <right_val>-0.0605821199715137</right_val></_></_>
-        <_>
-          <!-- tree 2 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 4 8 -1.</_>
-                <_>
-                  7 0 2 8 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0212406199425459</threshold>
-            <left_val>-0.2152090966701508</left_val>
-            <right_val>0.0991928800940514</right_val></_></_>
-        <_>
-          <!-- tree 3 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 1 3 -1.</_>
-                <_>
-                  12 8 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.8675312213599682e-003</threshold>
-            <left_val>0.3455908000469208</left_val>
-            <right_val>-0.0272973105311394</right_val></_></_>
-        <_>
-          <!-- tree 4 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 7 1 3 -1.</_>
-                <_>
-                  4 8 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.8874719971790910e-003</threshold>
-            <left_val>-0.0626463666558266</left_val>
-            <right_val>0.2202863991260529</right_val></_></_>
-        <_>
-          <!-- tree 5 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 5 1 3 -1.</_>
-                <_>
-                  14 6 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.6648931503295898e-003</threshold>
-            <left_val>0.1264203935861588</left_val>
-            <right_val>-2.9440899379551411e-003</right_val></_></_>
-        <_>
-          <!-- tree 6 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 5 3 1 -1.</_>
-                <_>
-                  4 6 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.7599171996116638e-003</threshold>
-            <left_val>-0.0645451918244362</left_val>
-            <right_val>0.2116688936948776</right_val></_></_>
-        <_>
-          <!-- tree 7 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 4 -1.</_>
-                <_>
-                  9 9 9 2 2.</_>
-                <_>
-                  0 11 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0426046885550022</threshold>
-            <left_val>0.0816654786467552</left_val>
-            <right_val>-0.2211515009403229</right_val></_></_>
-        <_>
-          <!-- tree 8 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 1 2 -1.</_>
-                <_>
-                  2 0 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>1.1809020070359111e-003</threshold>
-            <left_val>0.0537825897336006</left_val>
-            <right_val>-0.2183254957199097</right_val></_></_>
-        <_>
-          <!-- tree 9 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 7 4 -1.</_>
-                <_>
-                  8 2 7 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0258668307214975</threshold>
-            <left_val>-3.4579040948301554e-003</left_val>
-            <right_val>-0.2280915975570679</right_val></_></_>
-        <_>
-          <!-- tree 10 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 12 4 -1.</_>
-                <_>
-                  3 0 6 2 2.</_>
-                <_>
-                  9 2 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0130240898579359</threshold>
-            <left_val>-0.2336263954639435</left_val>
-            <right_val>0.0455196797847748</right_val></_></_>
-        <_>
-          <!-- tree 11 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 2 2 -1.</_>
-                <_>
-                  10 1 1 1 2.</_>
-                <_>
-                  9 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6178720872849226e-005</threshold>
-            <left_val>0.0630585104227066</left_val>
-            <right_val>-0.0357771515846252</right_val></_></_>
-        <_>
-          <!-- tree 12 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 4 -1.</_>
-                <_>
-                  7 0 2 2 2.</_>
-                <_>
-                  9 2 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.8649858906865120e-003</threshold>
-            <left_val>0.0413089096546173</left_val>
-            <right_val>-0.2126125991344452</right_val></_></_>
-        <_>
-          <!-- tree 13 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 8 2 2 -1.</_>
-                <_>
-                  12 9 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.3429462239146233e-003</threshold>
-            <left_val>0.1096725985407829</left_val>
-            <right_val>-0.0673774331808090</right_val></_></_>
-        <_>
-          <!-- tree 14 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 8 2 2 -1.</_>
-                <_>
-                  4 9 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.2463369425386190e-003</threshold>
-            <left_val>-0.0599126406013966</left_val>
-            <right_val>0.2478830069303513</right_val></_></_>
-        <_>
-          <!-- tree 15 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 5 4 10 -1.</_>
-                <_>
-                  11 5 2 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0446722097694874</threshold>
-            <left_val>-0.1378764957189560</left_val>
-            <right_val>7.5812488794326782e-003</right_val></_></_>
-        <_>
-          <!-- tree 16 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 5 4 10 -1.</_>
-                <_>
-                  5 5 2 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0596978403627872</threshold>
-            <left_val>-0.3720127940177918</left_val>
-            <right_val>0.0243327803909779</right_val></_></_>
-        <_>
-          <!-- tree 17 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 10 16 3 -1.</_>
-                <_>
-                  5 10 8 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.9666267633438110e-003</threshold>
-            <left_val>0.0740873217582703</left_val>
-            <right_val>-0.1286740005016327</right_val></_></_>
-        <_>
-          <!-- tree 18 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 8 2 2 -1.</_>
-                <_>
-                  5 8 1 1 2.</_>
-                <_>
-                  6 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1090090265497565e-003</threshold>
-            <left_val>-0.0450637899339199</left_val>
-            <right_val>0.1985294967889786</right_val></_></_>
-        <_>
-          <!-- tree 19 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 18 8 -1.</_>
-                <_>
-                  9 5 9 4 2.</_>
-                <_>
-                  0 9 9 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1913764029741287</threshold>
-            <left_val>0.0166084691882133</left_val>
-            <right_val>-0.4066238999366760</right_val></_></_>
-        <_>
-          <!-- tree 20 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 3 9 -1.</_>
-                <_>
-                  0 6 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0291308406740427</threshold>
-            <left_val>0.0361067317426205</left_val>
-            <right_val>-0.2113531976938248</right_val></_></_>
-        <_>
-          <!-- tree 21 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 8 2 -1.</_>
-                <_>
-                  9 4 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.9123510941863060e-003</threshold>
-            <left_val>-0.1371506005525589</left_val>
-            <right_val>0.0311542004346848</right_val></_></_>
-        <_>
-          <!-- tree 22 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 18 2 -1.</_>
-                <_>
-                  0 3 9 1 2.</_>
-                <_>
-                  9 4 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0102061899378896</threshold>
-            <left_val>0.0290562491863966</left_val>
-            <right_val>-0.2503226995468140</right_val></_></_>
-        <_>
-          <!-- tree 23 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 11 8 4 -1.</_>
-                <_>
-                  8 11 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0544211715459824</threshold>
-            <left_val>-0.3678776025772095</left_val>
-            <right_val>4.9542388878762722e-003</right_val></_></_>
-        <_>
-          <!-- tree 24 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 4 3 2 -1.</_>
-                <_>
-                  3 5 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0105043696239591</threshold>
-            <left_val>-0.0391194783151150</left_val>
-            <right_val>0.1786668002605438</right_val></_></_>
-        <_>
-          <!-- tree 25 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 4 4 6 -1.</_>
-                <_>
-                  14 7 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0389032289385796</threshold>
-            <left_val>-0.1115652024745941</left_val>
-            <right_val>0.0494851097464561</right_val></_></_>
-        <_>
-          <!-- tree 26 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 9 3 -1.</_>
-                <_>
-                  8 1 9 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.0581050086766481e-003</threshold>
-            <left_val>0.1185448989272118</left_val>
-            <right_val>-0.0652535036206245</right_val></_></_>
-        <_>
-          <!-- tree 27 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 11 8 4 -1.</_>
-                <_>
-                  8 11 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0120711103081703</threshold>
-            <left_val>0.0169083792716265</left_val>
-            <right_val>-0.0460892505943775</right_val></_></_>
-        <_>
-          <!-- tree 28 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 11 8 4 -1.</_>
-                <_>
-                  6 11 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0361215807497501</threshold>
-            <left_val>-0.2858510911464691</left_val>
-            <right_val>0.0273920707404613</right_val></_></_>
-        <_>
-          <!-- tree 29 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 2 1 -1.</_>
-                <_>
-                  15 0 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.0450740167871118e-005</threshold>
-            <left_val>0.0811922177672386</left_val>
-            <right_val>-0.0853394791483879</right_val></_></_>
-        <_>
-          <!-- tree 30 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 6 2 -1.</_>
-                <_>
-                  6 6 2 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0614753998816013</threshold>
-            <left_val>-0.3050264120101929</left_val>
-            <right_val>0.0216726101934910</right_val></_></_>
-        <_>
-          <!-- tree 31 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 6 4 -1.</_>
-                <_>
-                  11 5 2 4 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1238436028361321</threshold>
-            <left_val>-8.6616817861795425e-003</left_val>
-            <right_val>0.0958835631608963</right_val></_></_>
-        <_>
-          <!-- tree 32 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 4 6 -1.</_>
-                <_>
-                  7 5 4 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1372978985309601</threshold>
-            <left_val>0.3248777985572815</left_val>
-            <right_val>-0.0273847002536058</right_val></_></_>
-        <_>
-          <!-- tree 33 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 15 14 -1.</_>
-                <_>
-                  3 8 15 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.3766013085842133</threshold>
-            <left_val>0.0695123001933098</left_val>
-            <right_val>-0.0875100269913673</right_val></_></_>
-        <_>
-          <!-- tree 34 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 4 14 -1.</_>
-                <_>
-                  0 8 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1042848974466324</threshold>
-            <left_val>-0.1743391007184982</left_val>
-            <right_val>0.0465723089873791</right_val></_></_>
-        <_>
-          <!-- tree 35 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 2 2 -1.</_>
-                <_>
-                  12 0 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0153772495687008</threshold>
-            <left_val>7.2437077760696411e-003</left_val>
-            <right_val>-0.3706468939781189</right_val></_></_>
-        <_>
-          <!-- tree 36 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 2 2 -1.</_>
-                <_>
-                  6 0 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0103409802541137</threshold>
-            <left_val>0.0195991508662701</left_val>
-            <right_val>-0.3505811989307404</right_val></_></_>
-        <_>
-          <!-- tree 37 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 2 1 -1.</_>
-                <_>
-                  15 0 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.6178720872849226e-005</threshold>
-            <left_val>-0.0371437408030033</left_val>
-            <right_val>0.0463190414011478</right_val></_></_>
-        <_>
-          <!-- tree 38 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 2 1 -1.</_>
-                <_>
-                  2 0 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.1104918384226039e-005</threshold>
-            <left_val>0.0750196501612663</left_val>
-            <right_val>-0.0955687314271927</right_val></_></_>
-        <_>
-          <!-- tree 39 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 7 2 2 -1.</_>
-                <_>
-                  12 7 1 1 2.</_>
-                <_>
-                  11 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2594480067491531e-003</threshold>
-            <left_val>-0.0361403413116932</left_val>
-            <right_val>0.1402405053377152</right_val></_></_>
-        <_>
-          <!-- tree 40 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 4 6 -1.</_>
-                <_>
-                  0 0 2 3 2.</_>
-                <_>
-                  2 3 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.4775051064789295e-003</threshold>
-            <left_val>0.1198429986834526</left_val>
-            <right_val>-0.0559747815132141</right_val></_></_>
-        <_>
-          <!-- tree 41 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 7 2 2 -1.</_>
-                <_>
-                  12 7 1 1 2.</_>
-                <_>
-                  11 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5892409030348063e-003</threshold>
-            <left_val>0.2098380029201508</left_val>
-            <right_val>-0.0216069091111422</right_val></_></_>
-        <_>
-          <!-- tree 42 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 7 2 2 -1.</_>
-                <_>
-                  5 7 1 1 2.</_>
-                <_>
-                  6 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.8334530725260265e-005</threshold>
-            <left_val>-0.0646458193659782</left_val>
-            <right_val>0.1100763976573944</right_val></_></_>
-        <_>
-          <!-- tree 43 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 6 4 5 -1.</_>
-                <_>
-                  14 6 2 5 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0493306517601013</threshold>
-            <left_val>-0.0343082509934902</left_val>
-            <right_val>0.1055921986699104</right_val></_></_>
-        <_>
-          <!-- tree 44 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 2 2 -1.</_>
-                <_>
-                  8 8 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.1046869116835296e-004</threshold>
-            <left_val>0.0380286201834679</left_val>
-            <right_val>-0.2067811042070389</right_val></_></_>
-        <_>
-          <!-- tree 45 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 8 16 3 -1.</_>
-                <_>
-                  1 9 16 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0112909199669957</threshold>
-            <left_val>-0.0430234186351299</left_val>
-            <right_val>0.1697725951671600</right_val></_></_>
-        <_>
-          <!-- tree 46 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 10 16 2 -1.</_>
-                <_>
-                  1 11 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.9364829640835524e-003</threshold>
-            <left_val>-0.1082670986652374</left_val>
-            <right_val>0.0643948465585709</right_val></_></_>
-        <_>
-          <!-- tree 47 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 6 4 5 -1.</_>
-                <_>
-                  14 6 2 5 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1330419927835465</threshold>
-            <left_val>-0.0107648801058531</left_val>
-            <right_val>0.3024955093860626</right_val></_></_>
-        <_>
-          <!-- tree 48 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 6 5 4 -1.</_>
-                <_>
-                  4 6 5 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1217804998159409</threshold>
-            <left_val>-0.4010885059833527</left_val>
-            <right_val>0.0199013296514750</right_val></_></_>
-        <_>
-          <!-- tree 49 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 1 1 2 -1.</_>
-                <_>
-                  15 2 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.8507350584259257e-005</threshold>
-            <left_val>0.0578306503593922</left_val>
-            <right_val>-0.0554163902997971</right_val></_></_>
-        <_>
-          <!-- tree 50 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 1 10 2 -1.</_>
-                <_>
-                  2 1 10 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.1427283585071564e-003</threshold>
-            <left_val>-0.1303842961788178</left_val>
-            <right_val>0.0504461117088795</right_val></_></_>
-        <_>
-          <!-- tree 51 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 6 9 -1.</_>
-                <_>
-                  12 2 2 9 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.2504931092262268</threshold>
-            <left_val>4.9552097916603088e-003</left_val>
-            <right_val>-0.8452144265174866</right_val></_></_>
-        <_>
-          <!-- tree 52 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 9 3 3 -1.</_>
-                <_>
-                  4 10 3 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.9000479262322187e-003</threshold>
-            <left_val>-0.0486341603100300</left_val>
-            <right_val>0.1397586017847061</right_val></_></_>
-        <_>
-          <!-- tree 53 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 3 4 -1.</_>
-                <_>
-                  10 1 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.5292963087558746e-003</threshold>
-            <left_val>-0.4822708964347839</left_val>
-            <right_val>8.9182211086153984e-003</right_val></_></_>
-        <_>
-          <!-- tree 54 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 10 2 1 -1.</_>
-                <_>
-                  1 10 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-1.2608580291271210e-003</threshold>
-            <left_val>-0.1439639925956726</left_val>
-            <right_val>0.0446254611015320</right_val></_></_>
-        <_>
-          <!-- tree 55 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 11 3 1 -1.</_>
-                <_>
-                  16 12 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.9864251418039203e-004</threshold>
-            <left_val>-0.0534688793122768</left_val>
-            <right_val>0.0444802902638912</right_val></_></_>
-        <_>
-          <!-- tree 56 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 11 1 3 -1.</_>
-                <_>
-                  2 12 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.0955888582393527e-005</threshold>
-            <left_val>-0.0910912230610847</left_val>
-            <right_val>0.0615591295063496</right_val></_></_>
-        <_>
-          <!-- tree 57 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 6 9 -1.</_>
-                <_>
-                  12 2 2 9 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0422890111804008</threshold>
-            <left_val>-0.1452918946743012</left_val>
-            <right_val>0.0229476597160101</right_val></_></_>
-        <_>
-          <!-- tree 58 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 9 6 -1.</_>
-                <_>
-                  6 2 9 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0839773416519165</threshold>
-            <left_val>0.0371137298643589</left_val>
-            <right_val>-0.1620655953884125</right_val></_></_>
-        <_>
-          <!-- tree 59 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 10 6 2 -1.</_>
-                <_>
-                  10 10 3 1 2.</_>
-                <_>
-                  7 11 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.1143082827329636e-003</threshold>
-            <left_val>-8.4407972171902657e-003</left_val>
-            <right_val>0.1036289036273956</right_val></_></_>
-        <_>
-          <!-- tree 60 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 2 2 -1.</_>
-                <_>
-                  7 7 1 1 2.</_>
-                <_>
-                  8 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.6319790271809325e-005</threshold>
-            <left_val>-0.0675051584839821</left_val>
-            <right_val>0.0853116363286972</right_val></_></_>
-        <_>
-          <!-- tree 61 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 12 6 -1.</_>
-                <_>
-                  7 5 4 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.5213608741760254</threshold>
-            <left_val>-0.0144045604392886</left_val>
-            <right_val>0.4496696889400482</right_val></_></_>
-        <_>
-          <!-- tree 62 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 3 1 6 -1.</_>
-                <_>
-                  6 5 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0158583596348763</threshold>
-            <left_val>0.0245071090757847</left_val>
-            <right_val>-0.2806138098239899</right_val></_></_>
-        <_>
-          <!-- tree 63 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 1 3 -1.</_>
-                <_>
-                  16 1 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.0295937843620777e-004</threshold>
-            <left_val>-0.0197774693369865</left_val>
-            <right_val>0.0582239516079426</right_val></_></_>
-        <_>
-          <!-- tree 64 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 3 2 -1.</_>
-                <_>
-                  4 1 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.6763530438765883e-003</threshold>
-            <left_val>-0.1580125987529755</left_val>
-            <right_val>0.0340122990310192</right_val></_></_>
-        <_>
-          <!-- tree 65 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 1 3 -1.</_>
-                <_>
-                  16 1 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4684870368218981e-005</threshold>
-            <left_val>0.0519807413220406</left_val>
-            <right_val>-0.0352598205208778</right_val></_></_>
-        <_>
-          <!-- tree 66 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 1 3 -1.</_>
-                <_>
-                  1 1 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3879110813140869e-005</threshold>
-            <left_val>-0.0777395367622375</left_val>
-            <right_val>0.0757706016302109</right_val></_></_>
-        <_>
-          <!-- tree 67 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 3 8 2 -1.</_>
-                <_>
-                  10 3 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9450380504131317e-003</threshold>
-            <left_val>-0.1076762974262238</left_val>
-            <right_val>0.0473425313830376</right_val></_></_>
-        <_>
-          <!-- tree 68 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 8 2 -1.</_>
-                <_>
-                  4 3 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0338867083191872</threshold>
-            <left_val>0.2539583146572113</left_val>
-            <right_val>-0.0263967607170343</right_val></_></_>
-        <_>
-          <!-- tree 69 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 1 -1.</_>
-                <_>
-                  7 0 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.5312961339950562e-003</threshold>
-            <left_val>-0.0277216397225857</left_val>
-            <right_val>0.2323354035615921</right_val></_></_>
-        <_>
-          <!-- tree 70 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 2 -1.</_>
-                <_>
-                  0 0 9 1 2.</_>
-                <_>
-                  9 1 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.0472032055258751e-003</threshold>
-            <left_val>-0.1738715022802353</left_val>
-            <right_val>0.0345614999532700</right_val></_></_>
-        <_>
-          <!-- tree 71 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 3 2 12 -1.</_>
-                <_>
-                  12 9 2 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0319555215537548</threshold>
-            <left_val>-0.0191999804228544</left_val>
-            <right_val>0.0308420602232218</right_val></_></_>
-        <_>
-          <!-- tree 72 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 3 2 12 -1.</_>
-                <_>
-                  4 9 2 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0907370969653130</threshold>
-            <left_val>7.7871060930192471e-003</left_val>
-            <right_val>-0.7586475014686585</right_val></_></_>
-        <_>
-          <!-- tree 73 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 10 6 2 -1.</_>
-                <_>
-                  10 10 3 1 2.</_>
-                <_>
-                  7 11 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0124458596110344</threshold>
-            <left_val>0.1437095999717712</left_val>
-            <right_val>-0.0104776499792933</right_val></_></_>
-        <_>
-          <!-- tree 74 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 4 7 2 -1.</_>
-                <_>
-                  6 4 7 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0113015202805400</threshold>
-            <left_val>-0.1322194039821625</left_val>
-            <right_val>0.0409673303365707</right_val></_></_>
-        <_>
-          <!-- tree 75 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 13 4 1 -1.</_>
-                <_>
-                  13 13 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0105583202093840</threshold>
-            <left_val>-0.3396332859992981</left_val>
-            <right_val>0.0126309199258685</right_val></_></_>
-        <_>
-          <!-- tree 76 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 9 6 2 -1.</_>
-                <_>
-                  4 9 3 1 2.</_>
-                <_>
-                  7 10 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.6060150489211082e-003</threshold>
-            <left_val>-0.0353191308677197</left_val>
-            <right_val>0.1581331938505173</right_val></_></_>
-        <_>
-          <!-- tree 77 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 8 4 2 -1.</_>
-                <_>
-                  7 9 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0306612607091665</threshold>
-            <left_val>-0.5879328250885010</left_val>
-            <right_val>9.6826143562793732e-003</right_val></_></_>
-        <_>
-          <!-- tree 78 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 13 4 1 -1.</_>
-                <_>
-                  3 13 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.2674311921000481e-003</threshold>
-            <left_val>-0.1976262032985687</left_val>
-            <right_val>0.0269288308918476</right_val></_></_>
-        <_>
-          <!-- tree 79 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 10 1 3 -1.</_>
-                <_>
-                  12 11 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2989880051463842e-003</threshold>
-            <left_val>-0.0291242301464081</left_val>
-            <right_val>0.0762825235724449</right_val></_></_>
-        <_>
-          <!-- tree 80 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 6 2 -1.</_>
-                <_>
-                  6 0 3 1 2.</_>
-                <_>
-                  9 1 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8161852173507214e-003</threshold>
-            <left_val>0.0180221293121576</left_val>
-            <right_val>-0.2925927042961121</right_val></_></_>
-        <_>
-          <!-- tree 81 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 2 2 -1.</_>
-                <_>
-                  9 0 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.4622411951422691e-003</threshold>
-            <left_val>0.0485544018447399</left_val>
-            <right_val>-0.0468474701046944</right_val></_></_>
-        <_>
-          <!-- tree 82 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 2 2 2 -1.</_>
-                <_>
-                  6 2 1 1 2.</_>
-                <_>
-                  7 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.9135680455947295e-005</threshold>
-            <left_val>0.0812152177095413</left_val>
-            <right_val>-0.0633795633912086</right_val></_></_>
-        <_>
-          <!-- tree 83 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 3 4 -1.</_>
-                <_>
-                  8 1 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0573139451444149e-003</threshold>
-            <left_val>0.0140971401706338</left_val>
-            <right_val>-0.2068593055009842</right_val></_></_>
-        <_>
-          <!-- tree 84 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 1 3 -1.</_>
-                <_>
-                  6 8 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.3823669869452715e-003</threshold>
-            <left_val>-0.0426558181643486</left_val>
-            <right_val>0.1154166981577873</right_val></_></_>
-        <_>
-          <!-- tree 85 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 8 10 4 -1.</_>
-                <_>
-                  9 8 5 2 2.</_>
-                <_>
-                  4 10 5 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0401844494044781</threshold>
-            <left_val>-0.2984366118907929</left_val>
-            <right_val>0.0174637306481600</right_val></_></_>
-        <_>
-          <!-- tree 86 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 18 2 -1.</_>
-                <_>
-                  0 10 18 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.0384680293500423e-003</threshold>
-            <left_val>-0.0521952509880066</left_val>
-            <right_val>0.0946906581521034</right_val></_></_>
-        <_>
-          <!-- tree 87 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 9 1 2 -1.</_>
-                <_>
-                  9 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.6935990869533271e-005</threshold>
-            <left_val>0.0507361218333244</left_val>
-            <right_val>-0.1222994998097420</right_val></_></_>
-        <_>
-          <!-- tree 88 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 9 2 2 -1.</_>
-                <_>
-                  8 9 1 1 2.</_>
-                <_>
-                  9 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.9834190324181691e-005</threshold>
-            <left_val>-0.0615346282720566</left_val>
-            <right_val>0.0821938663721085</right_val></_></_>
-        <_>
-          <!-- tree 89 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 5 12 6 -1.</_>
-                <_>
-                  7 7 4 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0239803306758404</threshold>
-            <left_val>0.0899486094713211</left_val>
-            <right_val>-0.0531572587788105</right_val></_></_>
-        <_>
-          <!-- tree 90 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 4 6 4 -1.</_>
-                <_>
-                  6 6 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0198573190718889</threshold>
-            <left_val>-0.0290171504020691</left_val>
-            <right_val>0.1902642995119095</right_val></_></_>
-        <_>
-          <!-- tree 91 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 7 8 -1.</_>
-                <_>
-                  7 2 7 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1887260973453522</threshold>
-            <left_val>-0.1891600936651230</left_val>
-            <right_val>9.1472929343581200e-003</right_val></_></_>
-        <_>
-          <!-- tree 92 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 6 6 2 -1.</_>
-                <_>
-                  6 7 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3056180477142334e-003</threshold>
-            <left_val>0.0595022700726986</left_val>
-            <right_val>-0.1106636002659798</right_val></_></_>
-        <_>
-          <!-- tree 93 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 0 3 3 -1.</_>
-                <_>
-                  13 1 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0179616697132587</threshold>
-            <left_val>6.9341547787189484e-003</left_val>
-            <right_val>-0.2935161888599396</right_val></_></_>
-        <_>
-          <!-- tree 94 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 3 3 -1.</_>
-                <_>
-                  5 1 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.4897631742060184e-003</threshold>
-            <left_val>0.0345449112355709</left_val>
-            <right_val>-0.1438962072134018</right_val></_></_>
-        <_>
-          <!-- tree 95 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 1 8 6 -1.</_>
-                <_>
-                  5 4 8 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1378097981214523</threshold>
-            <left_val>0.6665669083595276</left_val>
-            <right_val>-7.6799020171165466e-003</right_val></_></_>
-        <_>
-          <!-- tree 96 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 7 3 -1.</_>
-                <_>
-                  8 1 7 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0250661708414555</threshold>
-            <left_val>0.0270246397703886</left_val>
-            <right_val>-0.1813068985939026</right_val></_></_>
-        <_>
-          <!-- tree 97 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 5 4 4 -1.</_>
-                <_>
-                  14 7 4 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.6011329181492329e-003</threshold>
-            <left_val>-0.0471079796552658</left_val>
-            <right_val>0.0535648204386234</right_val></_></_>
-        <_>
-          <!-- tree 98 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 11 18 4 -1.</_>
-                <_>
-                  0 13 18 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0446340888738632</threshold>
-            <left_val>-0.0582992509007454</left_val>
-            <right_val>0.0854041278362274</right_val></_></_>
-        <_>
-          <!-- tree 99 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 13 16 2 -1.</_>
-                <_>
-                  1 14 16 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0209591109305620</threshold>
-            <left_val>0.1715489029884338</left_val>
-            <right_val>-0.0302498191595078</right_val></_></_>
-        <_>
-          <!-- tree 100 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 6 10 -1.</_>
-                <_>
-                  2 0 3 5 2.</_>
-                <_>
-                  5 5 3 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0486911907792091</threshold>
-            <left_val>0.0214052200317383</left_val>
-            <right_val>-0.2313596010208130</right_val></_></_>
-        <_>
-          <!-- tree 101 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 3 4 3 -1.</_>
-                <_>
-                  13 4 4 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0334771387279034</threshold>
-            <left_val>-0.0175353996455669</left_val>
-            <right_val>0.2070588022470474</right_val></_></_>
-        <_>
-          <!-- tree 102 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 3 3 3 -1.</_>
-                <_>
-                  5 4 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0157824493944645</threshold>
-            <left_val>0.2044699937105179</left_val>
-            <right_val>-0.0294545702636242</right_val></_></_>
-        <_>
-          <!-- tree 103 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 2 2 3 -1.</_>
-                <_>
-                  15 3 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0216255001723766</threshold>
-            <left_val>-0.0121418898925185</left_val>
-            <right_val>0.2520450055599213</right_val></_></_>
-        <_>
-          <!-- tree 104 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 4 1 -1.</_>
-                <_>
-                  8 8 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.1940139383077621e-003</threshold>
-            <left_val>-0.1221897974610329</left_val>
-            <right_val>0.0451432801783085</right_val></_></_>
-        <_>
-          <!-- tree 105 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 2 2 3 -1.</_>
-                <_>
-                  15 3 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0313102789223194</threshold>
-            <left_val>0.2868792116641998</left_val>
-            <right_val>-8.2902582362294197e-003</right_val></_></_>
-        <_>
-          <!-- tree 106 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 2 10 -1.</_>
-                <_>
-                  4 5 2 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0155427400022745</threshold>
-            <left_val>0.0274001006036997</left_val>
-            <right_val>-0.2035340964794159</right_val></_></_>
-        <_>
-          <!-- tree 107 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 2 2 3 -1.</_>
-                <_>
-                  15 3 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.2836928516626358e-003</threshold>
-            <left_val>0.0541945882141590</left_val>
-            <right_val>-0.0240161493420601</right_val></_></_>
-        <_>
-          <!-- tree 108 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 2 3 2 -1.</_>
-                <_>
-                  3 3 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.4056441187858582e-003</threshold>
-            <left_val>0.1331644058227539</left_val>
-            <right_val>-0.0465831793844700</right_val></_></_>
-        <_>
-          <!-- tree 109 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 1 3 2 -1.</_>
-                <_>
-                  16 2 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.7195679508149624e-003</threshold>
-            <left_val>-0.1046644002199173</left_val>
-            <right_val>0.0291981901973486</right_val></_></_>
-        <_>
-          <!-- tree 110 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 2 3 -1.</_>
-                <_>
-                  2 2 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0122418403625488</threshold>
-            <left_val>-0.3540002107620239</left_val>
-            <right_val>0.0156168602406979</right_val></_></_>
-        <_>
-          <!-- tree 111 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 0 2 8 -1.</_>
-                <_>
-                  8 2 2 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.4770739730447531e-003</threshold>
-            <left_val>0.0471543706953526</left_val>
-            <right_val>-0.0372542105615139</right_val></_></_>
-        <_>
-          <!-- tree 112 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 15 13 -1.</_>
-                <_>
-                  5 0 5 13 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1831195950508118</threshold>
-            <left_val>-0.0496848896145821</left_val>
-            <right_val>0.1203569024801254</right_val></_></_>
-        <_>
-          <!-- tree 113 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 6 12 9 -1.</_>
-                <_>
-                  8 6 6 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1365886926651001</threshold>
-            <left_val>-0.2270102053880692</left_val>
-            <right_val>8.3362739533185959e-003</right_val></_></_>
-        <_>
-          <!-- tree 114 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 6 12 9 -1.</_>
-                <_>
-                  4 6 6 9 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0449327491223812</threshold>
-            <left_val>0.0796067118644714</left_val>
-            <right_val>-0.0694770887494087</right_val></_></_>
-        <_>
-          <!-- tree 115 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 5 2 2 -1.</_>
-                <_>
-                  17 5 1 1 2.</_>
-                <_>
-                  16 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0785179911181331e-003</threshold>
-            <left_val>0.1114739030599594</left_val>
-            <right_val>-0.0302823390811682</right_val></_></_>
-        <_>
-          <!-- tree 116 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 2 2 2 -1.</_>
-                <_>
-                  7 3 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.6406682385131717e-004</threshold>
-            <left_val>-0.1434711962938309</left_val>
-            <right_val>0.0378380417823792</right_val></_></_>
-        <_>
-          <!-- tree 117 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 5 2 2 -1.</_>
-                <_>
-                  17 5 1 1 2.</_>
-                <_>
-                  16 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.4584630262106657e-003</threshold>
-            <left_val>-0.0272518005222082</left_val>
-            <right_val>0.1547423005104065</right_val></_></_>
-        <_>
-          <!-- tree 118 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 10 13 -1.</_>
-                <_>
-                  9 0 5 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1886447966098785</threshold>
-            <left_val>0.1795275956392288</left_val>
-            <right_val>-0.0304256193339825</right_val></_></_>
-        <_>
-          <!-- tree 119 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 5 2 2 -1.</_>
-                <_>
-                  17 5 1 1 2.</_>
-                <_>
-                  16 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.0535402705427259e-005</threshold>
-            <left_val>0.0379448309540749</left_val>
-            <right_val>-0.0349269211292267</right_val></_></_>
-        <_>
-          <!-- tree 120 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 2 2 -1.</_>
-                <_>
-                  0 5 1 1 2.</_>
-                <_>
-                  1 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.8015682306140661e-004</threshold>
-            <left_val>0.1471706032752991</left_val>
-            <right_val>-0.0350825004279613</right_val></_></_>
-        <_>
-          <!-- tree 121 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 18 2 -1.</_>
-                <_>
-                  9 5 9 1 2.</_>
-                <_>
-                  0 6 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0126139298081398</threshold>
-            <left_val>-0.2303957939147949</left_val>
-            <right_val>0.0261014793068171</right_val></_></_>
-        <_>
-          <!-- tree 122 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 13 2 2 -1.</_>
-                <_>
-                  0 13 1 1 2.</_>
-                <_>
-                  1 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1353210437810048e-005</threshold>
-            <left_val>-0.0731913670897484</left_val>
-            <right_val>0.0707238763570786</right_val></_></_>
-        <_>
-          <!-- tree 123 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 10 2 2 -1.</_>
-                <_>
-                  17 10 1 1 2.</_>
-                <_>
-                  16 11 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1017440119758248e-003</threshold>
-            <left_val>0.1000130027532578</left_val>
-            <right_val>-0.0199915599077940</right_val></_></_>
-        <_>
-          <!-- tree 124 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 2 2 -1.</_>
-                <_>
-                  0 10 1 1 2.</_>
-                <_>
-                  1 11 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.3879110813140869e-005</threshold>
-            <left_val>-0.0730697214603424</left_val>
-            <right_val>0.0769988894462585</right_val></_></_>
-        <_>
-          <!-- tree 125 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 7 5 2 -1.</_>
-                <_>
-                  7 8 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.5628936067223549e-003</threshold>
-            <left_val>0.0538700483739376</left_val>
-            <right_val>-0.0811710432171822</right_val></_></_>
-        <_>
-          <!-- tree 126 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 9 3 -1.</_>
-                <_>
-                  11 6 3 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.2404216974973679</threshold>
-            <left_val>-0.0140129402279854</left_val>
-            <right_val>0.5036615729331970</right_val></_></_>
-        <_>
-          <!-- tree 127 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 1 3 2 -1.</_>
-                <_>
-                  16 2 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.4416628554463387e-003</threshold>
-            <left_val>0.0254909899085760</left_val>
-            <right_val>-0.1216735988855362</right_val></_></_>
-        <_>
-          <!-- tree 128 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 2 3 -1.</_>
-                <_>
-                  2 2 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0123843001201749</threshold>
-            <left_val>0.0125095099210739</left_val>
-            <right_val>-0.3812165856361389</right_val></_></_>
-        <_>
-          <!-- tree 129 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 2 1 10 -1.</_>
-                <_>
-                  11 2 1 5 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0969182103872299</threshold>
-            <left_val>-0.0125396698713303</left_val>
-            <right_val>0.1020260006189346</right_val></_></_>
-        <_>
-          <!-- tree 130 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 2 10 1 -1.</_>
-                <_>
-                  7 2 5 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1247290968894959</threshold>
-            <left_val>8.6807161569595337e-003</left_val>
-            <right_val>-0.6021987199783325</right_val></_></_>
-        <_>
-          <!-- tree 131 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 2 2 -1.</_>
-                <_>
-                  14 0 1 1 2.</_>
-                <_>
-                  13 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.1862320106010884e-005</threshold>
-            <left_val>-0.0602015890181065</left_val>
-            <right_val>0.0648947283625603</right_val></_></_>
-        <_>
-          <!-- tree 132 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 2 2 -1.</_>
-                <_>
-                  3 0 1 1 2.</_>
-                <_>
-                  4 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2220391808077693e-005</threshold>
-            <left_val>0.0786095485091209</left_val>
-            <right_val>-0.0601177997887135</right_val></_></_>
-        <_>
-          <!-- tree 133 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 2 2 -1.</_>
-                <_>
-                  14 0 1 1 2.</_>
-                <_>
-                  13 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3879110813140869e-005</threshold>
-            <left_val>0.0795721486210823</left_val>
-            <right_val>-0.0547612011432648</right_val></_></_>
-        <_>
-          <!-- tree 134 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 2 2 -1.</_>
-                <_>
-                  3 0 1 1 2.</_>
-                <_>
-                  4 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.4684870368218981e-005</threshold>
-            <left_val>-0.0759956613183022</left_val>
-            <right_val>0.0895266085863113</right_val></_></_>
-        <_>
-          <!-- tree 135 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 8 6 3 -1.</_>
-                <_>
-                  8 9 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0666326731443405</threshold>
-            <left_val>0.0116960098966956</left_val>
-            <right_val>-0.3817116022109985</right_val></_></_>
-        <_>
-          <!-- tree 136 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 10 1 3 -1.</_>
-                <_>
-                  5 11 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.0522400736808777e-003</threshold>
-            <left_val>-0.0348950810730457</left_val>
-            <right_val>0.1341329067945480</right_val></_></_>
-        <_>
-          <!-- tree 137 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 7 1 6 -1.</_>
-                <_>
-                  17 9 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-3.9307191036641598e-003</threshold>
-            <left_val>-0.0662832930684090</left_val>
-            <right_val>0.0296108499169350</right_val></_></_>
-        <_>
-          <!-- tree 138 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 1 6 -1.</_>
-                <_>
-                  0 9 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0124414796009660</threshold>
-            <left_val>0.0159051697701216</left_val>
-            <right_val>-0.3205035030841827</right_val></_></_>
-        <_>
-          <!-- tree 139 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 4 3 9 -1.</_>
-                <_>
-                  12 7 1 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0388024896383286</threshold>
-            <left_val>-0.0152452699840069</left_val>
-            <right_val>0.0636296123266220</right_val></_></_>
-        <_>
-          <!-- tree 140 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 1 2 -1.</_>
-                <_>
-                  0 6 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.3351631979458034e-005</threshold>
-            <left_val>0.0617886707186699</left_val>
-            <right_val>-0.0717490166425705</right_val></_></_>
-        <_>
-          <!-- tree 141 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 10 8 2 -1.</_>
-                <_>
-                  11 10 4 1 2.</_>
-                <_>
-                  7 11 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0240201298147440</threshold>
-            <left_val>0.2426270991563797</left_val>
-            <right_val>-8.7506501004099846e-003</right_val></_></_>
-        <_>
-          <!-- tree 142 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 10 8 2 -1.</_>
-                <_>
-                  3 10 4 1 2.</_>
-                <_>
-                  7 11 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.7699998617172241e-003</threshold>
-            <left_val>-0.0331209786236286</left_val>
-            <right_val>0.1440421938896179</right_val></_></_>
-        <_>
-          <!-- tree 143 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 5 3 6 -1.</_>
-                <_>
-                  8 7 3 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.1688836067914963</threshold>
-            <left_val>0.3515259027481079</left_val>
-            <right_val>-7.1931672282516956e-003</right_val></_></_>
-        <_>
-          <!-- tree 144 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 5 6 3 -1.</_>
-                <_>
-                  10 7 2 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0675780624151230</threshold>
-            <left_val>-0.2268631011247635</left_val>
-            <right_val>0.0256022103130817</right_val></_></_>
-        <_>
-          <!-- tree 145 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 11 1 2 -1.</_>
-                <_>
-                  12 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0113558797165751</threshold>
-            <left_val>-0.6245070099830627</left_val>
-            <right_val>2.5642369873821735e-003</right_val></_></_>
-        <_>
-          <!-- tree 146 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 9 4 -1.</_>
-                <_>
-                  7 1 9 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0778802484273911</threshold>
-            <left_val>7.9159401357173920e-003</left_val>
-            <right_val>-0.5605946183204651</right_val></_></_>
-        <_>
-          <!-- tree 147 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 5 2 2 -1.</_>
-                <_>
-                  8 6 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.9031829908490181e-003</threshold>
-            <left_val>0.0941536873579025</left_val>
-            <right_val>-0.0496119000017643</right_val></_></_>
-        <_>
-          <!-- tree 148 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 1 10 6 -1.</_>
-                <_>
-                  4 3 10 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.4730090517550707e-003</threshold>
-            <left_val>0.1085821017622948</left_val>
-            <right_val>-0.0538938194513321</right_val></_></_>
-        <_>
-          <!-- tree 149 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 7 3 -1.</_>
-                <_>
-                  6 1 7 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.8511860184371471e-003</threshold>
-            <left_val>0.0234237797558308</left_val>
-            <right_val>-0.1309089958667755</right_val></_></_>
-        <_>
-          <!-- tree 150 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 3 2 -1.</_>
-                <_>
-                  7 1 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2390179801732302e-003</threshold>
-            <left_val>-0.2174324989318848</left_val>
-            <right_val>0.0244357194751501</right_val></_></_>
-        <_>
-          <!-- tree 151 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 2 3 2 -1.</_>
-                <_>
-                  15 2 3 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.3695750907063484e-003</threshold>
-            <left_val>-0.0247745793312788</left_val>
-            <right_val>0.1158865988254547</right_val></_></_>
-        <_>
-          <!-- tree 152 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 2 3 -1.</_>
-                <_>
-                  3 2 1 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.6323970891535282e-003</threshold>
-            <left_val>0.1298937946557999</left_val>
-            <right_val>-0.0381496995687485</right_val></_></_>
-        <_>
-          <!-- tree 153 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 2 14 -1.</_>
-                <_>
-                  14 0 1 14 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0199226494878531</threshold>
-            <left_val>0.0158690698444843</left_val>
-            <right_val>-0.1856296062469482</right_val></_></_>
-        <_>
-          <!-- tree 154 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 12 6 -1.</_>
-                <_>
-                  7 5 4 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0167268496006727</threshold>
-            <left_val>0.1692277044057846</left_val>
-            <right_val>-0.0321176983416080</right_val></_></_>
-        <_>
-          <!-- tree 155 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 3 1 2 -1.</_>
-                <_>
-                  12 3 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-1.4559989795088768e-003</threshold>
-            <left_val>0.0727108269929886</left_val>
-            <right_val>-0.0531024895608425</right_val></_></_>
-        <_>
-          <!-- tree 156 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 9 6 -1.</_>
-                <_>
-                  8 0 9 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1436896026134491</threshold>
-            <left_val>-0.1099907010793686</left_val>
-            <right_val>0.0632115080952644</right_val></_></_>
-        <_>
-          <!-- tree 157 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 3 -1.</_>
-                <_>
-                  15 1 2 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-5.9681031852960587e-003</threshold>
-            <left_val>0.0853514671325684</left_val>
-            <right_val>-0.0319969989359379</right_val></_></_>
-        <_>
-          <!-- tree 158 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 3 2 -1.</_>
-                <_>
-                  3 1 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>8.6067931260913610e-004</threshold>
-            <left_val>-0.0677398666739464</left_val>
-            <right_val>0.0783357918262482</right_val></_></_>
-        <_>
-          <!-- tree 159 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 12 2 1 -1.</_>
-                <_>
-                  16 12 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.2462129127234221e-003</threshold>
-            <left_val>0.0421381592750549</left_val>
-            <right_val>-0.1537978053092957</right_val></_></_>
-        <_>
-          <!-- tree 160 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 12 12 2 -1.</_>
-                <_>
-                  3 13 12 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0231840107589960</threshold>
-            <left_val>0.2355968058109283</left_val>
-            <right_val>-0.0220876298844814</right_val></_></_>
-        <_>
-          <!-- tree 161 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 11 1 2 -1.</_>
-                <_>
-                  12 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.3518847532104701e-005</threshold>
-            <left_val>-0.0491336695849895</left_val>
-            <right_val>0.0353255607187748</right_val></_></_>
-        <_>
-          <!-- tree 162 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 9 2 2 -1.</_>
-                <_>
-                  4 9 1 1 2.</_>
-                <_>
-                  5 10 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.2380428854376078e-003</threshold>
-            <left_val>0.1797892004251480</left_val>
-            <right_val>-0.0249581690877676</right_val></_></_>
-        <_>
-          <!-- tree 163 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 12 2 1 -1.</_>
-                <_>
-                  16 12 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.6487199831753969e-003</threshold>
-            <left_val>-0.0488890595734119</left_val>
-            <right_val>0.0157207604497671</right_val></_></_>
-        <_>
-          <!-- tree 164 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 1 2 -1.</_>
-                <_>
-                  2 12 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.4686430115252733e-003</threshold>
-            <left_val>0.0342142805457115</left_val>
-            <right_val>-0.1369293928146362</right_val></_></_>
-        <_>
-          <!-- tree 165 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 10 4 1 -1.</_>
-                <_>
-                  15 11 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0179013404995203</threshold>
-            <left_val>0.2017021030187607</left_val>
-            <right_val>-5.8616171590983868e-003</right_val></_></_>
-        <_>
-          <!-- tree 166 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 10 1 4 -1.</_>
-                <_>
-                  3 11 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.4372870363295078e-004</threshold>
-            <left_val>-0.0817660167813301</left_val>
-            <right_val>0.0578251294791698</right_val></_></_>
-        <_>
-          <!-- tree 167 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 9 2 1 -1.</_>
-                <_>
-                  16 9 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.2202371666207910e-004</threshold>
-            <left_val>0.0245023705065250</left_val>
-            <right_val>-0.0610220991075039</right_val></_></_>
-        <_>
-          <!-- tree 168 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 9 1 2 -1.</_>
-                <_>
-                  2 9 1 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.6474859807640314e-003</threshold>
-            <left_val>-0.1414107978343964</left_val>
-            <right_val>0.0364049896597862</right_val></_></_>
-        <_>
-          <!-- tree 169 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 5 2 1 -1.</_>
-                <_>
-                  11 5 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.3206011438742280e-004</threshold>
-            <left_val>-0.0436596609652042</left_val>
-            <right_val>0.0481952391564846</right_val></_></_>
-        <_>
-          <!-- tree 170 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 7 4 -1.</_>
-                <_>
-                  8 1 7 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0310860797762871</threshold>
-            <left_val>0.0367696695029736</left_val>
-            <right_val>-0.1427676975727081</right_val></_></_>
-        <_>
-          <!-- tree 171 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 4 2 2 -1.</_>
-                <_>
-                  11 4 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.9447411224246025e-003</threshold>
-            <left_val>0.3504368066787720</left_val>
-            <right_val>-7.0687229745090008e-003</right_val></_></_>
-        <_>
-          <!-- tree 172 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 4 2 2 -1.</_>
-                <_>
-                  6 4 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.0204358305782080e-005</threshold>
-            <left_val>-0.1218914985656738</left_val>
-            <right_val>0.0413166508078575</right_val></_></_>
-        <_>
-          <!-- tree 173 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 4 6 3 -1.</_>
-                <_>
-                  9 5 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0366099290549755</threshold>
-            <left_val>0.0199259296059608</left_val>
-            <right_val>-0.0984719917178154</right_val></_></_>
-        <_>
-          <!-- tree 174 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 4 4 7 -1.</_>
-                <_>
-                  6 4 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0109604299068451</threshold>
-            <left_val>0.1281152069568634</left_val>
-            <right_val>-0.0383881889283657</right_val></_></_>
-        <_>
-          <!-- tree 175 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 0 1 4 -1.</_>
-                <_>
-                  17 2 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.3295450955629349e-003</threshold>
-            <left_val>0.0707607492804527</left_val>
-            <right_val>-0.0289194602519274</right_val></_></_>
-        <_>
-          <!-- tree 176 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 3 8 4 -1.</_>
-                <_>
-                  4 3 8 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0618558302521706</threshold>
-            <left_val>-0.0475871004164219</left_val>
-            <right_val>0.0985863581299782</right_val></_></_>
-        <_>
-          <!-- tree 177 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 7 4 2 -1.</_>
-                <_>
-                  9 7 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0234752092510462</threshold>
-            <left_val>0.0869645625352860</left_val>
-            <right_val>-0.0122541096061468</right_val></_></_>
-        <_>
-          <!-- tree 178 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 8 3 2 -1.</_>
-                <_>
-                  7 8 3 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-9.3669712077826262e-004</threshold>
-            <left_val>0.0812510773539543</left_val>
-            <right_val>-0.0542218498885632</right_val></_></_>
-        <_>
-          <!-- tree 179 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 3 6 9 -1.</_>
-                <_>
-                  10 6 2 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1315189003944397</threshold>
-            <left_val>-0.1539728045463562</left_val>
-            <right_val>0.0100725498050451</right_val></_></_>
-        <_>
-          <!-- tree 180 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 4 4 6 -1.</_>
-                <_>
-                  7 4 2 3 2.</_>
-                <_>
-                  9 7 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.8957380503416061e-003</threshold>
-            <left_val>0.0319623500108719</left_val>
-            <right_val>-0.1361542940139771</right_val></_></_>
-        <_>
-          <!-- tree 181 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 1 2 1 -1.</_>
-                <_>
-                  16 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-8.2765902334358543e-005</threshold>
-            <left_val>0.0532807409763336</left_val>
-            <right_val>-0.0550383105874062</right_val></_></_>
-        <_>
-          <!-- tree 182 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 1 3 -1.</_>
-                <_>
-                  2 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.0361710339784622e-003</threshold>
-            <left_val>0.0354836508631706</left_val>
-            <right_val>-0.1206891983747482</right_val></_></_>
-        <_>
-          <!-- tree 183 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 0 1 4 -1.</_>
-                <_>
-                  17 2 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.8764940798282623e-003</threshold>
-            <left_val>-0.0278693605214357</left_val>
-            <right_val>0.1044073998928070</right_val></_></_>
-        <_>
-          <!-- tree 184 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 1 4 -1.</_>
-                <_>
-                  0 2 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.9125062115490437e-004</threshold>
-            <left_val>0.0979837700724602</left_val>
-            <right_val>-0.0593339614570141</right_val></_></_>
-        <_>
-          <!-- tree 185 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 3 4 10 -1.</_>
-                <_>
-                  13 3 2 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0300707891583443</threshold>
-            <left_val>0.0164330396801233</left_val>
-            <right_val>-0.0933536067605019</right_val></_></_>
-        <_>
-          <!-- tree 186 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 0 2 2 -1.</_>
-                <_>
-                  3 0 1 1 2.</_>
-                <_>
-                  4 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.2220391808077693e-005</threshold>
-            <left_val>0.0752206817269325</left_val>
-            <right_val>-0.0577298216521740</right_val></_></_>
-        <_>
-          <!-- tree 187 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 18 6 -1.</_>
-                <_>
-                  0 3 18 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1495593935251236</threshold>
-            <left_val>-0.5717309117317200</left_val>
-            <right_val>7.4865440838038921e-003</right_val></_></_>
-        <_>
-          <!-- tree 188 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 3 2 6 -1.</_>
-                <_>
-                  4 5 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0101018501445651</threshold>
-            <left_val>0.1866167932748795</left_val>
-            <right_val>-0.0265819206833839</right_val></_></_>
-        <_>
-          <!-- tree 189 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 3 1 6 -1.</_>
-                <_>
-                  12 5 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0235938206315041</threshold>
-            <left_val>-0.3616523146629334</left_val>
-            <right_val>8.6832279339432716e-003</right_val></_></_>
-        <_>
-          <!-- tree 190 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 8 4 -1.</_>
-                <_>
-                  11 2 4 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0562989898025990</threshold>
-            <left_val>0.3809157013893127</left_val>
-            <right_val>-0.0125403897836804</right_val></_></_>
-        <_>
-          <!-- tree 191 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 4 2 2 -1.</_>
-                <_>
-                  12 5 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.8374498874181882e-005</threshold>
-            <left_val>-0.0372395589947701</left_val>
-            <right_val>0.0435059703886509</right_val></_></_>
-        <_>
-          <!-- tree 192 -->
-          <_>
-            <!-- 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>7.3194838478229940e-005</threshold>
-            <left_val>-0.0574802309274673</left_val>
-            <right_val>0.0801668912172318</right_val></_></_>
-        <_>
-          <!-- tree 193 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 2 15 -1.</_>
-                <_>
-                  14 0 1 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0226483792066574</threshold>
-            <left_val>-0.0914651080965996</left_val>
-            <right_val>6.0311011038720608e-003</right_val></_></_>
-        <_>
-          <!-- tree 194 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 2 15 -1.</_>
-                <_>
-                  3 0 1 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.5446818955242634e-003</threshold>
-            <left_val>0.0277416408061981</left_val>
-            <right_val>-0.1718125045299530</right_val></_></_>
-        <_>
-          <!-- tree 195 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 1 6 6 -1.</_>
-                <_>
-                  11 1 3 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1057740971446037</threshold>
-            <left_val>0.5344142913818359</left_val>
-            <right_val>-5.1590129733085632e-003</right_val></_></_>
-        <_>
-          <!-- tree 196 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 7 3 1 -1.</_>
-                <_>
-                  9 8 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.4444771483540535e-003</threshold>
-            <left_val>0.0343015491962433</left_val>
-            <right_val>-0.1451483964920044</right_val></_></_>
-        <_>
-          <!-- tree 197 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 9 3 3 -1.</_>
-                <_>
-                  14 10 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.6781400926411152e-003</threshold>
-            <left_val>-0.0430911704897881</left_val>
-            <right_val>0.1463333964347839</right_val></_></_>
-        <_>
-          <!-- tree 198 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 16 6 -1.</_>
-                <_>
-                  4 5 8 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1010930985212326</threshold>
-            <left_val>-0.1747801005840302</left_val>
-            <right_val>0.0280684307217598</right_val></_></_>
-        <_>
-          <!-- tree 199 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 12 15 -1.</_>
-                <_>
-                  7 0 6 15 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0473572388291359</threshold>
-            <left_val>0.1670453995466232</left_val>
-            <right_val>-0.0158186703920364</right_val></_></_>
-        <_>
-          <!-- tree 200 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 16 10 -1.</_>
-                <_>
-                  8 5 8 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.5767403244972229</threshold>
-            <left_val>-0.6224312782287598</left_val>
-            <right_val>7.9542007297277451e-003</right_val></_></_>
-        <_>
-          <!-- tree 201 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 9 1 3 -1.</_>
-                <_>
-                  8 10 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>1.8059749854728580e-003</threshold>
-            <left_val>-0.0164429899305105</left_val>
-            <right_val>0.0462612397968769</right_val></_></_>
-        <_>
-          <!-- tree 202 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 9 3 1 -1.</_>
-                <_>
-                  10 10 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0146800400689244</threshold>
-            <left_val>8.1173582002520561e-003</left_val>
-            <right_val>-0.5566685795783997</right_val></_></_>
-        <_>
-          <!-- tree 203 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 5 10 -1.</_>
-                <_>
-                  13 5 5 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1689784973859787</threshold>
-            <left_val>-0.3140147924423218</left_val>
-            <right_val>0.0125729897990823</right_val></_></_>
-        <_>
-          <!-- tree 204 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 6 14 3 -1.</_>
-                <_>
-                  2 7 14 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0193899292498827</threshold>
-            <left_val>0.1551029980182648</left_val>
-            <right_val>-0.0279963091015816</right_val></_></_>
-        <_>
-          <!-- tree 205 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 6 6 3 -1.</_>
-                <_>
-                  8 7 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0264466702938080</threshold>
-            <left_val>-0.3146206140518189</left_val>
-            <right_val>0.0173935592174530</right_val></_></_>
-        <_>
-          <!-- tree 206 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 3 4 -1.</_>
-                <_>
-                  0 7 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.5732469297945499e-003</threshold>
-            <left_val>-0.1358314007520676</left_val>
-            <right_val>0.0376659594476223</right_val></_></_>
-        <_>
-          <!-- tree 207 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 11 1 2 -1.</_>
-                <_>
-                  12 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.8531084582209587e-003</threshold>
-            <left_val>-3.6102959420531988e-003</left_val>
-            <right_val>0.1896488964557648</right_val></_></_>
-        <_>
-          <!-- tree 208 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 11 1 2 -1.</_>
-                <_>
-                  5 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7107769710710272e-005</threshold>
-            <left_val>-0.0843098610639572</left_val>
-            <right_val>0.0545401610434055</right_val></_></_>
-        <_>
-          <!-- tree 209 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 9 3 3 -1.</_>
-                <_>
-                  14 10 1 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0203770492225885</threshold>
-            <left_val>0.1165964007377625</left_val>
-            <right_val>-0.0136959999799728</right_val></_></_>
-        <_>
-          <!-- tree 210 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 12 11 -1.</_>
-                <_>
-                  3 3 6 11 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1735146939754486</threshold>
-            <left_val>-0.0126557499170303</left_val>
-            <right_val>0.3574686050415039</right_val></_></_>
-        <_>
-          <!-- tree 211 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 12 9 3 -1.</_>
-                <_>
-                  10 12 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0542285591363907</threshold>
-            <left_val>9.2725036665797234e-003</left_val>
-            <right_val>-0.1769926995038986</right_val></_></_>
-        <_>
-          <!-- tree 212 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 8 2 6 -1.</_>
-                <_>
-                  3 10 2 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4582608863711357e-003</threshold>
-            <left_val>-0.0437470003962517</left_val>
-            <right_val>0.1033746972680092</right_val></_></_>
-        <_>
-          <!-- tree 213 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 3 6 12 -1.</_>
-                <_>
-                  12 9 6 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0637689232826233</threshold>
-            <left_val>0.0219606403261423</left_val>
-            <right_val>-0.2052810937166214</right_val></_></_>
-        <_>
-          <!-- tree 214 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 13 12 2 -1.</_>
-                <_>
-                  8 13 6 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0112160202115774</threshold>
-            <left_val>-0.0601588003337383</left_val>
-            <right_val>0.0776893869042397</right_val></_></_>
-        <_>
-          <!-- tree 215 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 12 8 3 -1.</_>
-                <_>
-                  8 12 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0393657200038433</threshold>
-            <left_val>-0.0201384108513594</left_val>
-            <right_val>0.1276084035634995</right_val></_></_>
-        <_>
-          <!-- tree 216 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 8 3 -1.</_>
-                <_>
-                  6 12 4 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0161337107419968</threshold>
-            <left_val>0.1127976030111313</left_val>
-            <right_val>-0.0601407214999199</right_val></_></_>
-        <_>
-          <!-- tree 217 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 2 2 -1.</_>
-                <_>
-                  9 0 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-1.6923110233619809e-003</threshold>
-            <left_val>0.0280561596155167</left_val>
-            <right_val>-0.0492299310863018</right_val></_></_>
-        <_>
-          <!-- tree 218 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 4 2 2 -1.</_>
-                <_>
-                  5 4 1 1 2.</_>
-                <_>
-                  6 5 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.9907790526049212e-005</threshold>
-            <left_val>0.0722095370292664</left_val>
-            <right_val>-0.0577128715813160</right_val></_></_>
-        <_>
-          <!-- tree 219 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 0 2 4 -1.</_>
-                <_>
-                  11 1 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.3856992423534393e-003</threshold>
-            <left_val>4.2978320270776749e-003</left_val>
-            <right_val>-0.4872570931911469</right_val></_></_>
-        <_>
-          <!-- tree 220 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 2 2 -1.</_>
-                <_>
-                  8 0 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-6.8764640018343925e-003</threshold>
-            <left_val>-0.3555175065994263</left_val>
-            <right_val>0.0109930103644729</right_val></_></_>
-        <_>
-          <!-- tree 221 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 8 4 -1.</_>
-                <_>
-                  7 0 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.4763470329344273e-003</threshold>
-            <left_val>0.1619573980569840</left_val>
-            <right_val>-0.0268841590732336</right_val></_></_>
-        <_>
-          <!-- tree 222 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 12 1 -1.</_>
-                <_>
-                  6 1 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.8878160994499922e-003</threshold>
-            <left_val>-0.1101962998509407</left_val>
-            <right_val>0.0409429408609867</right_val></_></_>
-        <_>
-          <!-- tree 223 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 3 6 4 -1.</_>
-                <_>
-                  10 3 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0632312968373299</threshold>
-            <left_val>0.4909915924072266</left_val>
-            <right_val>-5.1781800575554371e-003</right_val></_></_>
-        <_>
-          <!-- tree 224 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 3 6 4 -1.</_>
-                <_>
-                  5 3 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0566077493131161</threshold>
-            <left_val>0.3793733119964600</left_val>
-            <right_val>-0.0108209000900388</right_val></_></_>
-        <_>
-          <!-- tree 225 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 2 16 13 -1.</_>
-                <_>
-                  5 2 8 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2626726925373077</threshold>
-            <left_val>-0.4480285942554474</left_val>
-            <right_val>0.0105561902746558</right_val></_></_>
-        <_>
-          <!-- tree 226 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 2 2 -1.</_>
-                <_>
-                  1 0 1 1 2.</_>
-                <_>
-                  2 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.4856478527653962e-005</threshold>
-            <left_val>0.0653926804661751</left_val>
-            <right_val>-0.0620450004935265</right_val></_></_>
-        <_>
-          <!-- tree 227 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  15 0 2 2 -1.</_>
-                <_>
-                  16 0 1 1 2.</_>
-                <_>
-                  15 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.7022080252645537e-005</threshold>
-            <left_val>-0.0353392213582993</left_val>
-            <right_val>0.0484495908021927</right_val></_></_>
-        <_>
-          <!-- tree 228 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 2 2 -1.</_>
-                <_>
-                  1 0 1 1 2.</_>
-                <_>
-                  2 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.6384996646083891e-005</threshold>
-            <left_val>-0.0554682798683643</left_val>
-            <right_val>0.0811991393566132</right_val></_></_>
-        <_>
-          <!-- tree 229 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 8 8 7 -1.</_>
-                <_>
-                  12 8 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1349100023508072</threshold>
-            <left_val>-0.5649768114089966</left_val>
-            <right_val>5.8416058309376240e-003</right_val></_></_>
-        <_>
-          <!-- tree 230 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 8 8 7 -1.</_>
-                <_>
-                  2 8 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0173286907374859</threshold>
-            <left_val>0.0686116516590118</left_val>
-            <right_val>-0.0624860487878323</right_val></_></_>
-        <_>
-          <!-- tree 231 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 8 6 3 -1.</_>
-                <_>
-                  13 9 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1159003973007202</threshold>
-            <left_val>0.3599152863025665</left_val>
-            <right_val>-7.0457011461257935e-003</right_val></_></_>
-        <_>
-          <!-- tree 232 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 8 6 3 -1.</_>
-                <_>
-                  3 9 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.5972709991037846e-003</threshold>
-            <left_val>-0.0610489808022976</left_val>
-            <right_val>0.0729080066084862</right_val></_></_>
-        <_>
-          <!-- tree 233 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 0 16 12 -1.</_>
-                <_>
-                  1 6 16 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.5851712226867676</threshold>
-            <left_val>0.1706732064485550</left_val>
-            <right_val>-0.0274902693927288</right_val></_></_>
-        <_>
-          <!-- tree 234 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 5 4 -1.</_>
-                <_>
-                  9 0 5 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0164765398949385</threshold>
-            <left_val>0.1303893029689789</left_val>
-            <right_val>-0.0331927388906479</right_val></_></_>
-        <_>
-          <!-- tree 235 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 4 10 -1.</_>
-                <_>
-                  7 0 2 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0474574081599712</threshold>
-            <left_val>0.0938887968659401</left_val>
-            <right_val>-0.0477792508900166</right_val></_></_>
-        <_>
-          <!-- tree 236 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 4 3 2 -1.</_>
-                <_>
-                  8 5 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-7.1776830591261387e-003</threshold>
-            <left_val>-0.1972271949052811</left_val>
-            <right_val>0.0238158907741308</right_val></_></_>
-        <_>
-          <!-- tree 237 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 2 2 -1.</_>
-                <_>
-                  13 7 1 1 2.</_>
-                <_>
-                  12 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.9368229964748025e-004</threshold>
-            <left_val>-0.0385106988251209</left_val>
-            <right_val>0.1253774017095566</right_val></_></_>
-        <_>
-          <!-- tree 238 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 6 9 3 -1.</_>
-                <_>
-                  3 7 3 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1589708030223846</threshold>
-            <left_val>0.4269199967384338</left_val>
-            <right_val>-0.0113530196249485</right_val></_></_>
-        <_>
-          <!-- tree 239 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 7 2 2 -1.</_>
-                <_>
-                  13 7 1 1 2.</_>
-                <_>
-                  12 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.5724339755252004e-003</threshold>
-            <left_val>0.1303405016660690</left_val>
-            <right_val>-0.0292303599417210</right_val></_></_>
-        <_>
-          <!-- tree 240 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 7 2 2 -1.</_>
-                <_>
-                  4 7 1 1 2.</_>
-                <_>
-                  5 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.2912302382756025e-005</threshold>
-            <left_val>-0.0539115294814110</left_val>
-            <right_val>0.0894209668040276</right_val></_></_>
-        <_>
-          <!-- tree 241 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 7 8 2 -1.</_>
-                <_>
-                  9 7 4 1 2.</_>
-                <_>
-                  5 8 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.9537890851497650e-003</threshold>
-            <left_val>0.0292203202843666</left_val>
-            <right_val>-0.1614741981029511</right_val></_></_>
-        <_>
-          <!-- tree 242 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 4 3 9 -1.</_>
-                <_>
-                  7 4 1 9 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0278543103486300</threshold>
-            <left_val>8.1461891531944275e-003</left_val>
-            <right_val>-0.5010797977447510</right_val></_></_>
-        <_>
-          <!-- tree 243 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 4 3 7 -1.</_>
-                <_>
-                  13 4 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0307268109172583</threshold>
-            <left_val>-0.3919588029384613</left_val>
-            <right_val>6.9215041585266590e-003</right_val></_></_>
-        <_>
-          <!-- tree 244 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 4 3 7 -1.</_>
-                <_>
-                  4 4 1 7 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0356646999716759</threshold>
-            <left_val>-0.7585719227790833</left_val>
-            <right_val>5.3641172125935555e-003</right_val></_></_>
-        <_>
-          <!-- tree 245 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 12 10 3 -1.</_>
-                <_>
-                  4 13 10 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0360276810824871</threshold>
-            <left_val>-0.0191031396389008</left_val>
-            <right_val>0.2439292967319489</right_val></_></_>
-        <_>
-          <!-- tree 246 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 13 8 2 -1.</_>
-                <_>
-                  4 14 8 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.5820151939988136e-004</threshold>
-            <left_val>-0.0886877924203873</left_val>
-            <right_val>0.0565083399415016</right_val></_></_>
-        <_>
-          <!-- tree 247 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 3 5 12 -1.</_>
-                <_>
-                  13 6 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1285891979932785</threshold>
-            <left_val>-0.1347049027681351</left_val>
-            <right_val>0.0150261903181672</right_val></_></_>
-        <_>
-          <!-- tree 248 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 6 8 -1.</_>
-                <_>
-                  0 2 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0254423692822456</threshold>
-            <left_val>-0.1902146935462952</left_val>
-            <right_val>0.0212604906409979</right_val></_></_>
-        <_>
-          <!-- tree 249 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 5 3 3 -1.</_>
-                <_>
-                  13 6 3 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0512643307447433</threshold>
-            <left_val>-3.6050491034984589e-003</left_val>
-            <right_val>0.3700175881385803</right_val></_></_>
-        <_>
-          <!-- tree 250 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 5 3 3 -1.</_>
-                <_>
-                  5 6 1 3 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0326501503586769</threshold>
-            <left_val>-0.0135911498218775</left_val>
-            <right_val>0.3276687860488892</right_val></_></_>
-        <_>
-          <!-- tree 251 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  17 0 1 3 -1.</_>
-                <_>
-                  16 1 1 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.5878241546452045e-003</threshold>
-            <left_val>-8.4945466369390488e-003</left_val>
-            <right_val>0.0897279679775238</right_val></_></_>
-        <_>
-          <!-- tree 252 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 4 3 4 -1.</_>
-                <_>
-                  8 5 3 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0458750911056995</threshold>
-            <left_val>0.4126788973808289</left_val>
-            <right_val>-9.8934909328818321e-003</right_val></_></_>
-        <_>
-          <!-- tree 253 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 3 6 2 -1.</_>
-                <_>
-                  7 3 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.4674488492310047e-003</threshold>
-            <left_val>-0.0308022703975439</left_val>
-            <right_val>0.0607560500502586</right_val></_></_>
-        <_>
-          <!-- tree 254 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 9 2 -1.</_>
-                <_>
-                  12 3 3 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1069127991795540</threshold>
-            <left_val>-0.0305466204881668</left_val>
-            <right_val>0.1470393985509872</right_val></_></_>
-        <_>
-          <!-- tree 255 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 3 6 2 -1.</_>
-                <_>
-                  7 3 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0582343190908432</threshold>
-            <left_val>1.7207229975610971e-003</left_val>
-            <right_val>-0.6001799702644348</right_val></_></_>
-        <_>
-          <!-- tree 256 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 3 6 2 -1.</_>
-                <_>
-                  8 3 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0541815198957920</threshold>
-            <left_val>0.0111133400350809</left_val>
-            <right_val>-0.4260107874870300</right_val></_></_>
-        <_>
-          <!-- tree 257 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 3 5 12 -1.</_>
-                <_>
-                  13 6 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1989209949970245</threshold>
-            <left_val>1.5127729857340455e-003</left_val>
-            <right_val>-0.6666517853736877</right_val></_></_>
-        <_>
-          <!-- tree 258 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 5 12 -1.</_>
-                <_>
-                  0 6 5 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0836698114871979</threshold>
-            <left_val>-0.1597495973110199</left_val>
-            <right_val>0.0258307307958603</right_val></_></_>
-        <_>
-          <!-- tree 259 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 14 10 1 -1.</_>
-                <_>
-                  4 14 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0383935607969761</threshold>
-            <left_val>-0.4158290028572083</left_val>
-            <right_val>9.7704501822590828e-003</right_val></_></_>
-        <_>
-          <!-- tree 260 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 12 9 3 -1.</_>
-                <_>
-                  5 12 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0576191917061806</threshold>
-            <left_val>9.3507859855890274e-003</left_val>
-            <right_val>-0.4187014102935791</right_val></_></_>
-        <_>
-          <!-- tree 261 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 9 14 4 -1.</_>
-                <_>
-                  2 11 14 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0440335609018803</threshold>
-            <left_val>-0.0463782697916031</left_val>
-            <right_val>0.0919744595885277</right_val></_></_>
-        <_>
-          <!-- tree 262 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 2 18 8 -1.</_>
-                <_>
-                  0 4 18 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2660895884037018</threshold>
-            <left_val>0.0100852102041245</left_val>
-            <right_val>-0.3897384107112885</right_val></_></_>
-        <_>
-          <!-- tree 263 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 6 6 3 -1.</_>
-                <_>
-                  9 7 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0536184795200825</threshold>
-            <left_val>-0.5088896155357361</left_val>
-            <right_val>4.0682330727577209e-003</right_val></_></_>
-        <_>
-          <!-- tree 264 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 2 2 -1.</_>
-                <_>
-                  7 0 1 1 2.</_>
-                <_>
-                  8 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.6047519794665277e-005</threshold>
-            <left_val>0.0691266432404518</left_val>
-            <right_val>-0.0591945089399815</right_val></_></_>
-        <_>
-          <!-- tree 265 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 2 2 -1.</_>
-                <_>
-                  10 0 1 1 2.</_>
-                <_>
-                  9 1 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.5685410188743845e-005</threshold>
-            <left_val>-0.0400558486580849</left_val>
-            <right_val>0.0543046407401562</right_val></_></_>
-        <_>
-          <!-- tree 266 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 1 3 -1.</_>
-                <_>
-                  7 1 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-5.3049330745125189e-005</threshold>
-            <left_val>0.0731744170188904</left_val>
-            <right_val>-0.0598583295941353</right_val></_></_>
-        <_>
-          <!-- tree 267 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 11 3 -1.</_>
-                <_>
-                  4 1 11 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0124693904072046</threshold>
-            <left_val>-0.3152252137660980</left_val>
-            <right_val>0.0117351301014423</right_val></_></_>
-        <_>
-          <!-- tree 268 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 10 6 -1.</_>
-                <_>
-                  0 9 5 3 2.</_>
-                <_>
-                  5 12 5 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0927336066961288</threshold>
-            <left_val>0.3232898116111755</left_val>
-            <right_val>-0.0127641502767801</right_val></_></_>
-        <_>
-          <!-- tree 269 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 18 9 -1.</_>
-                <_>
-                  6 4 6 9 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.5954974293708801</threshold>
-            <left_val>8.3142714574933052e-003</left_val>
-            <right_val>-0.5672199130058289</right_val></_></_>
-        <_>
-          <!-- tree 270 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 4 12 9 -1.</_>
-                <_>
-                  6 7 4 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.5378745198249817</threshold>
-            <left_val>-0.0141389099881053</left_val>
-            <right_val>0.3267138004302979</right_val></_></_>
-        <_>
-          <!-- tree 271 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 6 6 -1.</_>
-                <_>
-                  6 10 6 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1902792006731033</threshold>
-            <left_val>-0.6616215705871582</left_val>
-            <right_val>7.4805710464715958e-003</right_val></_></_>
-        <_>
-          <!-- tree 272 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 9 3 6 -1.</_>
-                <_>
-                  0 12 3 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0674360468983650</threshold>
-            <left_val>5.3405929356813431e-003</left_val>
-            <right_val>-0.5753700733184815</right_val></_></_>
-        <_>
-          <!-- tree 273 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 8 3 2 -1.</_>
-                <_>
-                  8 9 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7849049763754010e-003</threshold>
-            <left_val>0.0343016088008881</left_val>
-            <right_val>-0.1244985982775688</right_val></_></_>
-        <_>
-          <!-- tree 274 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 10 2 -1.</_>
-                <_>
-                  4 5 10 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0179164893925190</threshold>
-            <left_val>0.2131116986274719</left_val>
-            <right_val>-0.0218786392360926</right_val></_></_>
-        <_>
-          <!-- tree 275 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 2 5 3 -1.</_>
-                <_>
-                  8 3 5 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>3.4813389647752047e-003</threshold>
-            <left_val>0.0268206801265478</left_val>
-            <right_val>-0.1016602963209152</right_val></_></_>
-        <_>
-          <!-- tree 276 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 13 2 2 -1.</_>
-                <_>
-                  8 13 1 1 2.</_>
-                <_>
-                  9 14 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.6392209799960256e-003</threshold>
-            <left_val>-0.0226296707987785</left_val>
-            <right_val>0.1679535061120987</right_val></_></_>
-        <_>
-          <!-- tree 277 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 2 2 -1.</_>
-                <_>
-                  14 0 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>5.8717228966997936e-005</threshold>
-            <left_val>-0.0969148203730583</left_val>
-            <right_val>0.0540798194706440</right_val></_></_>
-        <_>
-          <!-- tree 278 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 4 3 2 -1.</_>
-                <_>
-                  4 5 3 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.1430910089984536e-003</threshold>
-            <left_val>-0.0913046523928642</left_val>
-            <right_val>0.0478410087525845</right_val></_></_>
-        <_>
-          <!-- tree 279 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 5 16 4 -1.</_>
-                <_>
-                  1 7 16 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1274714022874832</threshold>
-            <left_val>0.1231575012207031</left_val>
-            <right_val>-0.0393226295709610</right_val></_></_>
-        <_>
-          <!-- tree 280 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 6 1 2 -1.</_>
-                <_>
-                  4 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0409889809088781e-005</threshold>
-            <left_val>-0.0465187989175320</left_val>
-            <right_val>0.0935849994421005</right_val></_></_>
-        <_>
-          <!-- tree 281 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 11 2 2 -1.</_>
-                <_>
-                  17 11 1 1 2.</_>
-                <_>
-                  16 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-7.7158221974968910e-003</threshold>
-            <left_val>-0.6546670794487000</left_val>
-            <right_val>3.9967028424143791e-003</right_val></_></_>
-        <_>
-          <!-- tree 282 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 11 2 2 -1.</_>
-                <_>
-                  0 11 1 1 2.</_>
-                <_>
-                  1 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.7107769710710272e-005</threshold>
-            <left_val>-0.0640250220894814</left_val>
-            <right_val>0.0632654428482056</right_val></_></_>
-        <_>
-          <!-- tree 283 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 12 2 1 -1.</_>
-                <_>
-                  16 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.5383179998025298e-003</threshold>
-            <left_val>0.0226351507008076</left_val>
-            <right_val>-0.1935117989778519</right_val></_></_>
-        <_>
-          <!-- tree 284 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 12 2 1 -1.</_>
-                <_>
-                  1 12 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.4936917624436319e-005</threshold>
-            <left_val>0.0578822083771229</left_val>
-            <right_val>-0.0738588199019432</right_val></_></_>
-        <_>
-          <!-- tree 285 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 18 6 -1.</_>
-                <_>
-                  0 9 18 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1365308016538620</threshold>
-            <left_val>-0.0149675700813532</left_val>
-            <right_val>0.2666974067687988</right_val></_></_>
-        <_>
-          <!-- tree 286 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 7 12 -1.</_>
-                <_>
-                  4 5 7 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.1899372041225433</threshold>
-            <left_val>0.0125067904591560</left_val>
-            <right_val>-0.3534477949142456</right_val></_></_>
-        <_>
-          <!-- tree 287 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 6 6 3 -1.</_>
-                <_>
-                  9 7 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0314559191465378</threshold>
-            <left_val>0.0183809790760279</left_val>
-            <right_val>-0.0603883489966393</right_val></_></_>
-        <_>
-          <!-- tree 288 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 6 6 3 -1.</_>
-                <_>
-                  7 7 2 1 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0269035492092371</threshold>
-            <left_val>-0.2218240946531296</left_val>
-            <right_val>0.0186347793787718</right_val></_></_>
-        <_>
-          <!-- tree 289 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 3 6 6 -1.</_>
-                <_>
-                  12 3 6 3 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.2581453025341034</threshold>
-            <left_val>-0.8018553853034973</left_val>
-            <right_val>3.8440190837718546e-004</right_val></_></_>
-        <_>
-          <!-- tree 290 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 3 6 6 -1.</_>
-                <_>
-                  6 3 3 6 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1513974070549011</threshold>
-            <left_val>0.0267061796039343</left_val>
-            <right_val>-0.1536087989807129</right_val></_></_>
-        <_>
-          <!-- tree 291 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 2 12 9 -1.</_>
-                <_>
-                  8 2 4 9 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0440951585769653</threshold>
-            <left_val>0.0494831092655659</left_val>
-            <right_val>-0.0132203595712781</right_val></_></_>
-        <_>
-          <!-- tree 292 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 7 3 1 -1.</_>
-                <_>
-                  2 7 1 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7376670148223639e-003</threshold>
-            <left_val>-0.0296104997396469</left_val>
-            <right_val>0.1274116039276123</right_val></_></_>
-        <_>
-          <!-- tree 293 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 2 2 -1.</_>
-                <_>
-                  14 0 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.7472518421709538e-003</threshold>
-            <left_val>0.0369098298251629</left_val>
-            <right_val>-0.1863466948270798</right_val></_></_>
-        <_>
-          <!-- tree 294 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 2 12 9 -1.</_>
-                <_>
-                  6 2 4 9 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2713251113891602</threshold>
-            <left_val>0.4345330893993378</left_val>
-            <right_val>-9.0847145766019821e-003</right_val></_></_>
-        <_>
-          <!-- tree 295 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 1 4 -1.</_>
-                <_>
-                  8 2 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.7428919933736324e-003</threshold>
-            <left_val>0.0166457295417786</left_val>
-            <right_val>-0.0998101606965065</right_val></_></_>
-        <_>
-          <!-- tree 296 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 0 12 1 -1.</_>
-                <_>
-                  5 0 6 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>9.8173134028911591e-003</threshold>
-            <left_val>-0.0557747483253479</left_val>
-            <right_val>0.0711958929896355</right_val></_></_>
-        <_>
-          <!-- tree 297 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 0 4 1 -1.</_>
-                <_>
-                  11 0 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>1.1679739691317081e-003</threshold>
-            <left_val>-0.0676950290799141</left_val>
-            <right_val>0.0412361510097981</right_val></_></_>
-        <_>
-          <!-- tree 298 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 0 4 1 -1.</_>
-                <_>
-                  9 0 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-3.1285739969462156e-003</threshold>
-            <left_val>0.0793463066220284</left_val>
-            <right_val>-0.0644870027899742</right_val></_></_>
-        <_>
-          <!-- tree 299 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 3 2 1 -1.</_>
-                <_>
-                  9 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.1147250663489103e-003</threshold>
-            <left_val>-0.1048358008265495</left_val>
-            <right_val>0.0149682499468327</right_val></_></_>
-        <_>
-          <!-- tree 300 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 3 2 1 -1.</_>
-                <_>
-                  8 3 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7796000465750694e-003</threshold>
-            <left_val>0.2892560958862305</left_val>
-            <right_val>-0.0134435798972845</right_val></_></_>
-        <_>
-          <!-- tree 301 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 8 4 -1.</_>
-                <_>
-                  9 2 4 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.2185384035110474</threshold>
-            <left_val>-0.5621880292892456</left_val>
-            <right_val>2.4572419933974743e-003</right_val></_></_>
-        <_>
-          <!-- tree 302 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 3 18 1 -1.</_>
-                <_>
-                  9 3 9 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0542420297861099</threshold>
-            <left_val>-0.2120805978775024</left_val>
-            <right_val>0.0192837398499250</right_val></_></_>
-        <_>
-          <!-- tree 303 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 13 2 2 -1.</_>
-                <_>
-                  13 13 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2505840752273798e-003</threshold>
-            <left_val>8.7050450965762138e-003</left_val>
-            <right_val>-0.0469894893467426</right_val></_></_>
-        <_>
-          <!-- tree 304 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 0 1 4 -1.</_>
-                <_>
-                  7 0 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0273687392473221</threshold>
-            <left_val>5.3823711350560188e-003</left_val>
-            <right_val>-0.7339485287666321</right_val></_></_>
-        <_>
-          <!-- tree 305 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 7 2 4 -1.</_>
-                <_>
-                  16 8 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0171208307147026</threshold>
-            <left_val>0.1783629953861237</left_val>
-            <right_val>-7.9886056482791901e-003</right_val></_></_>
-        <_>
-          <!-- tree 306 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 2 4 -1.</_>
-                <_>
-                  0 8 2 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.8321221731603146e-003</threshold>
-            <left_val>0.0193902608007193</left_val>
-            <right_val>-0.2057818025350571</right_val></_></_>
-        <_>
-          <!-- tree 307 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 13 3 2 -1.</_>
-                <_>
-                  10 13 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.9258757866919041e-004</threshold>
-            <left_val>0.0525361597537994</left_val>
-            <right_val>-0.0348935909569263</right_val></_></_>
-        <_>
-          <!-- tree 308 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 13 3 2 -1.</_>
-                <_>
-                  7 13 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1873079240322113e-003</threshold>
-            <left_val>-0.0308929309248924</left_val>
-            <right_val>0.1182458028197289</right_val></_></_>
-        <_>
-          <!-- tree 309 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 13 2 2 -1.</_>
-                <_>
-                  13 13 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.6870400179177523e-003</threshold>
-            <left_val>-0.0478884391486645</left_val>
-            <right_val>0.0109662897884846</right_val></_></_>
-        <_>
-          <!-- tree 310 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 13 2 2 -1.</_>
-                <_>
-                  4 13 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.7761799972504377e-003</threshold>
-            <left_val>0.0283233094960451</left_val>
-            <right_val>-0.1357100009918213</right_val></_></_>
-        <_>
-          <!-- tree 311 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 11 6 4 -1.</_>
-                <_>
-                  12 11 2 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0268767699599266</threshold>
-            <left_val>0.0109366700053215</left_val>
-            <right_val>-0.1321447044610977</right_val></_></_>
-        <_>
-          <!-- tree 312 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 11 6 4 -1.</_>
-                <_>
-                  4 11 2 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0397437512874603</threshold>
-            <left_val>-0.2774949073791504</left_val>
-            <right_val>0.0147927999496460</right_val></_></_>
-        <_>
-          <!-- tree 313 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 11 18 3 -1.</_>
-                <_>
-                  6 11 6 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0519120208919048</threshold>
-            <left_val>-0.0306210797280073</left_val>
-            <right_val>0.1386394947767258</right_val></_></_>
-        <_>
-          <!-- tree 314 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 13 4 1 -1.</_>
-                <_>
-                  7 13 2 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.9659938667900860e-005</threshold>
-            <left_val>0.0652230083942413</left_val>
-            <right_val>-0.0611205287277699</right_val></_></_>
-        <_>
-          <!-- tree 315 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 9 4 3 -1.</_>
-                <_>
-                  7 10 4 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0208992697298527</threshold>
-            <left_val>0.0100139798596501</left_val>
-            <right_val>-0.3789927065372467</right_val></_></_>
-        <_>
-          <!-- tree 316 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 5 4 9 -1.</_>
-                <_>
-                  5 8 4 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0346408486366272</threshold>
-            <left_val>-0.0236316304653883</left_val>
-            <right_val>0.1669196039438248</right_val></_></_>
-        <_>
-          <!-- tree 317 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 5 2 8 -1.</_>
-                <_>
-                  11 7 2 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>2.8383019380271435e-003</threshold>
-            <left_val>0.0228540804237127</left_val>
-            <right_val>-0.0597838684916496</right_val></_></_>
-        <_>
-          <!-- tree 318 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 8 2 2 -1.</_>
-                <_>
-                  6 8 1 1 2.</_>
-                <_>
-                  7 9 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.1739569492638111e-003</threshold>
-            <left_val>-0.0186796691268682</left_val>
-            <right_val>0.1997753977775574</right_val></_></_>
-        <_>
-          <!-- tree 319 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 1 4 -1.</_>
-                <_>
-                  8 2 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0150487199425697</threshold>
-            <left_val>-0.3185037970542908</left_val>
-            <right_val>3.2470070291310549e-003</right_val></_></_>
-        <_>
-          <!-- tree 320 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 1 4 1 -1.</_>
-                <_>
-                  10 2 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-7.0679760538041592e-003</threshold>
-            <left_val>-0.3494650125503540</left_val>
-            <right_val>0.0113516096025705</right_val></_></_>
-        <_>
-          <!-- tree 321 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 2 6 9 -1.</_>
-                <_>
-                  6 5 6 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.2012647986412048</threshold>
-            <left_val>-0.0153439603745937</left_val>
-            <right_val>0.2706956863403320</right_val></_></_>
-        <_>
-          <!-- tree 322 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 6 1 6 -1.</_>
-                <_>
-                  7 8 1 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0454341918230057</threshold>
-            <left_val>-0.1544011980295181</left_val>
-            <right_val>0.0267359893769026</right_val></_></_>
-        <_>
-          <!-- tree 323 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 6 2 2 -1.</_>
-                <_>
-                  11 6 1 1 2.</_>
-                <_>
-                  10 7 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>5.0224931328557432e-005</threshold>
-            <left_val>-0.0454120188951492</left_val>
-            <right_val>0.0583584196865559</right_val></_></_>
-        <_>
-          <!-- tree 324 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 7 3 2 -1.</_>
-                <_>
-                  7 7 1 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.8120330534875393e-003</threshold>
-            <left_val>-0.0352263003587723</left_val>
-            <right_val>0.1206099987030029</right_val></_></_>
-        <_>
-          <!-- tree 325 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 4 2 6 -1.</_>
-                <_>
-                  10 6 2 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.1098996996879578</threshold>
-            <left_val>-8.2655288279056549e-003</left_val>
-            <right_val>0.2711330056190491</right_val></_></_>
-        <_>
-          <!-- tree 326 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 4 6 2 -1.</_>
-                <_>
-                  8 6 2 2 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0350026711821556</threshold>
-            <left_val>0.0418249294161797</left_val>
-            <right_val>-0.1444368064403534</right_val></_></_>
-        <_>
-          <!-- tree 327 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 18 6 -1.</_>
-                <_>
-                  0 7 18 2 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0569862984120846</threshold>
-            <left_val>-0.0448646917939186</left_val>
-            <right_val>0.0947646573185921</right_val></_></_>
-        <_>
-          <!-- tree 328 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 6 4 2 -1.</_>
-                <_>
-                  7 7 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.9248030148446560e-003</threshold>
-            <left_val>0.0438571982085705</left_val>
-            <right_val>-0.1155669018626213</right_val></_></_>
-        <_>
-          <!-- tree 329 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 6 6 9 -1.</_>
-                <_>
-                  14 9 2 3 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0364132300019264</threshold>
-            <left_val>-0.0259249694645405</left_val>
-            <right_val>0.0877993777394295</right_val></_></_>
-        <_>
-          <!-- tree 330 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 6 10 3 -1.</_>
-                <_>
-                  4 7 10 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>4.9817138351500034e-003</threshold>
-            <left_val>-0.0624991990625858</left_val>
-            <right_val>0.0629830136895180</right_val></_></_>
-        <_>
-          <!-- tree 331 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 3 4 8 -1.</_>
-                <_>
-                  13 5 4 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0157324392348528</threshold>
-            <left_val>0.1091820001602173</left_val>
-            <right_val>-0.0354424603283405</right_val></_></_>
-        <_>
-          <!-- tree 332 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 4 11 2 -1.</_>
-                <_>
-                  0 5 11 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0323861613869667</threshold>
-            <left_val>-0.6141089797019959</left_val>
-            <right_val>6.1990139074623585e-003</right_val></_></_>
-        <_>
-          <!-- tree 333 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 5 2 2 -1.</_>
-                <_>
-                  16 5 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0191630292683840</threshold>
-            <left_val>-3.0063120648264885e-003</left_val>
-            <right_val>0.4802902936935425</right_val></_></_>
-        <_>
-          <!-- tree 334 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 5 2 2 -1.</_>
-                <_>
-                  1 5 1 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.6093212808482349e-005</threshold>
-            <left_val>0.0573367811739445</left_val>
-            <right_val>-0.0716157332062721</right_val></_></_>
-        <_>
-          <!-- tree 335 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  16 0 2 13 -1.</_>
-                <_>
-                  16 0 1 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.1779610067605972e-003</threshold>
-            <left_val>0.0471811406314373</left_val>
-            <right_val>-0.0946075767278671</right_val></_></_>
-        <_>
-          <!-- tree 336 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 0 2 13 -1.</_>
-                <_>
-                  1 0 1 13 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0148553596809506</threshold>
-            <left_val>-0.1387726068496704</left_val>
-            <right_val>0.0338439010083675</right_val></_></_>
-        <_>
-          <!-- tree 337 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 1 9 3 -1.</_>
-                <_>
-                  9 1 3 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0238599907606840</threshold>
-            <left_val>0.1998057067394257</left_val>
-            <right_val>-0.0122430603951216</right_val></_></_>
-        <_>
-          <!-- tree 338 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  9 2 4 8 -1.</_>
-                <_>
-                  9 2 4 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0785807296633720</threshold>
-            <left_val>-0.4961810111999512</left_val>
-            <right_val>9.5836250111460686e-003</right_val></_></_>
-        <_>
-          <!-- tree 339 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 1 12 9 -1.</_>
-                <_>
-                  3 4 12 3 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0289697498083115</threshold>
-            <left_val>0.2014721035957336</left_val>
-            <right_val>-0.0211850497871637</right_val></_></_>
-        <_>
-          <!-- tree 340 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 10 8 3 -1.</_>
-                <_>
-                  0 11 8 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0450992509722710</threshold>
-            <left_val>7.2327218949794769e-003</left_val>
-            <right_val>-0.5757725238800049</right_val></_></_>
-        <_>
-          <!-- tree 341 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 11 18 4 -1.</_>
-                <_>
-                  9 11 9 2 2.</_>
-                <_>
-                  0 13 9 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0393024682998657</threshold>
-            <left_val>0.0255729109048843</left_val>
-            <right_val>-0.1493856012821198</right_val></_></_>
-        <_>
-          <!-- tree 342 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 5 2 4 -1.</_>
-                <_>
-                  4 6 2 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0384178198873997</threshold>
-            <left_val>4.3327999301254749e-003</left_val>
-            <right_val>-0.8469793796539307</right_val></_></_>
-        <_>
-          <!-- tree 343 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  8 0 3 6 -1.</_>
-                <_>
-                  9 2 1 2 9.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0157523807138205</threshold>
-            <left_val>0.0215584896504879</left_val>
-            <right_val>-0.0945848673582077</right_val></_></_>
-        <_>
-          <!-- tree 344 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 1 4 2 -1.</_>
-                <_>
-                  6 1 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>6.5488961990922689e-004</threshold>
-            <left_val>-0.1137140020728111</left_val>
-            <right_val>0.0342830009758472</right_val></_></_>
-        <_>
-          <!-- tree 345 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 12 2 3 -1.</_>
-                <_>
-                  13 13 2 1 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>6.0493252240121365e-003</threshold>
-            <left_val>-0.0153995295986533</left_val>
-            <right_val>0.1082850024104118</right_val></_></_>
-        <_>
-          <!-- tree 346 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  6 0 4 8 -1.</_>
-                <_>
-                  6 0 2 4 2.</_>
-                <_>
-                  8 4 2 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0380066595971584</threshold>
-            <left_val>8.7194433435797691e-003</left_val>
-            <right_val>-0.4566295146942139</right_val></_></_>
-        <_>
-          <!-- tree 347 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  10 2 6 2 -1.</_>
-                <_>
-                  10 2 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>2.2284449078142643e-003</threshold>
-            <left_val>-0.0540577992796898</left_val>
-            <right_val>0.0205975491553545</right_val></_></_>
-        <_>
-          <!-- tree 348 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 2 6 2 -1.</_>
-                <_>
-                  5 2 3 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0116986101493239</threshold>
-            <left_val>0.1834432035684586</left_val>
-            <right_val>-0.0235534105449915</right_val></_></_>
-        <_>
-          <!-- tree 349 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 4 3 -1.</_>
-                <_>
-                  14 0 2 3 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0235775094479322</threshold>
-            <left_val>-0.3377870023250580</left_val>
-            <right_val>4.2076371610164642e-003</right_val></_></_>
-        <_>
-          <!-- tree 350 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  2 3 5 2 -1.</_>
-                <_>
-                  2 4 5 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.7685960046947002e-003</threshold>
-            <left_val>-0.1034085005521774</left_val>
-            <right_val>0.0397500097751617</right_val></_></_>
-        <_>
-          <!-- tree 351 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 3 11 -1.</_>
-                <_>
-                  14 1 1 11 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0626740828156471</threshold>
-            <left_val>0.2563458979129791</left_val>
-            <right_val>-2.6633420493453741e-003</right_val></_></_>
-        <_>
-          <!-- tree 352 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 11 3 -1.</_>
-                <_>
-                  4 1 11 1 3.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>4.9983179196715355e-003</threshold>
-            <left_val>-0.0596107505261898</left_val>
-            <right_val>0.0683519020676613</right_val></_></_>
-        <_>
-          <!-- tree 353 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 0 2 12 -1.</_>
-                <_>
-                  12 0 1 6 2.</_>
-                <_>
-                  11 6 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0137960799038410</threshold>
-            <left_val>-0.1292528063058853</left_val>
-            <right_val>0.0131471604108810</right_val></_></_>
-        <_>
-          <!-- tree 354 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 0 2 12 -1.</_>
-                <_>
-                  5 0 1 6 2.</_>
-                <_>
-                  6 6 1 6 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>7.3155229911208153e-003</threshold>
-            <left_val>0.0236708596348763</left_val>
-            <right_val>-0.1731462031602860</right_val></_></_>
-        <_>
-          <!-- tree 355 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 5 2 4 -1.</_>
-                <_>
-                  11 5 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>0.0160576999187469</threshold>
-            <left_val>0.0210999101400375</left_val>
-            <right_val>-0.0365347005426884</right_val></_></_>
-        <_>
-          <!-- tree 356 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 3 3 12 -1.</_>
-                <_>
-                  1 7 3 4 3.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.1364033967256546</threshold>
-            <left_val>0.3252066969871521</left_val>
-            <right_val>-0.0125922495499253</right_val></_></_>
-        <_>
-          <!-- tree 357 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 5 2 4 -1.</_>
-                <_>
-                  11 5 1 4 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-4.3760128319263458e-003</threshold>
-            <left_val>-0.0689269527792931</left_val>
-            <right_val>0.0126556698232889</right_val></_></_>
-        <_>
-          <!-- tree 358 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  7 5 4 2 -1.</_>
-                <_>
-                  7 5 4 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-0.0251937098801136</threshold>
-            <left_val>0.6360712051391602</left_val>
-            <right_val>-6.9624311290681362e-003</right_val></_></_>
-        <_>
-          <!-- tree 359 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 5 10 -1.</_>
-                <_>
-                  13 5 5 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0992545634508133</threshold>
-            <left_val>-0.1638306975364685</left_val>
-            <right_val>0.0402428992092609</right_val></_></_>
-        <_>
-          <!-- tree 360 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 1 6 8 -1.</_>
-                <_>
-                  0 5 6 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.1403169743716717e-003</threshold>
-            <left_val>0.0453241616487503</left_val>
-            <right_val>-0.0904397219419479</right_val></_></_>
-        <_>
-          <!-- tree 361 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 7 4 2 -1.</_>
-                <_>
-                  14 8 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-9.2972591519355774e-003</threshold>
-            <left_val>0.0730063766241074</left_val>
-            <right_val>-0.0215709600597620</right_val></_></_>
-        <_>
-          <!-- tree 362 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  0 7 4 2 -1.</_>
-                <_>
-                  0 8 4 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.5849390812218189e-003</threshold>
-            <left_val>-0.1413342058658600</left_val>
-            <right_val>0.0347219407558441</right_val></_></_>
-        <_>
-          <!-- tree 363 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 3 3 8 -1.</_>
-                <_>
-                  14 5 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0825936570763588</threshold>
-            <left_val>2.2461370099335909e-003</left_val>
-            <right_val>-0.3325017094612122</right_val></_></_>
-        <_>
-          <!-- tree 364 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 3 3 8 -1.</_>
-                <_>
-                  1 5 3 4 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0447855107486248</threshold>
-            <left_val>-0.0163932293653488</left_val>
-            <right_val>0.3196890950202942</right_val></_></_>
-        <_>
-          <!-- tree 365 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 3 4 10 -1.</_>
-                <_>
-                  12 3 2 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0149416103959084</threshold>
-            <left_val>-0.0136180296540260</left_val>
-            <right_val>0.0911836773157120</right_val></_></_>
-        <_>
-          <!-- tree 366 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 3 4 10 -1.</_>
-                <_>
-                  4 3 2 10 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-4.8578871064819396e-004</threshold>
-            <left_val>0.0450273416936398</left_val>
-            <right_val>-0.0991435274481773</right_val></_></_>
-        <_>
-          <!-- tree 367 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  11 2 4 7 -1.</_>
-                <_>
-                  12 2 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-1.0591340251266956e-003</threshold>
-            <left_val>0.0437940806150436</left_val>
-            <right_val>-0.0463229306042194</right_val></_></_>
-        <_>
-          <!-- tree 368 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 2 4 7 -1.</_>
-                <_>
-                  4 2 2 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.0124091897159815</threshold>
-            <left_val>-0.1189147979021072</left_val>
-            <right_val>0.0417256988584995</right_val></_></_>
-        <_>
-          <!-- tree 369 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 7 2 2 -1.</_>
-                <_>
-                  14 7 1 1 2.</_>
-                <_>
-                  13 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-2.0622629672288895e-003</threshold>
-            <left_val>0.1331578940153122</left_val>
-            <right_val>-0.0239935107529163</right_val></_></_>
-        <_>
-          <!-- tree 370 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  3 7 2 2 -1.</_>
-                <_>
-                  3 7 1 1 2.</_>
-                <_>
-                  4 8 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>8.8945101015269756e-004</threshold>
-            <left_val>-0.0329415686428547</left_val>
-            <right_val>0.1312008947134018</right_val></_></_>
-        <_>
-          <!-- tree 371 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  14 0 2 2 -1.</_>
-                <_>
-                  14 0 1 2 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>-1.6302269650623202e-003</threshold>
-            <left_val>-0.0539117492735386</left_val>
-            <right_val>0.0144488299265504</right_val></_></_>
-        <_>
-          <!-- tree 372 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  4 0 2 2 -1.</_>
-                <_>
-                  4 0 2 1 2.</_></rects>
-              <tilted>1</tilted></feature>
-            <threshold>7.9654958099126816e-003</threshold>
-            <left_val>0.0144072799012065</left_val>
-            <right_val>-0.2618730962276459</right_val></_></_>
-        <_>
-          <!-- tree 373 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  12 4 2 2 -1.</_>
-                <_>
-                  13 4 1 1 2.</_>
-                <_>
-                  12 5 1 1 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-6.1501268646679819e-005</threshold>
-            <left_val>0.0330021195113659</left_val>
-            <right_val>-0.0297673903405666</right_val></_></_>
-        <_>
-          <!-- tree 374 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  5 1 8 14 -1.</_>
-                <_>
-                  5 1 4 7 2.</_>
-                <_>
-                  9 8 4 7 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>-0.2012939006090164</threshold>
-            <left_val>-0.4931235909461975</left_val>
-            <right_val>7.3236711323261261e-003</right_val></_></_>
-        <_>
-          <!-- tree 375 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  13 0 5 10 -1.</_>
-                <_>
-                  13 5 5 5 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>1.2285460252314806e-003</threshold>
-            <left_val>0.0346601791679859</left_val>
-            <right_val>-0.0940746665000916</right_val></_></_>
-        <_>
-          <!-- tree 376 -->
-          <_>
-            <!-- root node -->
-            <feature>
-              <rects>
-                <_>
-                  1 4 16 4 -1.</_>
-                <_>
-                  1 6 16 2 2.</_></rects>
-              <tilted>0</tilted></feature>
-            <threshold>0.0104913795366883</threshold>
-            <left_val>-0.0389849282801151</left_val>
-            <right_val>0.1268351972103119</right_val></_></_></trees>
-      <stage_threshold>-1.0771520137786865</stage_threshold>
-      <parent>18</parent>
-      <next>-1</next></_></stages></classifier_Nariz_20stages>
-</opencv_storage>
diff --git a/branches/nota-show-app/img/00.jpg b/branches/nota-show-app/img/00.jpg
deleted file mode 100644 (file)
index 73a3938..0000000
Binary files a/branches/nota-show-app/img/00.jpg and /dev/null differ
diff --git a/branches/nota-show-app/img/01.jpg b/branches/nota-show-app/img/01.jpg
deleted file mode 100644 (file)
index 3b39815..0000000
Binary files a/branches/nota-show-app/img/01.jpg and /dev/null differ
diff --git a/branches/nota-show-app/img/02.jpg b/branches/nota-show-app/img/02.jpg
deleted file mode 100644 (file)
index bf2ee3a..0000000
Binary files a/branches/nota-show-app/img/02.jpg and /dev/null differ
diff --git a/branches/nota-show-app/src/Makefile.am b/branches/nota-show-app/src/Makefile.am
deleted file mode 100644 (file)
index 7956731..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-lib_LIBRARIES = \
-       libnsautil.a
-
-libnsautil_a_SOURCES = \
-       notaio.c   \
-       notaio.h   \
-       pdu.c   \
-       pdu.h
-
-bin_PROGRAMS = \
-       service \
-       application
-       
-service_SOURCES = service_nb.c service.h
-service_LDADD = $(NOTA_H_IN_LIBS) libnsautil.a
-service_CFLAGS = $(NOTA_H_IN_CFLAGS) -Wall -DSERVICE_MAIN
-
-application_SOURCES = application.c    
-application_LDADD = $(NOTA_H_IN_LIBS) libnsautil.a
-application_CFLAGS = $(NOTA_H_IN_CFLAGS) -Wall
-
-if HAVE_GTK
-bin_PROGRAMS += \
-       gtkservice \
-       gtkapp
-
-gtkservice_SOURCES = gtkservice.c service_nb.c service.h ts7200/ts7200_client.h
-gtkservice_LDADD = $(NOTA_H_IN_LIBS) $(GTK_LIBS) libnsautil.a ts7200/libts7200connect.a
-gtkservice_CFLAGS = $(NOTA_H_IN_CFLAGS) $(GTK_CFLAGS) -Wall
-
-gtkapp_SOURCES = gtkapp.c
-gtkapp_LDADD = $(NOTA_H_IN_LIBS) $(GTK_LIBS) libnsautil.a
-gtkapp_CFLAGS = $(NOTA_H_IN_CFLAGS) $(GTK_CFLAGS) -Wall
-endif
-
-if HAVE_GST
-bin_PROGRAMS += gstapplication
-
-gstapplication_SOURCES = gstapplication.c
-gstapplication_LDADD = $(NOTA_H_IN_LIBS) $(GST_LIBS) -lgstapp-0.10 libnsautil.a
-gstapplication_CFLAGS = $(GST_CFLAGS) $(NOTA_H_IN_CFLAGS) -Wall
-endif
-
-if HAVE_OPENCV
-bin_PROGRAMS += facedetect
-
-facedetect_SOURCES = facedetect.cpp
-facedetect_LDADD = $(OPENCV_LIBS) $(NOTA_H_IN_LIBS) libnsautil.a
-facedetect_CFLAGS = $(OPENCV_CFLAGS) $(NOTA_H_IN_CFLAGS) -Wall
-endif
diff --git a/branches/nota-show-app/src/application.c b/branches/nota-show-app/src/application.c
deleted file mode 100644 (file)
index 2e3a545..0000000
+++ /dev/null
@@ -1,124 +0,0 @@
-/* Application Node */
-
-#include <stdlib.h>
-#include <stdio.h>
-#include "notaio.h"
-#include "pdu.h"       /* defines the test string (TESTSTRING)
-                                        * and Service ID (DEFAULT_SID) to use.
-                                        */
-
-char* get_image(int* len) {
-       const char* IMG_PATH= "img/%02d.jpg";
-       const int IMG_CNT = 3;
-       static int img_idx = 0;
-
-       char path[256];
-       FILE* img_file; 
-       int img_size;
-       char* img_buf = 0;
-       int rl;
-
-       sprintf(path,IMG_PATH,img_idx);
-       printf("Sending image %s\n",path);
-       
-       img_file = fopen(path,"r");
-       if (!img_file) {
-               printf("get_image: ERROR opening image\n");
-               return NULL;
-       }
-
-       fseek(img_file,0,SEEK_END);
-       img_size = ftell(img_file);
-       fseek(img_file,0,SEEK_SET);
-       printf("Image size %d\n",img_size);
-
-       img_buf = malloc(img_size);
-       rl=fread(img_buf,1,img_size,img_file);
-
-       if (rl!=img_size) {
-               printf("get_image: ERROR reading image\n");
-               free(img_buf);
-               img_buf = 0;
-       }
-       img_idx = (img_idx+1) % IMG_CNT;
-
-       if(len) *len = img_size;
-       
-       return img_buf;
-}
-
-int main(int argc, char* argv[])
-{
-       /* Service socket to use for connecting to the service node. */
-       HSSockID sockid;
-       HErrorCode err;
-
-/* The first parameter specifies the service to connect to (SID).
- * The other parameters are reserved for legacy purposes.
- */
-       sockid = n_connect(DEFAULT_SID, NULL, NULL);
-
-/* sockid will be the number of the socket we got (>0), if successful,
- * or <0 if something went wrong. Let's check:
- */
-       if (sockid < 0) {
-               return -1;
-       }
-
-       printf("Connected socket %d to service '%d'.\n", sockid, DEFAULT_SID);
-
-       while(1) {
-               int img_len = 0;
-               char* img;
-               int len = 0;
-               ServiceMessage* smsg;
-
-               img = get_image(&img_len);
-               if(img) {
-                       smsg = pack_pdu(PUT_IMAGE, (uns8*)img, img_len, &len);
-                       free(img);
-                               
-                       /* Send the through the socket specified by sockid. The last parameter, 
-                        * HSSendBlocking, means we will
-                        * use blocking mode, i.e. the call to Hsend will only return once all
-                        * data has been sent (or an error is detected).
-                        */
-                       err = n_send(sockid, smsg, len, HSSendBlocking);
-                       free(smsg);
-                       if(err < 0){
-                               return -1;
-                       }
-
-                       /* If no error condition was raised, Hsend will return the
-                        * number of bytes sent. Let's check this against what we
-                        * intended to send, just to be sure (with a blocking call, the
-                        * return value should always be equal to the "data_len" parameter
-                        * of Hsend).
-                        */
-                       if (err == len)
-                               printf("Send successful.\n");
-                       else
-                               printf("Sent %d out of %d bytes.\n", err, len);
-
-                       printf("Would you like to disconnect (\"y\" for yes)?\n");
-                       char c = getchar();
-                       if (c == 'y') {
-                               // We're done; tell the server to close the connection.
-                               len = 0;
-                               smsg = pack_pdu (DISCONNECT,NULL, 0, &len);
-                               n_send(sockid, smsg, len, HSSendBlocking);
-                               free(smsg);
-       
-                               if(err < 0) {
-                                  return -1;
-                               }
-                               break;
-                       }
-               }
-       }
-       
-       n_disconnect(sockid);
-       
-       return 0;
-}
-
diff --git a/branches/nota-show-app/src/facedetect.cpp b/branches/nota-show-app/src/facedetect.cpp
deleted file mode 100644 (file)
index 6f81367..0000000
+++ /dev/null
@@ -1,192 +0,0 @@
-#define CV_NO_BACKWARD_COMPATIBILITY
-
-#include "opencv/cv.h"
-#include "opencv/highgui.h"
-
-#include <iostream>
-#include <cstdio>
-
-#include <unistd.h>
-#include <netinet/in.h> 
-
-extern "C" {
-#include "notaio.h"
-#include "pdu.h"
-}
-
-#ifdef _EiC
-#define WIN32
-#endif
-
-using namespace std;
-using namespace cv;
-
-bool detectAndDraw( Mat& img,
-                   CascadeClassifier& cascade, CascadeClassifier& nestedCascade,
-                   double scale);
-
-String cascadeName = "haarcascades/haarcascade_frontalface_alt.xml";
-String nestedCascadeName = "haarcascades/haarcascade_mcs_nose.xml";
-
-void log(const char* text) {
-       cout << text;
-}
-
-CascadeClassifier cascade, nestedCascade;
-
-bool found = false;
-struct _FACE {
-       int x,y,r;
-} face;
-
-void detect(unsigned char* buf,int buf_len) {
-    double scale = 1;
-       Mat image;
-
-       image = imdecode(Mat(1, buf_len, CV_8U, buf), 1);
-
-       if( !image.empty() )
-    {
-       found = detectAndDraw( image, cascade, nestedCascade, scale );
-               waitKey(10);
-    }
-}
-
-const char* result = "NoTA face detection";
-
-int main( int argc, const char** argv )
-{
-       /* Service socket to use for connecting to the service node. */
-       HSSockID sockid;
-       HErrorCode err;
-
-       /* The first parameter specifies the service to connect to (SID).
-        * The other parameters are reserved for legacy purposes.
-        */
-       sockid = n_connect(DEFAULT_SID, NULL, NULL);
-
-       /* sockid will be the number of the socket we got (>0), if successful,
-        * or <0 if something went wrong. Let's check:
-        */
-       if (sockid < 0) {
-               return NULL;
-       }
-
-       ServiceCallbacks callbacks = {0};
-       callbacks.log = &log;
-       callbacks.put_image = &detect;
-
-       ServiceCallbacks* cb=&callbacks;
-       
-       LOG2("Connected socket %d to service '%d'.\n", sockid, DEFAULT_SID);
-
-    if( !cascade.load( cascadeName ) )
-    {
-        cerr << "ERROR: Could not load classifier cascade" << endl;
-        return -1;
-    }
-       nestedCascade.load( nestedCascadeName );
-       
-       cvNamedWindow( result, 1 );
-
-       while(true) {
-               int smsg_len=0;
-               ServiceMessage* smsg = pack_pdu(GET_IMAGE, NULL, 0, &smsg_len);
-
-               err = n_send(sockid, smsg, smsg_len, HSSendBlocking);
-               free(smsg);
-               if(err < 0){
-                       return NULL;
-               }
-
-               usleep(100000);
-
-               found = false;
-               int err = read_smsg(&sockid, HSReceiveNonBlocking, cb); 
-               if (err < 0)    //error reading service message
-               {
-                       usleep(100000);
-               }
-               if(found) {
-                       struct _FACE f = { htonl(face.x), htonl(face.y), htonl(face.r) };
-                       smsg = pack_pdu(FACE_FOUND,(uns8*)&f,sizeof(f),&smsg_len);
-                       n_send(sockid,smsg,smsg_len,HSSendBlocking);
-                       free(smsg);
-               }
-               
-       }
-
-    cvDestroyWindow(result);
-
-    return 0;
-}
-
-bool detectAndDraw( Mat& img,
-                   CascadeClassifier& cascade, CascadeClassifier& nestedCascade,
-                   double scale)
-{
-       bool found = false;
-    int i = 0;
-    double t = 0;
-    vector<Rect> faces;
-    const static Scalar colors[] =  { CV_RGB(0,0,255),
-        CV_RGB(0,128,255),
-        CV_RGB(0,255,255),
-        CV_RGB(0,255,0),
-        CV_RGB(255,128,0),
-        CV_RGB(255,255,0),
-        CV_RGB(255,0,0),
-        CV_RGB(255,0,255)} ;
-    Mat gray, smallImg( cvRound (img.rows/scale), cvRound(img.cols/scale), CV_8UC1 );
-
-    cvtColor( img, gray, CV_BGR2GRAY );
-    resize( gray, smallImg, smallImg.size(), 0, 0, INTER_LINEAR );
-    equalizeHist( smallImg, smallImg );
-
-    t = (double)cvGetTickCount();
-    cascade.detectMultiScale( smallImg, faces,
-        1.1, 2, 0
-        |CV_HAAR_FIND_BIGGEST_OBJECT
-        //|CV_HAAR_DO_ROUGH_SEARCH
-        |CV_HAAR_SCALE_IMAGE
-        ,
-        Size(30, 30) );
-    t = (double)cvGetTickCount() - t;
-    printf( "detection time = %g ms\n", t/((double)cvGetTickFrequency()*1000.) );
-    for( vector<Rect>::const_iterator r = faces.begin(); r != faces.end(); r++, i++ )
-    {
-               Mat smallImgROI;
-        vector<Rect> nestedObjects;
-        Point center;
-        Scalar color = colors[i%8];
-        int radius;
-        center.x = cvRound((r->x + r->width*0.5)*scale);
-        center.y = cvRound((r->y + r->height*0.5)*scale);
-        radius = cvRound((r->width + r->height)*0.25*scale);
-
-               found = true; face.x = center.x; face.y = center.y; face.r = radius;
-               
-        circle( img, center, radius, color, 3, 8, 0 );
-        if( nestedCascade.empty() )
-            continue;
-        smallImgROI = smallImg(*r);
-        nestedCascade.detectMultiScale( smallImgROI, nestedObjects,
-            1.1, 2, 0
-            //|CV_HAAR_FIND_BIGGEST_OBJECT
-            //|CV_HAAR_DO_ROUGH_SEARCH
-            //|CV_HAAR_DO_CANNY_PRUNING
-            |CV_HAAR_SCALE_IMAGE
-            ,
-            Size(30, 30) );
-        for( vector<Rect>::const_iterator nr = nestedObjects.begin(); nr != nestedObjects.end(); nr++ )
-        {
-            center.x = cvRound((r->x + nr->x + nr->width*0.5)*scale);
-            center.y = cvRound((r->y + nr->y + nr->height*0.5)*scale);
-            radius = cvRound((nr->width + nr->height)*0.25*scale);
-            circle( img, center, radius, color, 3, 8, 0 );
-        }
-    }  
-    cv::imshow( result, img );    
-       return found;
-}
-
diff --git a/branches/nota-show-app/src/gstapplication.c b/branches/nota-show-app/src/gstapplication.c
deleted file mode 100644 (file)
index fa32471..0000000
+++ /dev/null
@@ -1,149 +0,0 @@
-/***************************************************************************
- *            gstapplication.c
- *
- *  Wed Nov 18 15:06:29 2009
- *  Copyright  2009  marcin
- *  <marcin.miklas@teleca.com>
- ****************************************************************************/
-
-#include <gst/gst.h>
-#include <gst/app/gstappsink.h>
-#include <signal.h>
-
-#include "notaio.h"
-#include "pdu.h"
-
-
-typedef struct
-{
-  GstElement *pipe;
-  GstElement *src;
-  GstElement *flt;
-  GstElement *vfl;
-  GstElement *vrt;
-  GstElement *enc;
-  GstElement *sink;
-
-  gboolean stop;
-} App;
-
-void quitHandler(int sig);
-void pipeline_init(App *app, gboolean start);
-void pipeline_cleanup(App* app);
-
-App s_app;
-
-int main(int argc, char* argv[])
-{
-       App* app = &s_app;
-       int frame_counter = 0;
-       ServiceMessage* smsg;
-       int smsg_len = 0;
-
-       /* Service socket to use for connecting to the service node. */
-       HSSockID sockid;
-       HErrorCode err;
-
-       /* The first parameter specifies the service to connect to (SID).
-        * The other parameters are reserved for legacy purposes.
-        */
-       sockid = n_connect(DEFAULT_SID, NULL, NULL);
-
-       /* sockid will be the number of the socket we got (>0), if successful,
-        * or <0 if something went wrong. Let's check:
-        */
-       if (sockid < 0) {
-               return -1;
-       }
-
-       printf("Connected socket %d to service '%d'.\n", sockid, DEFAULT_SID);
-
-       gst_init (&argc, &argv);
-       pipeline_init(app, TRUE);
-
-       printf("gstreamer pipeline started\n");
-
-       // register CTRL+C handling
-       signal(SIGINT, quitHandler);
-
-       // flip image
-       if(argc>1 && argv[1][0]=='f')
-               g_object_set(G_OBJECT(app->vfl), "method",  2, NULL);
-
-       while (!app->stop && !gst_app_sink_is_eos (GST_APP_SINK (app->sink))) {
-               GstBuffer *buf;
-
-               frame_counter += 1;
-
-               buf = gst_app_sink_pull_buffer (GST_APP_SINK (app->sink));
-               smsg = pack_pdu(PUT_IMAGE, GST_BUFFER_DATA(buf), GST_BUFFER_SIZE(buf), &smsg_len);
-               gst_buffer_unref (buf);
-
-               /* Send the through the socket specified by sockid. The last parameter, 
-                * HSSendBlocking, means we will
-                * use blocking mode, i.e. the call to Hsend will only return once all
-                * data has been sent (or an error is detected).
-                */
-               err = n_send(sockid, smsg, smsg_len, HSSendBlocking);
-               free(smsg);
-               if(err < 0){
-                       return -1;
-               }
-
-               /* If no error condition was raised, Hsend will return the
-                * number of bytes sent. Let's check this against what we
-                * intended to send, just to be sure (with a blocking call, the
-                    * return value should always be equal to the "data_len" parameter
-                * of Hsend).
-                */
-               if (err == smsg_len)
-                       printf("Frame %5d send.\n",frame_counter);
-               else
-                       printf("Sent %d out of %d bytes.\n", err, smsg_len);
-
-       }
-
-       pipeline_cleanup (app);
-
-       smsg = pack_pdu (DISCONNECT,NULL, 0, &smsg_len);
-       n_send(sockid, smsg, smsg_len, HSSendBlocking);
-       free(smsg);
-
-       n_disconnect(sockid);
-       
-       return 0;
-}
-
-void quitHandler(int sig) {
-       printf("\nStopping...\n");
-       s_app.stop = TRUE;
-}
-
-void pipeline_init(App *app, gboolean start) {
-       GstCaps* flt_caps = gst_caps_new_simple ("video/x-raw-yuv",
-             "width", G_TYPE_INT, 320,
-             "height", G_TYPE_INT, 240,
-             "framerate", GST_TYPE_FRACTION, 10, 1,
-             NULL);
-       
-       app->pipe = gst_pipeline_new (NULL);
-       app->src = gst_element_factory_make ("v4l2src", NULL);
-       app->flt = gst_element_factory_make ("capsfilter", "flt");
-       g_object_set (G_OBJECT (app->flt), "caps", flt_caps, NULL);
-       app->vrt = gst_element_factory_make ("videorate", "vr");
-       app->vfl = gst_element_factory_make ("videoflip", "vfl");
-       g_object_set(G_OBJECT(app->vfl), "method",  0, NULL);
-       app->enc = gst_element_factory_make ("jpegenc", NULL);
-       app->sink = gst_element_factory_make ("appsink", NULL);
-
-       gst_bin_add_many (GST_BIN (app->pipe), app->src, app->flt, app->vrt, app->vfl, app->enc, app->sink, NULL);
-       gst_element_link_many (app->src, app->flt, app->vrt, app->vfl, app->enc, app->sink, NULL);
-
-       if (start) 
-               gst_element_set_state (app->pipe, GST_STATE_PLAYING);
-}
-
-void pipeline_cleanup(App* app) {
-       gst_element_set_state (app->pipe, GST_STATE_NULL);
-       //TODO free pipeline
-}
diff --git a/branches/nota-show-app/src/gtkapp.c b/branches/nota-show-app/src/gtkapp.c
deleted file mode 100644 (file)
index 7abf3b1..0000000
+++ /dev/null
@@ -1,142 +0,0 @@
-/***************************************************************************
- *            gtkapp.c
- *
- *  Wed Nov 18 10:46:06 2009
- *  Copyright  2009  Marcin Miklas
- *  <marcin.miklas@teleca.com>
- ****************************************************************************/
-
-#include <gtk/gtk.h>
-#include <string.h> // for strlen
-#include <netinet/in.h> 
-#include <stdlib.h>
-#include <unistd.h>
-
-#include "notaio.h"
-#include "pdu.h"
-
-GtkWidget* g_image = NULL;
-GtkWidget* g_text_view = NULL;
-
-void displayUI()
-{
-       GtkWidget* mainWindow = gtk_window_new(GTK_WINDOW_TOPLEVEL);
-
-       gtk_window_set_default_size(GTK_WINDOW(mainWindow), 400, 300);
-       gtk_window_set_title(GTK_WINDOW(mainWindow), "NoTA Application");
-       gtk_window_set_position(GTK_WINDOW(mainWindow), GTK_WIN_POS_CENTER_ALWAYS);
-
-       gtk_signal_connect(GTK_OBJECT(mainWindow), "destroy", G_CALLBACK(gtk_main_quit), NULL);
-
-       GtkWidget *vbox = gtk_vbox_new(FALSE,2);
-       gtk_container_add(GTK_CONTAINER(mainWindow),vbox);
-
-       g_text_view = gtk_text_view_new();
-       gtk_text_view_set_editable(GTK_TEXT_VIEW(g_text_view),FALSE);
-       gtk_text_view_set_cursor_visible(GTK_TEXT_VIEW(g_text_view),FALSE);
-       
-       GtkWidget* swindow = gtk_scrolled_window_new (NULL, NULL);
-       gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (swindow),
-                                  GTK_POLICY_AUTOMATIC,
-                                  GTK_POLICY_AUTOMATIC);
-       gtk_container_add(GTK_CONTAINER(swindow), g_text_view);
-       
-       g_image = gtk_image_new();
-       GdkPixbuf* pixbuf = gtk_widget_render_icon(GTK_WIDGET(g_image),GTK_STOCK_MISSING_IMAGE,GTK_ICON_SIZE_DIALOG, NULL);
-       gtk_image_set_from_pixbuf(GTK_IMAGE(g_image),pixbuf);
-           
-       gtk_box_pack_end(GTK_BOX(vbox), swindow, TRUE, TRUE, 0);
-       gtk_box_pack_end(GTK_BOX(vbox),g_image,TRUE,TRUE,0);
-
-       gtk_widget_show_all(mainWindow);
-}
-
-void gtklog(const char* str) {
-       GtkTextBuffer* text_buffer;
-       GtkTextIter iter;
-
-       gdk_threads_enter();
-
-       text_buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(g_text_view));
-       gtk_text_buffer_insert_at_cursor(text_buffer,str,strlen(str));
-       gtk_text_buffer_get_end_iter(text_buffer,&iter);
-       gtk_text_view_scroll_to_iter(GTK_TEXT_VIEW(g_text_view),&iter,0,FALSE,0,0);
-
-       gdk_threads_leave();
-}
-
-void show_image(unsigned char* img_buf,int size) {
-       gdk_threads_enter();
-
-       GdkPixbufLoader* loader = gdk_pixbuf_loader_new();
-       gdk_pixbuf_loader_write(loader,(guchar*)img_buf,size,NULL);
-       gdk_pixbuf_loader_close(loader,NULL);
-       GdkPixbuf* pixbuf = gdk_pixbuf_loader_get_pixbuf(loader);
-       gtk_image_set_from_pixbuf(GTK_IMAGE(g_image),pixbuf);
-       g_object_unref(loader);
-
-       gdk_threads_leave();
-}
-
-void* app(ServiceCallbacks* cb) {
-       /* Service socket to use for connecting to the service node. */
-       HSSockID sockid;
-       HErrorCode err;
-
-       /* The first parameter specifies the service to connect to (SID).
-        * The other parameters are reserved for legacy purposes.
-        */
-       sockid = n_connect(DEFAULT_SID, NULL, NULL);
-
-       /* sockid will be the number of the socket we got (>0), if successful,
-        * or <0 if something went wrong. Let's check:
-        */
-       if (sockid < 0) {
-               return NULL;
-       }
-
-       LOG2("Connected socket %d to service '%d'.\n", sockid, DEFAULT_SID);
-
-       while(TRUE) {
-               int smsg_len;
-               ServiceMessage* smsg = pack_pdu(GET_IMAGE, NULL, 0, &smsg_len);
-
-               err = n_send(sockid, smsg, smsg_len, HSSendBlocking);
-               free(smsg);
-               if(err < 0){
-                       return NULL;
-               }
-
-               usleep(100000);
-
-               int err = read_smsg(&sockid, HSReceiveNonBlocking, cb); 
-               if (err < 0)    //error reading service message
-               {
-                       usleep(100000);
-               }
-       }
-
-}
-
-int main(int argc, char *argv[])
-{
-       if (!g_thread_supported()) {
-               g_thread_init(NULL);
-       }
-       gdk_threads_init();
-       gdk_threads_enter();
-       
-       gtk_init(&argc, &argv);
-
-       displayUI();
-
-       ServiceCallbacks* cb = g_new0(ServiceCallbacks,1);
-       cb->log = &gtklog;
-       cb->put_image = &show_image;
-       g_thread_create((GThreadFunc)app,cb,FALSE,NULL);
-       
-       gtk_main();
-
-       gdk_threads_leave();
-       return 0;
-}
diff --git a/branches/nota-show-app/src/gtkservice.c b/branches/nota-show-app/src/gtkservice.c
deleted file mode 100644 (file)
index 1bcba42..0000000
+++ /dev/null
@@ -1,236 +0,0 @@
-/***************************************************************************
- *            gtkservice.c
- *
- *  Wed Nov 18 10:46:06 2009
- *  Copyright  2009  Marcin Miklas, Bartlomiej Swiercz
- *  <marcin.miklas@teleca.com>
- *  <bartlomiej.swiercz@teleca.com>
- ****************************************************************************/
-
-#include <gtk/gtk.h>
-#include <glib.h>
-#include <string.h> // for strlen
-#include <unistd.h>
-#include "service.h"
-#include "ts7200/ts7200_client.h"
-
-GtkWidget* g_image = NULL;
-GtkWidget* g_text_view = NULL;
-GtkWidget* act_state[2] = { NULL, NULL };
-GtkWidget* act_info[2] = { NULL, NULL };
-volatile int run_check = 1;
-
-void terminate()
-{
-    run_check = 0;
-    gtk_main_quit();
-}
-
-void displayUI()
-{
-    GtkWidget* mainWindow = gtk_window_new( GTK_WINDOW_TOPLEVEL );
-    act_state[0] = gtk_check_button_new();
-    gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( act_state[0] ), FALSE );
-    act_state[1] = gtk_check_button_new();
-    gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( act_state[1] ), FALSE );
-    act_info[0]  = gtk_label_new( "Not connected" );
-    act_info[1]  = gtk_label_new( "Not connected" );
-
-    gtk_window_set_default_size(GTK_WINDOW(mainWindow), 700, 600);
-    gtk_window_set_title(GTK_WINDOW(mainWindow), "NoTA Service - operator's panel");
-    gtk_window_set_position(GTK_WINDOW(mainWindow), GTK_WIN_POS_CENTER_ALWAYS);
-    gtk_container_set_border_width( GTK_CONTAINER( mainWindow ), 5 );
-
-       gtk_signal_connect(GTK_OBJECT(mainWindow), "destroy", G_CALLBACK( terminate ), NULL);
-
-    GtkWidget *hbox_main = gtk_hbox_new( FALSE, 2 );
-       gtk_container_add( GTK_CONTAINER( mainWindow ), hbox_main );
-       GtkWidget *vbox = gtk_vbox_new(FALSE,2);
-       gtk_box_pack_start( GTK_BOX( hbox_main ), vbox, TRUE, TRUE, 0 );
-
-    GtkWidget *frame_r = gtk_frame_new( " System log monitor: " );
-       gtk_box_pack_start( GTK_BOX( hbox_main ), frame_r, TRUE, TRUE, 0 );
-
-       g_text_view = gtk_text_view_new();
-       gtk_text_view_set_editable(GTK_TEXT_VIEW(g_text_view),FALSE);
-       gtk_text_view_set_cursor_visible(GTK_TEXT_VIEW(g_text_view),FALSE);
-       
-       GtkWidget* swindow = gtk_scrolled_window_new (NULL, NULL);
-       gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (swindow),
-                                  GTK_POLICY_AUTOMATIC,
-                                  GTK_POLICY_AUTOMATIC);
-       gtk_container_add(GTK_CONTAINER(swindow), g_text_view);
-       gtk_container_add( GTK_CONTAINER( frame_r ), swindow );
-       
-       g_image = gtk_image_new();
-       GdkPixbuf* pixbuf = gtk_widget_render_icon( GTK_WIDGET(g_image), GTK_STOCK_MISSING_IMAGE,
-                                                GTK_ICON_SIZE_DIALOG, NULL);
-       gtk_image_set_from_pixbuf(GTK_IMAGE(g_image),pixbuf);
-       gtk_box_pack_start(GTK_BOX(vbox),g_image,TRUE,TRUE,0);
-
-    GtkWidget *frame_l = gtk_frame_new( " Actuators: " );
-       gtk_box_pack_start( GTK_BOX( vbox ), frame_l, TRUE, TRUE, 0 );
-
-    GtkWidget *act_panel = gtk_table_new( 3, 3, FALSE );
-       gtk_container_add( GTK_CONTAINER( frame_l ), act_panel );
-    /* Row 1 - headings: */
-    gtk_table_attach( GTK_TABLE( act_panel ), gtk_label_new( "State:" ), 0, 1, 0, 1, 
-                      GTK_FILL, GTK_FILL, 1, 1); 
-    gtk_table_attach( GTK_TABLE( act_panel ), gtk_label_new( "Name:" ), 1, 2, 0, 1, 
-                      GTK_FILL | GTK_EXPAND, GTK_FILL, 1, 1); 
-    gtk_table_attach( GTK_TABLE( act_panel ), gtk_label_new( "Information:" ), 2, 3, 0, 1, 
-                      GTK_FILL | GTK_EXPAND, GTK_FILL, 1, 1); 
-    /* Row 2: */
-    gtk_table_attach( GTK_TABLE( act_panel ), act_state[0], 0, 1, 1, 2, 
-                      GTK_FILL, GTK_FILL, 1, 1); 
-    gtk_table_attach( GTK_TABLE( act_panel ), gtk_label_new( "Actuator TS7200-1" ), 1, 2, 1, 2, 
-                      GTK_FILL | GTK_EXPAND, GTK_FILL, 1, 1); 
-    gtk_table_attach( GTK_TABLE( act_panel ), act_info[0], 2, 3, 1, 2, 
-                      GTK_FILL | GTK_EXPAND, GTK_FILL, 1, 1); 
-    /* Row 3: */
-    gtk_table_attach( GTK_TABLE( act_panel ), act_state[1], 0, 1, 2, 3, 
-                      GTK_FILL, GTK_FILL, 1, 1); 
-    gtk_table_attach( GTK_TABLE( act_panel ), gtk_label_new( "Actuator TS7200-2" ), 1, 2, 2, 3, 
-                      GTK_FILL | GTK_EXPAND, GTK_FILL, 1, 1); 
-    gtk_table_attach( GTK_TABLE( act_panel ), act_info[1], 2, 3, 2, 3, 
-                      GTK_FILL | GTK_EXPAND, GTK_FILL, 1, 1); 
-
-       gtk_widget_show_all(mainWindow);
-}
-
-void gtklog(const char* str) {
-       if(!run_check) return;
-       
-       GtkTextBuffer* text_buffer;
-       GtkTextIter iter;
-
-       gdk_threads_enter();
-
-       text_buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(g_text_view));
-       gtk_text_buffer_insert_at_cursor(text_buffer,str,strlen(str));
-       gtk_text_buffer_get_end_iter(text_buffer,&iter);
-       gtk_text_view_scroll_to_iter(GTK_TEXT_VIEW(g_text_view),&iter,0,FALSE,0,0);
-
-       gdk_threads_leave();
-}
-
-guchar* last_img = NULL;
-int last_img_size = 0;
-struct {
-       int x,y,r;
-} face = {0};
-
-void put_image(guchar* img_buf,int size) {
-       if(!run_check) return;
-       
-       gdk_threads_enter();
-
-       GdkPixbufLoader* loader = gdk_pixbuf_loader_new();
-       gdk_pixbuf_loader_write(loader,(guchar*)img_buf,size,NULL);
-       gdk_pixbuf_loader_close(loader,NULL);
-       GdkPixbuf* pixbuf = gdk_pixbuf_loader_get_pixbuf(loader);
-       
-       gtk_image_set_from_pixbuf(GTK_IMAGE(g_image),pixbuf);
-       if(face.r) {
-               /* sie nie wywala, ale rysuje nie tam gdzie trzeba.
-               GdkGC* gc;
-               gc=gdk_gc_new(g_image->window); 
-               gdk_draw_arc(g_image->window, gc, TRUE, face.x-face.r, face.y-face.r,2*face.r, 2*face.r, 0, 360*64);
-                */
-       }
-       g_object_unref(loader);
-
-       gdk_threads_leave();
-
-       if(last_img) {
-               g_free(last_img);
-       }
-       last_img = g_memdup(img_buf,size);
-       last_img_size = size;
-}
-
-guchar* get_image(int* img_size) {
-       if(!run_check) return NULL;
-       
-       if(img_size)
-               *img_size = last_img_size;
-       if(last_img) {
-               return g_memdup(last_img,last_img_size);
-       }
-       else {
-               return NULL;
-       }
-}
-
-void face_found(int x,int y,int r) {
-       if(!run_check) return;
-       
-       gchar* str = g_strdup_printf("Face detected (%d,%d,%d)!\n",x,y,r);
-       gtklog(str);
-       g_free(str);
-
-    int resp =  act_run_cmd( ACT1_SID, FACE_DETECTED );
-
-       face.x = x;
-       face.y = y;
-       face.r = r;
-}
-
-gpointer act_check( gpointer data )
-{
-    unsigned int sid = *((unsigned int*) data);
-    int resp, i;
-    while( run_check )
-    {
-        for (i=0; i<2; ++i)
-        {
-            resp =  act_run_cmd( sid+i, PING );
-
-            gdk_threads_enter();
-            if (resp == CONNECTED )
-            {
-                gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( act_state[i] ), TRUE );
-                gtk_label_set_text( GTK_LABEL( act_info[i] ), "Connected" );
-            }
-            else
-            {
-                gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( act_state[i] ), FALSE );
-                gtk_label_set_text( GTK_LABEL( act_info[i] ), "Not connected" );
-            }
-            gdk_threads_leave();
-        }
-
-        sleep( 2 );
-    }
-    return NULL;
-}
-
-int main(int argc, char *argv[])
-{
-       if (!g_thread_supported()) {
-               g_thread_init(NULL);
-       }
-       gdk_threads_init();
-       gdk_threads_enter();
-       
-       gtk_init(&argc, &argv);
-
-       displayUI();
-
-       ServiceCallbacks* cb = g_new0(ServiceCallbacks,1);
-       cb->run_check = &run_check;
-       cb->log = &gtklog;
-       cb->put_image = &put_image;
-       cb->get_image = &get_image;
-       cb->face_found = &face_found;
-       
-       g_thread_create((GThreadFunc)service,cb,FALSE,NULL);
-
-    int sid = ACT1_SID;
-       g_thread_create( (GThreadFunc) act_check, &sid, FALSE, NULL);
-       
-       gtk_main();
-
-       gdk_threads_leave();
-       return 0;
-}
diff --git a/branches/nota-show-app/src/notaio.c b/branches/nota-show-app/src/notaio.c
deleted file mode 100644 (file)
index f417d5b..0000000
+++ /dev/null
@@ -1,153 +0,0 @@
-/*
- * Copyright (C) 2008 Nokia Corporation
- * All rights reserved
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as 
- * published by the Free Software Foundation.
- * 
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *     GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
- *
- */
-
-/* Wrapper functions for basic NoTA I/O
- * (sending, receiving, connecting, disconnecting).
- *
- * TODO: Update error handling to use perror throughout,
- * once it is thoroughly implemented in h_in3.
- */
-#include <stdio.h>
-#include <unistd.h>
-#include "notaio.h"
-
-#ifdef USE_H_IN3
-
-// Activates a service. This version returns the listener socket,
-// if successful.
-int n_activate(int sid, void* key, void* callback)
-{
-       errno = 0;
-       // Create an initial socket for monitoring incoming connections
-       int socket = Hsocket(Hgetinstance(), AF_NOTA, SOCK_STREAM, 0);
-       if (socket < 0)
-       {
-               perror("Error creating socket");
-               return socket;
-       }
-       nota_addr_t addr = { sid, 0 };  // { Service, Port }
-       errno = 0;
-       sleep(2);       //FIXME: this is so that l_in has time to update cmap
-       // Register service:
-       int error = Hbind(Hgetinstance(), socket, (struct sockaddr*)&addr, sizeof(addr));
-       if (error < 0) {
-               perror("Error registering service");
-               return error;
-       }
-
-       errno = 0;
-       // Set the socket to listen:
-       error = Hlisten(Hgetinstance(), socket, 1);
-       if (error < 0) {
-               perror("Error listening to socket");
-               return error;
-       }
-       return socket;
-}
-
-// In this version, 'sid' means the listener socket. In h_in3,
-// deactivating a service means closing the socket bound to its
-// address.
-int n_deactivate(int sid, void* key)
-{
-       return n_disconnect(sid);
-}
-
-int n_accept(int to, void* param1, void* param2)
-{
-       errno = 0;
-       int error = Haccept(Hgetinstance(), to, (struct sockaddr*)param1, (socklen_t*)param2);
-       if (errno != 0)
-       {
-               perror("Error accepting incoming connection");
-               return -errno;
-       }
-       return error;
-}
-
-// Creates a socket and connects it to the service
-int n_connect(int sid, void* key, void* callback)
-{
-       int socket;
-       printf("Connecting to service %d...\n", sid);
-       socket = Hsocket(Hgetinstance(), AF_NOTA, SOCK_STREAM, 0);
-       if (socket < 0)
-       {
-               printf("Error connecting to SID %d: %d\n", sid, socket);
-               return socket;
-       }
-       nota_addr_t addr = { sid, 0 };  // Service, port
-       errno = 0;
-       sleep(2);       //FIXME: this is so that l_in has time to update cmap
-       int error = Hconnect(Hgetinstance(), socket, (struct sockaddr*)&addr, sizeof(addr)); 
-       if (error < 0)
-       {
-               printf("Error connecting to SID %d: %d\n", sid, error);
-               Hclose(Hgetinstance(), socket);
-               return error;
-       }
-       else printf("\tdone - socket %d connected to service %d.\n", socket, sid);
-       return socket;
-}
-
-// Send data
-int n_send(int socket, void* buffer, int buffer_len, int mode)
-{
-       int error = 0;
-       errno = 0;
-       error = Hsend(Hgetinstance(), socket, buffer, buffer_len, mode);
-       if (error < 0)
-       {
-               printf("Write error to socket %d: %d\n", socket, error);
-               return error;
-       }
-       return error;
-}
-
-
-// Receive data
-int n_read(int socket, void *buffer, int buffer_len, int mode)
-{
-       int error = 0;
-       errno = 0;
-       error = Hrecv(Hgetinstance(), socket, buffer, buffer_len, mode);
-       if (error < 0)
-       {
-               printf("Read error from socket %d: %d\n", socket, error);
-       }
-       return error; 
-}
-
-
-
-// Close a connection
-int n_disconnect(int socket)
-{
-    printf("Closing socket %d\n", socket);
-       errno = 0;
-       int error = Hclose(Hgetinstance(), socket);
-    if (error < 0) 
-               printf("Error closing socket %d: %d\n", socket, error);
-       else 
-               printf("\tdone.\n");
-       return error;
-}
-
-#endif //USE_H_IN3
-
diff --git a/branches/nota-show-app/src/notaio.h b/branches/nota-show-app/src/notaio.h
deleted file mode 100644 (file)
index e573c2f..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
- * Copyright (C) 2008 Nokia Corporation
- * All rights reserved
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as 
- * published by the Free Software Foundation.
- * 
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *     GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
- *
- */
-
-
-#ifndef NOTAIO_H
-#define NOTAIO_H
-
-#define USE_H_IN3      //h_in2 or h_in3
-
-#ifdef USE_H_IN3
-#include "nota3/h_in/h_bsdapi.h"
-typedef int HErrorCode;
-typedef int HSSockID;
-typedef int uns32;
-typedef int int32;
-typedef int HSReceiveMode;
-typedef int HSSendMode;
-typedef sid_t HSID;
-typedef void HKey;
-typedef void HSSockCallback;
-typedef void HServiceAccessCallback;
-typedef unsigned char uns8;
-typedef unsigned short uns16;
-
-#define HSSendBlocking MSG_WAITALL
-#define HSReceiveBlocking HSSendBlocking
-#define HSReceiveNonBlocking MSG_DONTWAIT
-#define HSSendNonBlocking HSReceiveNonBlocking
-
-#define HErrorNoMemory -4
-#define HErrorNone 0
-
-#else
-#include "h_in.h"
-#endif
-
-HErrorCode n_read(HSSockID socket, void *buffer, uns32 buffer_len, HSReceiveMode mode);
-HErrorCode n_send(HSSockID socket, void* buffer, uns32 buffer_len, HSSendMode mode);
-HErrorCode n_disconnect(HSSockID socket);
-int n_activate(int sid, void* key, void* callback);
-// In this version, 'sid' means the listener socket. 
-int n_deactivate(int sid, void* key);
-// 'to' is SID for H_IN2, socket for H_IN3.
-// 'param1' is HKey for H_IN2, struct sockaddr for H_IN3
-// 'param2' is ServiceAccessCallback for H_IN2, socklen_t for H_IN3
-int n_connect(int sid, void* key, void* callback);
-int n_accept(int to, void* param1, void* param2);
-
-#endif
-
diff --git a/branches/nota-show-app/src/pdu.c b/branches/nota-show-app/src/pdu.c
deleted file mode 100644 (file)
index b0ca443..0000000
+++ /dev/null
@@ -1,216 +0,0 @@
-/***************************************************************************
- *            pdu.c
- *
- *  Thu Nov 19 15:13:08 2009
- *  Copyright  2009  Marcin Miklas
- *  <marcin.miklas@teleca.com>
- ****************************************************************************/
-#include <string.h>
-#include <netinet/in.h> 
-#include <stdlib.h>
-#include "notaio.h"
-#include "pdu.h"
-
-ServiceMessage* pack_pdu(int sigid, uns8* payload, int payload_len, int* pdu_len) {
-/* Now we need to construct a Service Message to send to the Hello, world
- * service at the other end. Our service message will look like this:
-                                                               ARGUMENT  ITEM
-0xA1           SIGID   0x41            LENGTH          DATA
-Length of      8 bit   Argument        Length          Data
-signal ID      sigid   type            of data         field
-
- * Ok, so what exactly does all this mean? Let's go through it one
- * field at a time:
- * - 0xA1: this is the length of the following signal ID. 0xA1 means
- *   it will be 1 byte long (8 bits).
- * - SIGID: Signal Identifiers are used by service nodes to recognize 
- *   incoming signals (messages). A list of valid signals should be
- *   provided in the Service Interface Specification.
- * - 0x41: Type of the following argument, or one of NULL, TRUE or
- *   FALSE for simple items where these values are enough.
- * The bytes following the argument type field make up the value of
- * the argument. For example, an argument type of 0x14 (unsigned 32-bit
- * integer) is followed by 4 bytes of data, representing the integer
- * value in question. In our case, the argument type is 0x41, which
- * stands for binary data (in our case, the test string we will be
- * sending). For binary data items such as strings, the argument item
- * is further divided into two parts:
- * - LENGTH: Length of the following binary data, in octets. This is an
- *   8 bit value, so the maximum length is 255 octets. For longer items,
- *   use type 0x42, which has a 16-bit length field.
- * - DATA: The amount of data specified by LENGTH.
- *
- * For more information about Service Messages, see Appendix D of the
- * NoTA platform programming guide.
- */
-       if (!payload) payload_len = 0;
-       ServiceMessage* smsg = (ServiceMessage*)malloc( SERVICE_MESSAGE_HEADER_LEN + payload_len );
-       smsg->sigid_length = 0xA1;
-       smsg->sigid[0] = sigid;
-       smsg->argtype = payload ? 0x42 : 0x01;
-       smsg->arglen = htons(payload_len);
-
-       if (payload) {
-               memcpy(smsg->argdata, payload, payload_len);
-       }
-
-       if (pdu_len) {
-               *pdu_len = SERVICE_MESSAGE_HEADER_LEN + payload_len;
-               if(!payload)
-                       *pdu_len -= sizeof(smsg->arglen);
-       }
-
-
-       return smsg;
-}
-
-/* If we decide to discard a message before it is fully
- * read, we'll need to
- * have some way of abandoning remaining data on the
- * connected socket.
- * This function serves that purpose for the time being
- * (that is, until HIN3 supports message-based sockets).
- */
-static void clear(HSSockID socket,int quiet, ServiceCallbacks* cb)
-{
-       uns8 buf[64];
-    HErrorCode err;
-       int i=0;
-    do {
-        err = n_read(socket, &buf, 64, HSReceiveNonBlocking);
-               if (!quiet) {
-                       while (i < 64) {
-                               LOG1("%02x ", buf[i++]);
-                       }
-               }
-    } while (err > 0);
-       if(!quiet)
-               LOG("\n");
-}
-
-HErrorCode read_smsg(HSSockID* socket, HSReceiveMode mode, ServiceCallbacks* cb)
-{
-       HErrorCode error;
-       ServiceMessage smsg;
-       int count = 0;
-       
-       /* In the following lines, we will read the service message from
-        * the internal RX buffer into the 'smsg' variable. The first bytes 
-        * of a NoTA service message will tell us what kind of message 
-        * we're dealing with.
-        */
-    error = n_read(*socket, &smsg.sigid_length, sizeof(smsg.sigid_length), mode);
-       if (error <= 0)
-               return error;
-       count += error;
-       if (smsg.sigid_length != 0xA1)
-       {
-               //LOG("Only 8-bit signal identifiers currently recognized.\n");
-               clear(*socket, 1, cb);
-               return 0;
-       }
-       error = n_read(*socket, &smsg.sigid, 2, mode);
-       if (error <= 0)
-               return error;
-       count += error;
-       switch(smsg.sigid[0]) 
-       {
-       case PUT_IMAGE:
-               {
-                       error = n_read(*socket, &smsg.argtype, 1, mode);
-                       if (error <= 0)
-                               return error;
-                       if (smsg.argtype != 0x42)
-                       {
-                               clear(*socket, 0, cb);
-                               return 0;
-                       }
-                       error = n_read(*socket, &smsg.arglen, 2, mode);
-                       smsg.arglen = ntohs(smsg.arglen);
-                       if (error <= 0)
-                               return error;
-                       uns8* argdata = malloc(smsg.arglen);
-                       error = n_read(*socket, argdata, smsg.arglen, HSReceiveBlocking);
-                       if (error == smsg.arglen)
-                       {
-                               if(cb->put_image)
-                                       cb->put_image(argdata,smsg.arglen);
-                       }
-                       else
-                       {
-                               LOG2("Error: got only %d bytes of %d expected.\n", error, smsg.arglen);
-                       }
-
-                       free((void*)argdata);
-               }
-               break;
-       case GET_IMAGE:
-               error = n_read(*socket, &smsg.argtype, 1, mode);
-               if (error <= 0)
-                       return error;
-               if (smsg.argtype != 0x01)
-               {
-                       clear(*socket, 0, cb);
-                       return 0;
-               }
-               {
-                       uns8* last_img=NULL;
-                       int last_img_size=0;
-
-                       ServiceMessage* smsg;
-                       int smsg_len=0;
-
-                       if (cb->get_image) {
-                               last_img = cb->get_image(&last_img_size);
-                       }
-                                               
-                       smsg = pack_pdu(PUT_IMAGE, last_img, last_img_size, &smsg_len);
-                       error = n_send(*socket, smsg, smsg_len, HSSendBlocking);
-                       free(smsg);
-
-                       free(last_img);
-               }
-               break;
-       case FACE_FOUND:
-               {
-                       error = n_read(*socket, &smsg.argtype, 1, mode);
-                       if (error <= 0)
-                               return error;
-                       if (smsg.argtype != 0x42)
-                       {
-                               clear(*socket, 0, cb);
-                               return 0;
-                       }
-                       error = n_read(*socket, &smsg.arglen, 2, mode);
-                       smsg.arglen = ntohs(smsg.arglen);
-                       if (error <= 0)
-                               return error;
-                       
-                       struct {int x,y,r;} face;
-                       error = n_read(*socket, &face, sizeof(face), HSReceiveBlocking);
-                       if (error == smsg.arglen) {
-                               if(cb->face_found) {
-                                       cb->face_found(ntohl(face.x),ntohl(face.y),ntohl(face.r));
-                               }
-                       }
-               }
-               break;
-       case DISCONNECT:
-               if (cb->disconnect) {
-                       cb->disconnect(*socket);
-               }
-               return DISCONNECT;
-               break;
-       case QUIT:
-               if (cb->quit) {
-                       cb->quit(*socket);
-               }
-               return QUIT;
-               break;
-       default:
-               LOG("Unsupported service call.\n");
-               clear(*socket, 0, cb);
-               break;
-       }
-       return 0;
-}
diff --git a/branches/nota-show-app/src/pdu.h b/branches/nota-show-app/src/pdu.h
deleted file mode 100644 (file)
index 9c7cb16..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-#ifndef PDU_H
-#define PDU_H
-
-#include "notaio.h"
-#include <stdio.h>
-
-#define DEFAULT_SID 42
-
-enum MessageTypes {
-       PUT_IMAGE = 's',
-       GET_IMAGE = 'g',
-       FACE_FOUND = 'f',
-       DISCONNECT = 'd',
-       QUIT = 'q'
-};
-
-typedef struct _ServiceMessage {
-       uns8 sigid_length;
-       uns8 sigid[2];
-       uns8 argtype;
-       uns16 arglen;
-       char argdata[0];
-} ServiceMessage;
-
-#define SERVICE_MESSAGE_HEADER_LEN (sizeof(struct _ServiceMessage))
-
-typedef struct {
-       volatile int *run_check;
-       void (*log)(const char*);
-       void (*put_image)(unsigned char* img_buf, int img_size);
-       unsigned char* (*get_image)(int* img_size);
-       void (*disconnect)(int socket);
-       void (*quit)(int socket);
-       void (*face_found)(int x,int y,int r);
-       
-} ServiceCallbacks;
-
-
-ServiceMessage* pack_pdu(int sigid, uns8* payload, int payload_len, int* pdu_len);
-
-HErrorCode read_smsg(HSSockID* socket, HSReceiveMode mode, ServiceCallbacks* cb);
-
-#define LOG(str) { cb->log(str); }
-#define LOG1(fmt,arg) { char str[256]; snprintf(str,255,fmt,arg); cb->log(str); }
-#define LOG2(fmt,arg1,arg2) { char str[256]; snprintf(str,255,fmt,arg1,arg2); cb->log(str); }
-
-#endif
diff --git a/branches/nota-show-app/src/service.h b/branches/nota-show-app/src/service.h
deleted file mode 100644 (file)
index b818e46..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-/***************************************************************************
- *            service.h
- *
- *  Wed Nov 18 10:43:09 2009
- *  Copyright  2009  Marcin Miklas
- *  <marcin.miklas@teleca.com>
- ****************************************************************************/
-
-#ifndef SERVICE_H
-#define SERVICE_H
-
-#include "pdu.h"
-
-void* service(ServiceCallbacks* callbacks);
-
-#endif
\ No newline at end of file
diff --git a/branches/nota-show-app/src/service_nb.c b/branches/nota-show-app/src/service_nb.c
deleted file mode 100644 (file)
index cd4c752..0000000
+++ /dev/null
@@ -1,176 +0,0 @@
-/***************************************************************************
- *            service_nb.c
- *
- *  Thu Nov 19 14:23:57 2009
- *  Copyright  2009  Marcin Miklas
- *  <marcin.miklas@teleca.com>
- ****************************************************************************/
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <netinet/in.h> 
-
-#include "service.h"
-
-static void shut_down(void);
-static int disconnect(int socket, ServiceCallbacks* cb);
-
-#ifdef SERVICE_MAIN
-
-unsigned char* last_image=NULL;
-int last_image_size = 0;
-
-void put_image(unsigned char* img_buf, int img_size) {
-       printf("Image received: size = %d\n",img_size);
-       if(last_image) {
-               free(last_image);
-               last_image = NULL;
-               last_image_size = 0;
-       }
-       last_image = malloc(img_size);
-       memcpy(last_image,img_buf,img_size);
-       last_image_size = img_size;     
-}
-
-unsigned char* get_image(int* size) {
-       if(size)
-               *size = last_image_size;
-
-       unsigned char* img = malloc(last_image_size);
-       memcpy(img,last_image,last_image_size);
-       return img;
-}              
-
-void face_found() {
-       printf("face found!\n");
-}
-
-int main(int args, char** argv)
-{
-       ServiceCallbacks cb = {0};
-       cb.log = (void (*)(const char*)) &puts;
-       cb.put_image = &put_image;
-       cb.get_image = &get_image;
-       cb.face_found = &face_found;
-       service(&cb);
-       return 0;
-}
-#endif
-
-static int listener = 0;
-int fdmax = 0;
-fd_set all;            // all active sockets
-
-void* service(ServiceCallbacks* cb)
-{
-       LOG1("Activating service with SID '%d'\n", DEFAULT_SID);
-       
-       /* Activating a service means registering it with the Resource Manager,
-        * so that it is visible to applications. The return value is the initial
-        * listener socket (h_in3).
-        */
-       listener = n_activate(DEFAULT_SID, NULL, NULL);
-       if (listener < 0) {
-               return NULL;
-       }
-       else
-               LOG("\tdone.\n");
-       atexit(shut_down);
-       
-       fd_set read;    // sockets ready for reading
-       fd_set errors;  
-       FD_ZERO(&all);
-       FD_SET(listener, &all);
-       FD_ZERO(&read);
-       fdmax = listener;       //biggest socket number (right now,
-                                               //'listener' is the only open socket)
-       int quit = 0;
-       while (!quit && (!cb->run_check || *(cb->run_check)))
-       {
-               read = all;             //make a copy of the master set
-               errors = all;   //will contain sockets with error conditions set
-               if (Hselect(Hgetinstance(), fdmax+1, &read, NULL, &errors, NULL) == -1) 
-               {
-                       LOG("Error on select\n");
-               }
-               /* Select modifies read so that it includes the sockets
-                * that are ready for reading. Let's check which ones they were:
-                */
-               int i;
-               for (i = 0; i <= fdmax; i++)
-               {
-                       if (FD_ISSET(i, &read)) {       // found a socket ready to be read
-                               if (i == listener)      //service socket
-                               {
-                                       LOG("Accepting new connection.\n");
-                                       int socket = n_accept(i, NULL, 0);
-                                       if (socket < 0) {
-                                               LOG1("\terror: %d\n", socket);
-                                               continue;
-                                       }
-                                       LOG1("\tdone - socket %d connected.\n", socket);
-                                       FD_SET(socket, &all);   //add to master set
-                                       if (socket > fdmax) 
-                                               fdmax = socket;
-                               }       //service socket handler
-                               else    //data on an existing socket
-                               {
-                                       int err = read_smsg(&i, HSReceiveBlocking, cb); 
-                                       if (err < 0)    //error reading service message
-                                       {
-                                               n_disconnect(i);
-                                               FD_CLR(i, &all);
-                                       }
-                                       else {
-                                               switch(err) {
-                                                       case DISCONNECT:
-                                                               disconnect(i,cb);
-                                                               break;
-                                                       case QUIT:
-                                                               disconnect(i,cb);
-                                                               quit = 1;
-                                                               break;
-                                               }
-                                       }
-                               }       //incoming data handler
-                       }       // Handle sockets in the read set
-                       // check for errors:
-                       if (FD_ISSET(i, &errors)) {
-                               if (i == listener)      //error on service socket
-                               {
-                                       LOG("Error in service socket; quitting.\n");
-                                       exit(-1);
-                               }
-                               FD_CLR(i, &all);
-                               n_disconnect(i);
-                               continue;
-                       }
-               }       // Read socket loop
-       }       // Main loop
-
-       exit(0);
-}
-
-static int disconnect(int socket, ServiceCallbacks* cb)
-{
-       FD_CLR(socket, &all);
-       return n_disconnect(socket);
-}
-
-static void shut_down()
-{
-       printf("Shutting down...\n");
-       printf("Deactivating service...\n");
-       HErrorCode err = n_deactivate(listener, NULL);
-       if(err >= 0) {
-               printf("Deactivated.\n");
-               FD_CLR(listener, &all);
-       }
-       int i;
-       // Close all open sockets:
-       for (i = 0; i <= fdmax; i++)
-               if (FD_ISSET(i, &all))
-                       n_disconnect(i);
-}
-
diff --git a/branches/nota-show-app/src/ts7200/Makefile.am b/branches/nota-show-app/src/ts7200/Makefile.am
deleted file mode 100644 (file)
index 51f1549..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-lib_LIBRARIES = \
-       libts7200connect.a
-
-libts7200connect_a_SOURCES = \
-       ts7200_client.c   \
-       ts7200_client.h
-
-bin_PROGRAMS = \
-       test_server
-
-libts7200connect_a_CFLAGS = $(NOTA_H_IN_CFLAGS) -Wall
-
-test_server_SOURCES = test_server.c ts7200_client.h
-test_server_LDADD = $(NOTA_H_IN_LIBS) libts7200connect.a
-test_server_CFLAGS = $(NOTA_H_IN_CFLAGS) -Wall
-
diff --git a/branches/nota-show-app/src/ts7200/test_client.c b/branches/nota-show-app/src/ts7200/test_client.c
deleted file mode 100644 (file)
index c5f1a4b..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-#ifndef NOTAIO_H
-#define NOTAIO_H
-
-#include <stdio.h>
-#include <errno.h>
-#include <unistd.h>
-#include <stdlib.h>
-
-#define USE_H_IN3      //h_in2 or h_in3
-
-#ifdef USE_H_IN3
-#include "nota3/h_in/h_bsdapi.h"
-#else
-#include "h_in.h"
-#endif
-
-#define SID 1
-#define DEFAULT_PORT 0
-
-int main()
-{
-    int sock, err;
-    char buf;
-    nota_addr_t addr = { SID, DEFAULT_PORT };
-    sock = Hsocket( Hgetinstance(), AF_NOTA, SOCK_STREAM, 0 );
-    if(sock < 0)
-    {
-        perror( "Hsocket" );
-        exit( 1 );
-    }
-
-    err = Hconnect( Hgetinstance(), sock, (struct sockaddr*) &addr, sizeof(addr) );
-    if( err != 0 ) 
-    {
-        Hclose( Hgetinstance(), sock );
-        perror( "Hconnect" );
-        exit( 1 );
-    }
-
-    buf = 'a';
-    err = Hsend( Hgetinstance(), sock, &buf, 1, 0 );
-    if(err != 1) {
-        Hclose( Hgetinstance(), sock );
-        perror( "Hsend" );
-        exit( 1 );
-    }
-
-    printf( "Wyslano %d znakow: %c\n", err, buf );
-    Hclose( Hgetinstance(), sock );
-
-    return 0;
-}
-
-#endif
diff --git a/branches/nota-show-app/src/ts7200/test_server.c b/branches/nota-show-app/src/ts7200/test_server.c
deleted file mode 100644 (file)
index 643bead..0000000
+++ /dev/null
@@ -1,189 +0,0 @@
-/***************************************************************************
- *            test_server.c
- *
- *  Wed Nov 18 10:46:06 2009
- *  Copyright  2009  Bartlomiej Swiercz
- *  <bartlomiej.swiercz@teleca.com>
- ****************************************************************************/
-
-#include <stdio.h>
-#include <errno.h>
-#include <unistd.h>
-#include <stdlib.h>
-#include "ts7200_client.h"
-
-typedef enum { GREEN, RED } led_color_t;
-
-void initTS7200()
-{
-    printf( "TS-7200 initialized\n" );
-}
-
-void switchOnLed( led_color_t color )
-{
-    switch( color )
-    {
-        case GREEN:
-            printf( "Green led switched on\n" );
-            break;
-        case RED:
-            printf( "Red led switched on\n" );
-            break;
-        default:
-            printf( "Unknown led!\n" );
-    }
-}
-
-void switchOffLed( led_color_t color )
-{
-    switch( color )
-    {
-        case GREEN:
-            printf( "Green led switched off\n" );
-            break;
-        case RED:
-            printf( "Red led switched off\n" );
-            break;
-        default:
-            printf( "Unknown led!\n" );
-    }
-}
-
-int openNota( int *sock, nota_addr_t *addr )
-{
-    int err;
-    *sock = Hsocket( Hgetinstance(), AF_NOTA, SOCK_STREAM, 0 );
-    if(sock < 0)
-    {
-        perror( "Hsocket" );
-        return -1;
-    }
-
-    err = Hbind( Hgetinstance(), *sock, (struct sockaddr*) addr, sizeof(*addr) );
-    if( err != 0 ) 
-    {
-        Hclose( Hgetinstance(), *sock );
-        perror( "Hbind" );
-        return -1;
-    }
-
-    return 0;
-}
-
-int waitForConnection( int sock )
-{
-    int err, client;
-    err = Hlisten( Hgetinstance(), sock, 1 );
-    if(err != 0) {
-        Hclose( Hgetinstance(), sock );
-        perror( "Hlisten" );
-        return -1;
-    }
-
-    client = Haccept( Hgetinstance(), sock, NULL, NULL );
-    if( client < 0 ) 
-    {
-        Hclose( Hgetinstance(), sock );
-        perror( "Haccept" );
-        return -1;
-    }
-    return client;
-}
-
-char processCmd( char cmd )
-{
-    switch( cmd )
-    {
-        case 'P':
-            switchOffLed( GREEN );
-            switchOffLed( RED );
-            break;
-        case 'F':
-            switchOnLed( RED );
-            break;
-        default:
-            cmd = '?';
-    }
-
-    return cmd;
-}
-
-void startServer( nota_addr_t *addr )
-{
-    int sock, client, err;
-    char buf;
-
-    if (openNota( &sock, addr ) != 0)
-    {
-        printf( "openNota error!\n" );
-        return;
-    }
-    printf( "Waiting for connection ...\n" );
-    switchOnLed( GREEN );
-    
-    client = waitForConnection( sock );
-    if (client <= 0)
-    {
-        printf( "waitForConnection error!\n" );
-        return;
-    }
-
-    printf( "Server started and connected\n" );
-
-    while( 1 )
-    {
-
-        err = Hrecv( Hgetinstance(), client, &buf, 1, 0 );
-        if(err != 1) {
-            perror( "Hrecv" );
-            break;
-        }
-        printf( "Recived: %c\n", buf );
-
-        buf = processCmd( buf );
-
-        err = Hsend( Hgetinstance(), client, &buf, 1, 0 );
-        if(err != 1) {
-            perror( "Hsend" );
-            break;
-        }
-
-        break;
-    }
-
-    Hclose( Hgetinstance(), client );
-    Hclose( Hgetinstance(), sock );
-
-}
-
-int main( int argc, char *argv[] )
-{
-    int sid;
-
-    if (argc != 2)
-    {
-        printf( "Usage: ./test_server sid\n" );
-        exit( 1 );
-    }
-    
-    sid = atoi( argv[1] );
-
-    nota_addr_t addr;
-    addr.sid = sid;
-    addr.port = DEFAULT_PORT;
-
-    initTS7200();
-    switchOnLed( GREEN );
-    switchOffLed( RED );
-//    sleep( 1 );
-
-    printf( "Test server is registered with sid: %d\n", sid );
-
-    while( 1 )
-    {
-        switchOffLed( GREEN );
-        startServer( &addr );
-    }
-
-    return 0;
-}
diff --git a/branches/nota-show-app/src/ts7200/ts7200_client.c b/branches/nota-show-app/src/ts7200/ts7200_client.c
deleted file mode 100644 (file)
index 1ffa21a..0000000
+++ /dev/null
@@ -1,106 +0,0 @@
-/***************************************************************************
- *            ts7200_client.c
- *
- *  Wed Nov 18 10:46:06 2009
- *  Copyright  2009  Bartlomiej Swiercz
- *  <bartlomiej.swiercz@teleca.com>
- ****************************************************************************/
-
-#include <stdio.h>
-#include <errno.h>
-#include <unistd.h>
-#include <stdlib.h>
-#include "ts7200_client.h"
-
-ACT_STATE act_connect( sid_t sid, int *sock )
-{
-    nota_addr_t addr = { sid, DEFAULT_PORT };
-    int err;
-
-    *sock = Hsocket( Hgetinstance(), AF_NOTA, SOCK_STREAM, 0 );
-    if(sock < 0)
-    {
-        perror( "Hsocket" );
-        return HSOCKET_ERR;
-    }
-
-    err = Hconnect( Hgetinstance(), *sock, (struct sockaddr*) &addr, sizeof(addr) );
-    if( err < 0 ) 
-    {
-        Hclose( Hgetinstance(), *sock );
-        perror( "Hconnect" );
-        return HCONNECT_ERR;
-    }
-
-    return OK;
-
-}
-
-ACT_STATE act_send( int sock, char cmd )
-{
-    int err;
-    err = Hsend( Hgetinstance(), sock, &cmd, 1, 0 );
-    if(err != 1) {
-        Hclose( Hgetinstance(), sock );
-        perror( "Hsend" );
-        return HSEND_ERR;
-    }
-
-    return OK;
-}
-
-ACT_STATE act_recv( int sock, char *resp )
-{
-    int err;
-    err = Hrecv( Hgetinstance(), sock, resp, 1, 0 );
-    if(err != 1) {
-        Hclose( Hgetinstance(), sock );
-        perror( "Hrecv" );
-        return HRECV_ERR;
-    }
-
-    return OK;
-}
-
-void act_close( int sock )
-{
-    Hclose( Hgetinstance(), sock );
-}
-
-ACT_STATE act_run_cmd( sid_t sid, ACT_CMD cmd )
-{
-    int err, sock, resp;
-    char buf;
-    err = act_connect( sid, &sock );
-    if ( err != OK ) return NOTCONNECTED;
-
-    switch ( cmd )
-    {
-        case PING:
-            act_send( sock, 'P' );
-            act_recv( sock, &buf );
-            if (buf == 'P')
-                resp = CONNECTED;
-            else
-                resp = NOTCONNECTED;
-            break;
-
-        case FACE_DETECTED:
-            act_send( sock, 'F' );
-            act_recv( sock, &buf );
-            if (buf == 'F')
-                resp = CONNECTED;
-            else
-                resp = NOTCONNECTED;
-            break;
-
-        default:
-            resp = WEIRD;
-            break;
-    }
-
-    act_close( sock );
-
-   return resp; 
-}
-
diff --git a/branches/nota-show-app/src/ts7200/ts7200_client.h b/branches/nota-show-app/src/ts7200/ts7200_client.h
deleted file mode 100644 (file)
index 5283bba..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-/***************************************************************************
- *            ts7200_client.h
- *
- *  Wed Nov 18 10:46:06 2009
- *  Copyright  2009  Bartlomiej Swiercz
- *  <bartlomiej.swiercz@teleca.com>
- ****************************************************************************/
-
-#ifndef ts7200_CLIENT_H
-#define ts7200_CLIENT_H
-
-#define USE_H_IN3      //h_in2 or h_in3
-
-#ifdef USE_H_IN3
-#include "nota3/h_in/h_bsdapi.h"
-#else
-#include "h_in.h"
-#endif
-
-#define DEFAULT_PORT 0
-#define ACT1_SID 1
-#define ACT2_SID 2
-
-typedef enum { OK, HSOCKET_ERR, HCONNECT_ERR, HSEND_ERR, HRECV_ERR } ACT_STATE;
-typedef enum { PING, FACE_DETECTED } ACT_CMD;
-typedef enum { CONNECTED, NOTCONNECTED, WEIRD } ACT_CMD_RESP;
-
-ACT_STATE act_run_cmd( sid_t sid, ACT_CMD cmd );
-
-#endif /* ts7200_CLIENT_H */
diff --git a/branches/nota-show-app/src/ts7200/ts7200_server.c b/branches/nota-show-app/src/ts7200/ts7200_server.c
deleted file mode 100644 (file)
index 4880c64..0000000
+++ /dev/null
@@ -1,214 +0,0 @@
-/***************************************************************************
- *            ts7200_server.c
- *
- *  Wed Nov 18 10:46:06 2009
- *  Copyright  2009  Bartlomiej Swiercz
- *  <bartlomiej.swiercz@teleca.com>
- ****************************************************************************/
-
-#include <stdio.h>
-#include <errno.h>
-#include <unistd.h>
-#include <stdlib.h>
-#include <sys/types.h>
-#include <sys/mman.h>
-#include <fcntl.h>
-#include <string.h>
-#include "ts7200_client.h"
-
-typedef enum { GREEN, RED } led_color_t;
-volatile unsigned int *PEDR, *PEDDR;
-int fd_mem;
-
-void initTS7200()
-{
-    unsigned char *start;
-    int fd_mem = open( "/dev/mem", O_RDWR );
-    start = mmap( 0, getpagesize(), PROT_READ|PROT_WRITE, MAP_SHARED, fd_mem, 0x80840000 );
-    PEDR =  (unsigned int *) (start + 0x20); //port e data
-    PEDDR = (unsigned int *) (start + 0x24); //port e direction
-    *PEDDR = 0xff; //all output (just 2 bits)
-
-    printf( "TS-7200 initialized\n" );
-}
-
-void freeTS7200()
-{
-    *PEDR = 0x00;
-    close( fd_mem );
-}
-
-void switchOnLed( led_color_t color )
-{
-    switch( color )
-    {
-        case GREEN:
-            *PEDR |= 0x01;
-            printf( "Green led switched on\n" );
-            break;
-        case RED:
-            *PEDR |= 0x02;
-            printf( "Red led switched on\n" );
-            break;
-        default:
-            printf( "Unknown led!\n" );
-    }
-}
-
-void switchOffLed( led_color_t color )
-{
-    switch( color )
-    {
-        case GREEN:
-            *PEDR &= 0xfe;
-            printf( "Green led switched off\n" );
-            break;
-        case RED:
-            *PEDR &= 0xfd;
-            printf( "Red led switched off\n" );
-            break;
-        default:
-            printf( "Unknown led!\n" );
-    }
-}
-
-int openNota( int *sock, nota_addr_t *addr )
-{
-    int err;
-    *sock = Hsocket( Hgetinstance(), AF_NOTA, SOCK_STREAM, 0 );
-    if(sock < 0)
-    {
-        perror( "Hsocket" );
-        return -1;
-    }
-
-    err = Hbind( Hgetinstance(), *sock, (struct sockaddr*) addr, sizeof(*addr) );
-    if( err != 0 ) 
-    {
-        Hclose( Hgetinstance(), *sock );
-        perror( "Hbind" );
-        return -1;
-    }
-
-    return 0;
-}
-
-int waitForConnection( int sock )
-{
-    int err, client;
-    err = Hlisten( Hgetinstance(), sock, 1 );
-    if(err != 0) {
-        Hclose( Hgetinstance(), sock );
-        perror( "Hlisten" );
-        return -1;
-    }
-
-    client = Haccept( Hgetinstance(), sock, NULL, NULL );
-    if( client < 0 ) 
-    {
-        Hclose( Hgetinstance(), sock );
-        perror( "Haccept" );
-        return -1;
-    }
-    return client;
-}
-
-char processCmd( char cmd )
-{
-    switch( cmd )
-    {
-        case 'P':
-            switchOffLed( GREEN );
-            switchOffLed( RED );
-            break;
-        case 'F':
-            switchOnLed( RED );
-            break;
-        default:
-            cmd = '?';
-    }
-
-    return cmd;
-}
-
-void startServer( nota_addr_t *addr )
-{
-    int sock, client, err;
-    char buf;
-
-    if (openNota( &sock, addr ) != 0)
-    {
-        printf( "openNota error!\n" );
-        return;
-    }
-    printf( "Waiting for connection ...\n" );
-    switchOnLed( GREEN );
-    
-    client = waitForConnection( sock );
-    if (client <= 0)
-    {
-        printf( "waitForConnection error!\n" );
-        return;
-    }
-
-    printf( "Server started and connected\n" );
-
-    while( 1 )
-    {
-
-        err = Hrecv( Hgetinstance(), client, &buf, 1, 0 );
-        if(err != 1) {
-            perror( "Hrecv" );
-            break;
-        }
-        printf( "Recived: %c\n", buf );
-
-        buf = processCmd( buf );
-
-        err = Hsend( Hgetinstance(), client, &buf, 1, 0 );
-        if(err != 1) {
-            perror( "Hsend" );
-            break;
-        }
-
-        break;
-    }
-
-    Hclose( Hgetinstance(), client );
-    Hclose( Hgetinstance(), sock );
-
-}
-
-int main( int argc, char *argv[] )
-{
-    int sid;
-
-    if (argc != 2)
-    {
-        printf( "Usage: ./test_server sid\n" );
-        exit( 1 );
-    }
-    
-    sid = atoi( argv[1] );
-
-    nota_addr_t addr;
-    addr.sid = sid;
-    addr.port = DEFAULT_PORT;
-
-    initTS7200();
-    switchOnLed( GREEN );
-    switchOffLed( RED );
-//    sleep( 1 );
-
-    printf( "Test server is registered with sid: %d\n", sid );
-
-    while( 1 )
-    {
-        switchOffLed( GREEN );
-        startServer( &addr );
-    }
-
-    freeTS7200();
-
-    return 0;
-}