@protontech/autofill 0.0.22991789 → 0.0.33835493

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (176) hide show
  1. package/constants/features.d.ts +1 -0
  2. package/constants/features.js +1 -0
  3. package/constants/heuristics.d.ts +5 -4
  4. package/constants/heuristics.js +5 -10
  5. package/constants/selectors.d.ts +13 -7
  6. package/constants/selectors.js +29 -17
  7. package/debug.d.ts +24 -1
  8. package/debug.js +15 -13
  9. package/dictionary/generate.js +30 -21
  10. package/dictionary/generated/dictionary.d.ts +18 -4
  11. package/dictionary/generated/dictionary.js +31 -17
  12. package/dictionary/source/dictionary.d.ts +4 -3
  13. package/dictionary/source/dictionary.js +155 -89
  14. package/dictionary/source/patterns.js +2 -2
  15. package/features/feature.d.ts +18 -0
  16. package/features/feature.js +79 -0
  17. package/features/feature.spec.d.ts +1 -0
  18. package/features/feature.spec.js +55 -0
  19. package/features/v1/abstract.field.d.ts +20401 -0
  20. package/features/v1/abstract.field.js +95 -0
  21. package/features/v1/abstract.form.d.ts +1226 -0
  22. package/features/v1/abstract.form.js +336 -0
  23. package/features/v1/field.email.d.ts +62 -0
  24. package/features/v1/field.email.js +27 -0
  25. package/features/v1/field.otp.d.ts +142 -0
  26. package/features/v1/field.otp.js +105 -0
  27. package/features/v1/field.password.d.ts +162 -0
  28. package/features/v1/field.password.js +81 -0
  29. package/features/v1/field.username-hidden.d.ts +62 -0
  30. package/features/v1/field.username-hidden.js +25 -0
  31. package/features/v1/field.username.d.ts +72 -0
  32. package/features/v1/field.username.js +31 -0
  33. package/features/v1/index.d.ts +4428 -0
  34. package/features/v1/index.js +22 -0
  35. package/features/v1/index.spec.d.ts +1 -0
  36. package/features/v1/index.spec.js +30 -0
  37. package/index.d.ts +7 -2
  38. package/index.js +11 -3
  39. package/models/perceptron/index.d.ts +2 -0
  40. package/models/perceptron/index.js +42 -0
  41. package/models/perceptron/params/email-model.json +53 -0
  42. package/models/perceptron/params/login-model.json +465 -0
  43. package/models/perceptron/params/new-password-model.json +133 -0
  44. package/models/perceptron/params/otp-model.json +117 -0
  45. package/models/perceptron/params/password-change-model.json +465 -0
  46. package/models/perceptron/params/password-model.json +133 -0
  47. package/models/perceptron/params/recovery-model.json +465 -0
  48. package/models/perceptron/params/register-model.json +465 -0
  49. package/models/perceptron/params/username-hidden-model.json +53 -0
  50. package/models/perceptron/params/username-model.json +61 -0
  51. package/models/random_forest/index.d.ts +2 -0
  52. package/models/random_forest/index.js +42 -0
  53. package/models/random_forest/params/email-model.json +1456 -0
  54. package/models/random_forest/params/login-model.json +4194 -0
  55. package/models/random_forest/params/new-password-model.json +1448 -0
  56. package/models/random_forest/params/otp-model.json +2004 -0
  57. package/models/random_forest/params/password-change-model.json +1422 -0
  58. package/models/random_forest/params/password-model.json +1292 -0
  59. package/models/random_forest/params/recovery-model.json +2754 -0
  60. package/models/random_forest/params/register-model.json +3678 -0
  61. package/models/random_forest/params/username-hidden-model.json +1108 -0
  62. package/models/random_forest/params/username-model.json +1052 -0
  63. package/package.json +17 -15
  64. package/rules/v1/index.d.ts +4 -0
  65. package/rules/v1/index.js +66 -0
  66. package/rulesets.d.ts +9 -2
  67. package/rulesets.js +14 -9
  68. package/types/index.d.ts +70 -17
  69. package/types/index.js +34 -1
  70. package/utils/attributes.js +1 -1
  71. package/utils/clustering.js +18 -5
  72. package/utils/credit-card.d.ts +32 -0
  73. package/utils/credit-card.js +259 -0
  74. package/utils/credit-card.samples.spec.d.ts +1 -0
  75. package/utils/credit-card.samples.spec.js +452 -0
  76. package/utils/credit-card.spec.d.ts +1 -0
  77. package/utils/credit-card.spec.js +296 -0
  78. package/utils/dom.d.ts +3 -2
  79. package/utils/dom.js +12 -7
  80. package/utils/exclusion.d.ts +1 -0
  81. package/utils/exclusion.js +22 -10
  82. package/utils/extract.d.ts +1 -0
  83. package/utils/extract.js +26 -7
  84. package/utils/fathom.d.ts +10 -23
  85. package/utils/fathom.js +7 -12
  86. package/utils/field.d.ts +12 -4
  87. package/utils/field.js +25 -14
  88. package/utils/flags.d.ts +9 -3
  89. package/utils/flags.js +27 -9
  90. package/utils/form.d.ts +16 -5
  91. package/utils/form.js +35 -14
  92. package/utils/identity.d.ts +12 -21
  93. package/utils/identity.js +66 -41
  94. package/utils/identity.samples.spec.d.ts +1 -0
  95. package/utils/identity.samples.spec.js +28 -0
  96. package/utils/iframe.d.ts +2 -0
  97. package/utils/iframe.js +22 -0
  98. package/utils/overrides.d.ts +19 -0
  99. package/utils/overrides.js +40 -0
  100. package/utils/prepass.js +6 -4
  101. package/utils/re.d.ts +19 -4
  102. package/utils/re.js +22 -7
  103. package/utils/re.spec.d.ts +1 -0
  104. package/utils/re.spec.js +62 -0
  105. package/utils/shadow-dom.d.ts +8 -0
  106. package/utils/shadow-dom.js +53 -0
  107. package/utils/shadow-dom.spec.d.ts +1 -0
  108. package/utils/shadow-dom.spec.js +215 -0
  109. package/utils/visible.d.ts +3 -2
  110. package/utils/visible.js +42 -22
  111. package/cli.d.ts +0 -2
  112. package/cli.js +0 -128
  113. package/features/abstract.field.d.ts +0 -123
  114. package/features/abstract.field.js +0 -63
  115. package/features/abstract.form.d.ts +0 -98
  116. package/features/abstract.form.js +0 -281
  117. package/features/field.email.d.ts +0 -18
  118. package/features/field.email.js +0 -43
  119. package/features/field.otp.d.ts +0 -36
  120. package/features/field.otp.js +0 -116
  121. package/features/field.password.d.ts +0 -35
  122. package/features/field.password.js +0 -104
  123. package/features/field.username-hidden.d.ts +0 -15
  124. package/features/field.username-hidden.js +0 -40
  125. package/features/field.username.d.ts +0 -16
  126. package/features/field.username.js +0 -41
  127. package/features/form.combined.d.ts +0 -1
  128. package/features/form.combined.js +0 -6
  129. package/trainees/field.email.d.ts +0 -2
  130. package/trainees/field.email.js +0 -16
  131. package/trainees/field.identity.d.ts +0 -2
  132. package/trainees/field.identity.js +0 -9
  133. package/trainees/field.otp.d.ts +0 -2
  134. package/trainees/field.otp.js +0 -16
  135. package/trainees/field.password.current.d.ts +0 -2
  136. package/trainees/field.password.current.js +0 -16
  137. package/trainees/field.password.new.d.ts +0 -2
  138. package/trainees/field.password.new.js +0 -16
  139. package/trainees/field.username-hidden.d.ts +0 -2
  140. package/trainees/field.username-hidden.js +0 -22
  141. package/trainees/field.username.d.ts +0 -2
  142. package/trainees/field.username.js +0 -16
  143. package/trainees/form.login.d.ts +0 -2
  144. package/trainees/form.login.js +0 -16
  145. package/trainees/form.noop.d.ts +0 -1
  146. package/trainees/form.noop.js +0 -7
  147. package/trainees/form.password-change.d.ts +0 -2
  148. package/trainees/form.password-change.js +0 -16
  149. package/trainees/form.recovery.d.ts +0 -2
  150. package/trainees/form.recovery.js +0 -16
  151. package/trainees/form.register.d.ts +0 -2
  152. package/trainees/form.register.js +0 -16
  153. package/trainees/index.d.ts +0 -9
  154. package/trainees/index.js +0 -72
  155. package/trainees/results/result.email.d.ts +0 -2
  156. package/trainees/results/result.email.js +0 -17
  157. package/trainees/results/result.login.d.ts +0 -2
  158. package/trainees/results/result.login.js +0 -110
  159. package/trainees/results/result.new-password.d.ts +0 -2
  160. package/trainees/results/result.new-password.js +0 -36
  161. package/trainees/results/result.otp.d.ts +0 -2
  162. package/trainees/results/result.otp.js +0 -43
  163. package/trainees/results/result.password-change.d.ts +0 -2
  164. package/trainees/results/result.password-change.js +0 -110
  165. package/trainees/results/result.password.d.ts +0 -2
  166. package/trainees/results/result.password.js +0 -36
  167. package/trainees/results/result.recovery.d.ts +0 -2
  168. package/trainees/results/result.recovery.js +0 -110
  169. package/trainees/results/result.register.d.ts +0 -2
  170. package/trainees/results/result.register.js +0 -110
  171. package/trainees/results/result.username-hidden.d.ts +0 -2
  172. package/trainees/results/result.username-hidden.js +0 -15
  173. package/trainees/results/result.username.d.ts +0 -2
  174. package/trainees/results/result.username.js +0 -16
  175. package/utils/memoize.d.ts +0 -5
  176. package/utils/memoize.js +0 -12
@@ -0,0 +1,2754 @@
1
+ {
2
+ "trees": [
3
+ {
4
+ "categories_nodes": [],
5
+ "categories_segments": [],
6
+ "categories_sizes": [],
7
+ "categories": [],
8
+ "default_left": [
9
+ 0,
10
+ 0,
11
+ 0,
12
+ 0,
13
+ 0,
14
+ 0,
15
+ 0,
16
+ 0,
17
+ 0,
18
+ 0,
19
+ 0,
20
+ 0,
21
+ 0,
22
+ 0,
23
+ 0,
24
+ 0,
25
+ 0,
26
+ 0,
27
+ 0,
28
+ 0,
29
+ 0,
30
+ 0,
31
+ 0,
32
+ 0,
33
+ 0,
34
+ 0,
35
+ 0,
36
+ 0,
37
+ 0,
38
+ 0,
39
+ 0,
40
+ 0,
41
+ 0,
42
+ 0,
43
+ 0,
44
+ 0,
45
+ 0,
46
+ 0,
47
+ 0,
48
+ 0,
49
+ 0
50
+ ],
51
+ "id": 0,
52
+ "left_children": [
53
+ 1,
54
+ 3,
55
+ 5,
56
+ 7,
57
+ 9,
58
+ 11,
59
+ 13,
60
+ 15,
61
+ 17,
62
+ 19,
63
+ -1,
64
+ -1,
65
+ -1,
66
+ -1,
67
+ -1,
68
+ 21,
69
+ 23,
70
+ 25,
71
+ 27,
72
+ 29,
73
+ -1,
74
+ 31,
75
+ 33,
76
+ 35,
77
+ -1,
78
+ -1,
79
+ -1,
80
+ -1,
81
+ -1,
82
+ 37,
83
+ 39,
84
+ -1,
85
+ -1,
86
+ -1,
87
+ -1,
88
+ -1,
89
+ -1,
90
+ -1,
91
+ -1,
92
+ -1,
93
+ -1
94
+ ],
95
+ "right_children": [
96
+ 2,
97
+ 4,
98
+ 6,
99
+ 8,
100
+ 10,
101
+ 12,
102
+ 14,
103
+ 16,
104
+ 18,
105
+ 20,
106
+ -1,
107
+ -1,
108
+ -1,
109
+ -1,
110
+ -1,
111
+ 22,
112
+ 24,
113
+ 26,
114
+ 28,
115
+ 30,
116
+ -1,
117
+ 32,
118
+ 34,
119
+ 36,
120
+ -1,
121
+ -1,
122
+ -1,
123
+ -1,
124
+ -1,
125
+ 38,
126
+ 40,
127
+ -1,
128
+ -1,
129
+ -1,
130
+ -1,
131
+ -1,
132
+ -1,
133
+ -1,
134
+ -1,
135
+ -1,
136
+ -1
137
+ ],
138
+ "split_conditions": [
139
+ 1,
140
+ 1,
141
+ 0.5,
142
+ 1,
143
+ 1,
144
+ 1,
145
+ 0.139,
146
+ 1,
147
+ 0.11111111,
148
+ 1,
149
+ 1.2443264,
150
+ -0.2616528,
151
+ 0.7280019,
152
+ 1.5018849,
153
+ 0.48179165,
154
+ 1,
155
+ 0.125,
156
+ 0.5116279,
157
+ 0.032258064,
158
+ 0.33333334,
159
+ 0.80932343,
160
+ 1,
161
+ 1,
162
+ 0.25925925,
163
+ -0.38450554,
164
+ -0.32037959,
165
+ 0.1761692,
166
+ 0.8538428,
167
+ 0.1761692,
168
+ 0.065,
169
+ 0.065,
170
+ -0.4246122,
171
+ 0,
172
+ -0.38833278,
173
+ 0.39943513,
174
+ -0.2616528,
175
+ 0.61684114,
176
+ 0.024802918,
177
+ -0.343637,
178
+ -0.2616528,
179
+ 0.35977647
180
+ ],
181
+ "split_indices": [
182
+ 74,
183
+ 42,
184
+ 13,
185
+ 72,
186
+ 75,
187
+ 75,
188
+ 9,
189
+ 75,
190
+ 42,
191
+ 78,
192
+ 0,
193
+ 0,
194
+ 0,
195
+ 0,
196
+ 0,
197
+ 36,
198
+ 9,
199
+ 43,
200
+ 87,
201
+ 3,
202
+ 0,
203
+ 78,
204
+ 14,
205
+ 43,
206
+ 0,
207
+ 0,
208
+ 0,
209
+ 0,
210
+ 0,
211
+ 9,
212
+ 9,
213
+ 0,
214
+ 0,
215
+ 0,
216
+ 0,
217
+ 0,
218
+ 0,
219
+ 0,
220
+ 0,
221
+ 0,
222
+ 0
223
+ ],
224
+ "split_type": [
225
+ 0,
226
+ 0,
227
+ 0,
228
+ 0,
229
+ 0,
230
+ 0,
231
+ 0,
232
+ 0,
233
+ 0,
234
+ 0,
235
+ 0,
236
+ 0,
237
+ 0,
238
+ 0,
239
+ 0,
240
+ 0,
241
+ 0,
242
+ 0,
243
+ 0,
244
+ 0,
245
+ 0,
246
+ 0,
247
+ 0,
248
+ 0,
249
+ 0,
250
+ 0,
251
+ 0,
252
+ 0,
253
+ 0,
254
+ 0,
255
+ 0,
256
+ 0,
257
+ 0,
258
+ 0,
259
+ 0,
260
+ 0,
261
+ 0,
262
+ 0,
263
+ 0,
264
+ 0,
265
+ 0
266
+ ]
267
+ },
268
+ {
269
+ "categories_nodes": [],
270
+ "categories_segments": [],
271
+ "categories_sizes": [],
272
+ "categories": [],
273
+ "default_left": [
274
+ 0,
275
+ 0,
276
+ 0,
277
+ 0,
278
+ 0,
279
+ 0,
280
+ 0,
281
+ 0,
282
+ 0,
283
+ 0,
284
+ 0,
285
+ 0,
286
+ 0,
287
+ 0,
288
+ 0,
289
+ 0,
290
+ 0,
291
+ 0,
292
+ 0,
293
+ 0,
294
+ 0,
295
+ 0,
296
+ 0,
297
+ 0,
298
+ 0,
299
+ 0,
300
+ 0,
301
+ 0,
302
+ 0,
303
+ 0,
304
+ 0,
305
+ 0,
306
+ 0,
307
+ 0,
308
+ 0,
309
+ 0,
310
+ 0
311
+ ],
312
+ "id": 1,
313
+ "left_children": [
314
+ 1,
315
+ 3,
316
+ 5,
317
+ 7,
318
+ 9,
319
+ 11,
320
+ -1,
321
+ 13,
322
+ 15,
323
+ -1,
324
+ 17,
325
+ 19,
326
+ -1,
327
+ 21,
328
+ 23,
329
+ 25,
330
+ -1,
331
+ -1,
332
+ -1,
333
+ 27,
334
+ -1,
335
+ 29,
336
+ 31,
337
+ 33,
338
+ -1,
339
+ -1,
340
+ -1,
341
+ 35,
342
+ -1,
343
+ -1,
344
+ -1,
345
+ -1,
346
+ -1,
347
+ -1,
348
+ -1,
349
+ -1,
350
+ -1
351
+ ],
352
+ "right_children": [
353
+ 2,
354
+ 4,
355
+ 6,
356
+ 8,
357
+ 10,
358
+ 12,
359
+ -1,
360
+ 14,
361
+ 16,
362
+ -1,
363
+ 18,
364
+ 20,
365
+ -1,
366
+ 22,
367
+ 24,
368
+ 26,
369
+ -1,
370
+ -1,
371
+ -1,
372
+ 28,
373
+ -1,
374
+ 30,
375
+ 32,
376
+ 34,
377
+ -1,
378
+ -1,
379
+ -1,
380
+ 36,
381
+ -1,
382
+ -1,
383
+ -1,
384
+ -1,
385
+ -1,
386
+ -1,
387
+ -1,
388
+ -1,
389
+ -1
390
+ ],
391
+ "split_conditions": [
392
+ 1,
393
+ 1,
394
+ 0.06666667,
395
+ 1,
396
+ 0.5,
397
+ 0.214,
398
+ -0.3563027,
399
+ 1,
400
+ 0.083333336,
401
+ -0.28484184,
402
+ 0.113,
403
+ 1,
404
+ -0.26770043,
405
+ 1,
406
+ 1,
407
+ 0.8888889,
408
+ 0.5727742,
409
+ 0.6919376,
410
+ 0.08261772,
411
+ 1,
412
+ -0.010135961,
413
+ 0.85714287,
414
+ 1,
415
+ 0.6923077,
416
+ 0.7157737,
417
+ -0.32211274,
418
+ 0.19548585,
419
+ 0.5294118,
420
+ 0.044631764,
421
+ -0.39830834,
422
+ -0.08424674,
423
+ -0.15560327,
424
+ 0.51756865,
425
+ 0.074414596,
426
+ -0.3479809,
427
+ 0.6734609,
428
+ 0.2751748
429
+ ],
430
+ "split_indices": [
431
+ 75,
432
+ 78,
433
+ 89,
434
+ 72,
435
+ 13,
436
+ 9,
437
+ 0,
438
+ 34,
439
+ 109,
440
+ 0,
441
+ 9,
442
+ 61,
443
+ 0,
444
+ 42,
445
+ 56,
446
+ 41,
447
+ 0,
448
+ 0,
449
+ 0,
450
+ 66,
451
+ 0,
452
+ 94,
453
+ 77,
454
+ 39,
455
+ 0,
456
+ 0,
457
+ 0,
458
+ 40,
459
+ 0,
460
+ 0,
461
+ 0,
462
+ 0,
463
+ 0,
464
+ 0,
465
+ 0,
466
+ 0,
467
+ 0
468
+ ],
469
+ "split_type": [
470
+ 0,
471
+ 0,
472
+ 0,
473
+ 0,
474
+ 0,
475
+ 0,
476
+ 0,
477
+ 0,
478
+ 0,
479
+ 0,
480
+ 0,
481
+ 0,
482
+ 0,
483
+ 0,
484
+ 0,
485
+ 0,
486
+ 0,
487
+ 0,
488
+ 0,
489
+ 0,
490
+ 0,
491
+ 0,
492
+ 0,
493
+ 0,
494
+ 0,
495
+ 0,
496
+ 0,
497
+ 0,
498
+ 0,
499
+ 0,
500
+ 0,
501
+ 0,
502
+ 0,
503
+ 0,
504
+ 0,
505
+ 0,
506
+ 0
507
+ ]
508
+ },
509
+ {
510
+ "categories_nodes": [],
511
+ "categories_segments": [],
512
+ "categories_sizes": [],
513
+ "categories": [],
514
+ "default_left": [
515
+ 0,
516
+ 0,
517
+ 0,
518
+ 0,
519
+ 0,
520
+ 0,
521
+ 0,
522
+ 0,
523
+ 0,
524
+ 0,
525
+ 0,
526
+ 0,
527
+ 0,
528
+ 0,
529
+ 0,
530
+ 0,
531
+ 0,
532
+ 0,
533
+ 0,
534
+ 0,
535
+ 0,
536
+ 0,
537
+ 0,
538
+ 0,
539
+ 0,
540
+ 0,
541
+ 0,
542
+ 0,
543
+ 0,
544
+ 0,
545
+ 0,
546
+ 0,
547
+ 0
548
+ ],
549
+ "id": 2,
550
+ "left_children": [
551
+ 1,
552
+ 3,
553
+ 5,
554
+ 7,
555
+ 9,
556
+ -1,
557
+ 11,
558
+ 13,
559
+ 15,
560
+ 17,
561
+ -1,
562
+ -1,
563
+ -1,
564
+ 19,
565
+ 21,
566
+ 23,
567
+ -1,
568
+ 25,
569
+ -1,
570
+ -1,
571
+ 27,
572
+ 29,
573
+ -1,
574
+ -1,
575
+ -1,
576
+ 31,
577
+ -1,
578
+ -1,
579
+ -1,
580
+ -1,
581
+ -1,
582
+ -1,
583
+ -1
584
+ ],
585
+ "right_children": [
586
+ 2,
587
+ 4,
588
+ 6,
589
+ 8,
590
+ 10,
591
+ -1,
592
+ 12,
593
+ 14,
594
+ 16,
595
+ 18,
596
+ -1,
597
+ -1,
598
+ -1,
599
+ 20,
600
+ 22,
601
+ 24,
602
+ -1,
603
+ 26,
604
+ -1,
605
+ -1,
606
+ 28,
607
+ 30,
608
+ -1,
609
+ -1,
610
+ -1,
611
+ 32,
612
+ -1,
613
+ -1,
614
+ -1,
615
+ -1,
616
+ -1,
617
+ -1,
618
+ -1
619
+ ],
620
+ "split_conditions": [
621
+ 1,
622
+ 0.5,
623
+ 0.4,
624
+ 1,
625
+ 0.113,
626
+ -0.026565379,
627
+ 1,
628
+ 1,
629
+ 1,
630
+ 1,
631
+ -0.34790108,
632
+ 0.4971039,
633
+ 0.024816377,
634
+ 0.35714287,
635
+ 0.33333334,
636
+ 0.137,
637
+ 0.46433988,
638
+ 1,
639
+ 0.54326075,
640
+ -0.38768128,
641
+ 0.25,
642
+ 0.5116279,
643
+ 0.36086407,
644
+ 0.21702297,
645
+ -0.3409324,
646
+ 0.33333334,
647
+ 0.37116998,
648
+ -0.29824036,
649
+ 0.07353557,
650
+ -0.36187568,
651
+ 0.08139974,
652
+ -0.23493034,
653
+ 0.15798792
654
+ ],
655
+ "split_indices": [
656
+ 74,
657
+ 42,
658
+ 41,
659
+ 34,
660
+ 9,
661
+ 0,
662
+ 83,
663
+ 75,
664
+ 56,
665
+ 78,
666
+ 0,
667
+ 0,
668
+ 0,
669
+ 40,
670
+ 42,
671
+ 9,
672
+ 0,
673
+ 75,
674
+ 0,
675
+ 0,
676
+ 43,
677
+ 43,
678
+ 0,
679
+ 0,
680
+ 0,
681
+ 3,
682
+ 0,
683
+ 0,
684
+ 0,
685
+ 0,
686
+ 0,
687
+ 0,
688
+ 0
689
+ ],
690
+ "split_type": [
691
+ 0,
692
+ 0,
693
+ 0,
694
+ 0,
695
+ 0,
696
+ 0,
697
+ 0,
698
+ 0,
699
+ 0,
700
+ 0,
701
+ 0,
702
+ 0,
703
+ 0,
704
+ 0,
705
+ 0,
706
+ 0,
707
+ 0,
708
+ 0,
709
+ 0,
710
+ 0,
711
+ 0,
712
+ 0,
713
+ 0,
714
+ 0,
715
+ 0,
716
+ 0,
717
+ 0,
718
+ 0,
719
+ 0,
720
+ 0,
721
+ 0,
722
+ 0,
723
+ 0
724
+ ]
725
+ },
726
+ {
727
+ "categories_nodes": [],
728
+ "categories_segments": [],
729
+ "categories_sizes": [],
730
+ "categories": [],
731
+ "default_left": [
732
+ 0,
733
+ 0,
734
+ 0,
735
+ 0,
736
+ 0,
737
+ 0,
738
+ 0,
739
+ 0,
740
+ 0,
741
+ 0,
742
+ 0,
743
+ 0,
744
+ 0,
745
+ 0,
746
+ 0,
747
+ 0,
748
+ 0,
749
+ 0,
750
+ 0,
751
+ 0,
752
+ 0,
753
+ 0,
754
+ 0,
755
+ 0,
756
+ 0
757
+ ],
758
+ "id": 3,
759
+ "left_children": [
760
+ 1,
761
+ 3,
762
+ -1,
763
+ 5,
764
+ 7,
765
+ 9,
766
+ 11,
767
+ 13,
768
+ -1,
769
+ 15,
770
+ -1,
771
+ 17,
772
+ -1,
773
+ 19,
774
+ -1,
775
+ -1,
776
+ 21,
777
+ -1,
778
+ -1,
779
+ 23,
780
+ -1,
781
+ -1,
782
+ -1,
783
+ -1,
784
+ -1
785
+ ],
786
+ "right_children": [
787
+ 2,
788
+ 4,
789
+ -1,
790
+ 6,
791
+ 8,
792
+ 10,
793
+ 12,
794
+ 14,
795
+ -1,
796
+ 16,
797
+ -1,
798
+ 18,
799
+ -1,
800
+ 20,
801
+ -1,
802
+ -1,
803
+ 22,
804
+ -1,
805
+ -1,
806
+ 24,
807
+ -1,
808
+ -1,
809
+ -1,
810
+ -1,
811
+ -1
812
+ ],
813
+ "split_conditions": [
814
+ 0.06666667,
815
+ 0.11764706,
816
+ -0.37149057,
817
+ 1,
818
+ 1,
819
+ 1,
820
+ 0.35714287,
821
+ 0.5,
822
+ -0.30027825,
823
+ 1,
824
+ 0.28606912,
825
+ 0.5116279,
826
+ 0.54664505,
827
+ 0.1875,
828
+ -0.22461472,
829
+ -0.37004367,
830
+ 0.096,
831
+ -0.23644562,
832
+ 0.05232847,
833
+ 1,
834
+ -0.221395,
835
+ 0.15287939,
836
+ -0.26261702,
837
+ 0.36291218,
838
+ -0.14427744
839
+ ],
840
+ "split_indices": [
841
+ 89,
842
+ 42,
843
+ 0,
844
+ 56,
845
+ 65,
846
+ 21,
847
+ 95,
848
+ 15,
849
+ 0,
850
+ 75,
851
+ 0,
852
+ 43,
853
+ 0,
854
+ 87,
855
+ 0,
856
+ 0,
857
+ 9,
858
+ 0,
859
+ 0,
860
+ 62,
861
+ 0,
862
+ 0,
863
+ 0,
864
+ 0,
865
+ 0
866
+ ],
867
+ "split_type": [
868
+ 0,
869
+ 0,
870
+ 0,
871
+ 0,
872
+ 0,
873
+ 0,
874
+ 0,
875
+ 0,
876
+ 0,
877
+ 0,
878
+ 0,
879
+ 0,
880
+ 0,
881
+ 0,
882
+ 0,
883
+ 0,
884
+ 0,
885
+ 0,
886
+ 0,
887
+ 0,
888
+ 0,
889
+ 0,
890
+ 0,
891
+ 0,
892
+ 0
893
+ ]
894
+ },
895
+ {
896
+ "categories_nodes": [],
897
+ "categories_segments": [],
898
+ "categories_sizes": [],
899
+ "categories": [],
900
+ "default_left": [
901
+ 0,
902
+ 0,
903
+ 0,
904
+ 0,
905
+ 0,
906
+ 0,
907
+ 0,
908
+ 0,
909
+ 0,
910
+ 0,
911
+ 0,
912
+ 0,
913
+ 0,
914
+ 0,
915
+ 0,
916
+ 0,
917
+ 0,
918
+ 0,
919
+ 0,
920
+ 0,
921
+ 0,
922
+ 0,
923
+ 0,
924
+ 0,
925
+ 0,
926
+ 0,
927
+ 0
928
+ ],
929
+ "id": 4,
930
+ "left_children": [
931
+ 1,
932
+ 3,
933
+ 5,
934
+ 7,
935
+ 9,
936
+ 11,
937
+ -1,
938
+ -1,
939
+ 13,
940
+ 15,
941
+ 17,
942
+ 19,
943
+ -1,
944
+ 21,
945
+ -1,
946
+ -1,
947
+ -1,
948
+ -1,
949
+ -1,
950
+ -1,
951
+ -1,
952
+ 23,
953
+ 25,
954
+ -1,
955
+ -1,
956
+ -1,
957
+ -1
958
+ ],
959
+ "right_children": [
960
+ 2,
961
+ 4,
962
+ 6,
963
+ 8,
964
+ 10,
965
+ 12,
966
+ -1,
967
+ -1,
968
+ 14,
969
+ 16,
970
+ 18,
971
+ 20,
972
+ -1,
973
+ 22,
974
+ -1,
975
+ -1,
976
+ -1,
977
+ -1,
978
+ -1,
979
+ -1,
980
+ -1,
981
+ 24,
982
+ 26,
983
+ -1,
984
+ -1,
985
+ -1,
986
+ -1
987
+ ],
988
+ "split_conditions": [
989
+ 1,
990
+ 1,
991
+ 0.14285715,
992
+ 1,
993
+ 0.11111111,
994
+ 0.22222222,
995
+ -0.034695927,
996
+ -0.3541934,
997
+ 1,
998
+ 0.08510638,
999
+ 1,
1000
+ 0.5,
1001
+ 0.10775185,
1002
+ 1,
1003
+ 0.31262293,
1004
+ -0.22442597,
1005
+ 0.08180507,
1006
+ 0.38470903,
1007
+ 0.06893887,
1008
+ 0.39274672,
1009
+ 0.11404824,
1010
+ 1,
1011
+ 0.18181819,
1012
+ -0.24191931,
1013
+ 0.13528186,
1014
+ -0.24406007,
1015
+ 0.3094782
1016
+ ],
1017
+ "split_indices": [
1018
+ 74,
1019
+ 72,
1020
+ 108,
1021
+ 28,
1022
+ 42,
1023
+ 93,
1024
+ 0,
1025
+ 0,
1026
+ 70,
1027
+ 87,
1028
+ 50,
1029
+ 11,
1030
+ 0,
1031
+ 36,
1032
+ 0,
1033
+ 0,
1034
+ 0,
1035
+ 0,
1036
+ 0,
1037
+ 0,
1038
+ 0,
1039
+ 78,
1040
+ 88,
1041
+ 0,
1042
+ 0,
1043
+ 0,
1044
+ 0
1045
+ ],
1046
+ "split_type": [
1047
+ 0,
1048
+ 0,
1049
+ 0,
1050
+ 0,
1051
+ 0,
1052
+ 0,
1053
+ 0,
1054
+ 0,
1055
+ 0,
1056
+ 0,
1057
+ 0,
1058
+ 0,
1059
+ 0,
1060
+ 0,
1061
+ 0,
1062
+ 0,
1063
+ 0,
1064
+ 0,
1065
+ 0,
1066
+ 0,
1067
+ 0,
1068
+ 0,
1069
+ 0,
1070
+ 0,
1071
+ 0,
1072
+ 0,
1073
+ 0
1074
+ ]
1075
+ },
1076
+ {
1077
+ "categories_nodes": [],
1078
+ "categories_segments": [],
1079
+ "categories_sizes": [],
1080
+ "categories": [],
1081
+ "default_left": [
1082
+ 0,
1083
+ 0,
1084
+ 0,
1085
+ 0,
1086
+ 0,
1087
+ 0,
1088
+ 0,
1089
+ 0,
1090
+ 0,
1091
+ 0,
1092
+ 0,
1093
+ 0,
1094
+ 0,
1095
+ 0,
1096
+ 0,
1097
+ 0,
1098
+ 0,
1099
+ 0,
1100
+ 0,
1101
+ 0,
1102
+ 0,
1103
+ 0,
1104
+ 0,
1105
+ 0,
1106
+ 0,
1107
+ 0,
1108
+ 0,
1109
+ 0,
1110
+ 0
1111
+ ],
1112
+ "id": 5,
1113
+ "left_children": [
1114
+ 1,
1115
+ 3,
1116
+ -1,
1117
+ 5,
1118
+ 7,
1119
+ 9,
1120
+ 11,
1121
+ 13,
1122
+ -1,
1123
+ 15,
1124
+ 17,
1125
+ -1,
1126
+ -1,
1127
+ 19,
1128
+ 21,
1129
+ -1,
1130
+ 23,
1131
+ -1,
1132
+ -1,
1133
+ 25,
1134
+ 27,
1135
+ -1,
1136
+ -1,
1137
+ -1,
1138
+ -1,
1139
+ -1,
1140
+ -1,
1141
+ -1,
1142
+ -1
1143
+ ],
1144
+ "right_children": [
1145
+ 2,
1146
+ 4,
1147
+ -1,
1148
+ 6,
1149
+ 8,
1150
+ 10,
1151
+ 12,
1152
+ 14,
1153
+ -1,
1154
+ 16,
1155
+ 18,
1156
+ -1,
1157
+ -1,
1158
+ 20,
1159
+ 22,
1160
+ -1,
1161
+ 24,
1162
+ -1,
1163
+ -1,
1164
+ 26,
1165
+ 28,
1166
+ -1,
1167
+ -1,
1168
+ -1,
1169
+ -1,
1170
+ -1,
1171
+ -1,
1172
+ -1,
1173
+ -1
1174
+ ],
1175
+ "split_conditions": [
1176
+ 0.06666667,
1177
+ 0.11764706,
1178
+ -0.34614056,
1179
+ 1,
1180
+ 1,
1181
+ 1,
1182
+ 0.214,
1183
+ 1,
1184
+ 0.32578686,
1185
+ 1,
1186
+ 0.6666667,
1187
+ 0.45768586,
1188
+ -0.02656251,
1189
+ 1,
1190
+ 0.15384616,
1191
+ -0.34696516,
1192
+ 0.096,
1193
+ -0.19775034,
1194
+ 0.3083376,
1195
+ 1,
1196
+ 0.33333334,
1197
+ 0.021895405,
1198
+ 0.45576572,
1199
+ 0.11779634,
1200
+ -0.22720803,
1201
+ -0.22061586,
1202
+ 0.34764892,
1203
+ 0.3258103,
1204
+ 0.08032642
1205
+ ],
1206
+ "split_indices": [
1207
+ 89,
1208
+ 42,
1209
+ 0,
1210
+ 21,
1211
+ 75,
1212
+ 56,
1213
+ 9,
1214
+ 52,
1215
+ 0,
1216
+ 75,
1217
+ 3,
1218
+ 0,
1219
+ 0,
1220
+ 78,
1221
+ 43,
1222
+ 0,
1223
+ 9,
1224
+ 0,
1225
+ 0,
1226
+ 77,
1227
+ 3,
1228
+ 0,
1229
+ 0,
1230
+ 0,
1231
+ 0,
1232
+ 0,
1233
+ 0,
1234
+ 0,
1235
+ 0
1236
+ ],
1237
+ "split_type": [
1238
+ 0,
1239
+ 0,
1240
+ 0,
1241
+ 0,
1242
+ 0,
1243
+ 0,
1244
+ 0,
1245
+ 0,
1246
+ 0,
1247
+ 0,
1248
+ 0,
1249
+ 0,
1250
+ 0,
1251
+ 0,
1252
+ 0,
1253
+ 0,
1254
+ 0,
1255
+ 0,
1256
+ 0,
1257
+ 0,
1258
+ 0,
1259
+ 0,
1260
+ 0,
1261
+ 0,
1262
+ 0,
1263
+ 0,
1264
+ 0,
1265
+ 0,
1266
+ 0
1267
+ ]
1268
+ },
1269
+ {
1270
+ "categories_nodes": [],
1271
+ "categories_segments": [],
1272
+ "categories_sizes": [],
1273
+ "categories": [],
1274
+ "default_left": [
1275
+ 0,
1276
+ 0,
1277
+ 0,
1278
+ 0,
1279
+ 0,
1280
+ 0,
1281
+ 0,
1282
+ 0,
1283
+ 0,
1284
+ 0,
1285
+ 0,
1286
+ 0,
1287
+ 0,
1288
+ 0,
1289
+ 0,
1290
+ 0,
1291
+ 0,
1292
+ 0,
1293
+ 0,
1294
+ 0,
1295
+ 0,
1296
+ 0,
1297
+ 0,
1298
+ 0,
1299
+ 0,
1300
+ 0,
1301
+ 0
1302
+ ],
1303
+ "id": 6,
1304
+ "left_children": [
1305
+ 1,
1306
+ 3,
1307
+ -1,
1308
+ 5,
1309
+ 7,
1310
+ 9,
1311
+ 11,
1312
+ 13,
1313
+ 15,
1314
+ 17,
1315
+ 19,
1316
+ -1,
1317
+ -1,
1318
+ 21,
1319
+ -1,
1320
+ -1,
1321
+ -1,
1322
+ -1,
1323
+ -1,
1324
+ 23,
1325
+ -1,
1326
+ 25,
1327
+ -1,
1328
+ -1,
1329
+ -1,
1330
+ -1,
1331
+ -1
1332
+ ],
1333
+ "right_children": [
1334
+ 2,
1335
+ 4,
1336
+ -1,
1337
+ 6,
1338
+ 8,
1339
+ 10,
1340
+ 12,
1341
+ 14,
1342
+ 16,
1343
+ 18,
1344
+ 20,
1345
+ -1,
1346
+ -1,
1347
+ 22,
1348
+ -1,
1349
+ -1,
1350
+ -1,
1351
+ -1,
1352
+ -1,
1353
+ 24,
1354
+ -1,
1355
+ 26,
1356
+ -1,
1357
+ -1,
1358
+ -1,
1359
+ -1,
1360
+ -1
1361
+ ],
1362
+ "split_conditions": [
1363
+ 0.06666667,
1364
+ 0.11764706,
1365
+ -0.33281332,
1366
+ 1,
1367
+ 1,
1368
+ 1,
1369
+ 1,
1370
+ 1,
1371
+ 0.5,
1372
+ 0.25,
1373
+ 0.2,
1374
+ -0.0036302302,
1375
+ 0.35906497,
1376
+ 1,
1377
+ -0.25890493,
1378
+ -0.05427891,
1379
+ -0.28487673,
1380
+ -0.33418742,
1381
+ 0.108451895,
1382
+ 1,
1383
+ 0.2695677,
1384
+ 1,
1385
+ 0.36311197,
1386
+ -0.19618304,
1387
+ 0.12914279,
1388
+ 0.19436762,
1389
+ -0.2209166
1390
+ ],
1391
+ "split_indices": [
1392
+ 89,
1393
+ 42,
1394
+ 0,
1395
+ 34,
1396
+ 85,
1397
+ 75,
1398
+ 21,
1399
+ 60,
1400
+ 100,
1401
+ 2,
1402
+ 97,
1403
+ 0,
1404
+ 0,
1405
+ 78,
1406
+ 0,
1407
+ 0,
1408
+ 0,
1409
+ 0,
1410
+ 0,
1411
+ 74,
1412
+ 0,
1413
+ 53,
1414
+ 0,
1415
+ 0,
1416
+ 0,
1417
+ 0,
1418
+ 0
1419
+ ],
1420
+ "split_type": [
1421
+ 0,
1422
+ 0,
1423
+ 0,
1424
+ 0,
1425
+ 0,
1426
+ 0,
1427
+ 0,
1428
+ 0,
1429
+ 0,
1430
+ 0,
1431
+ 0,
1432
+ 0,
1433
+ 0,
1434
+ 0,
1435
+ 0,
1436
+ 0,
1437
+ 0,
1438
+ 0,
1439
+ 0,
1440
+ 0,
1441
+ 0,
1442
+ 0,
1443
+ 0,
1444
+ 0,
1445
+ 0,
1446
+ 0,
1447
+ 0
1448
+ ]
1449
+ },
1450
+ {
1451
+ "categories_nodes": [],
1452
+ "categories_segments": [],
1453
+ "categories_sizes": [],
1454
+ "categories": [],
1455
+ "default_left": [
1456
+ 0,
1457
+ 0,
1458
+ 0,
1459
+ 0,
1460
+ 0,
1461
+ 0,
1462
+ 0,
1463
+ 0,
1464
+ 0,
1465
+ 0,
1466
+ 0,
1467
+ 0,
1468
+ 0,
1469
+ 0,
1470
+ 0,
1471
+ 0,
1472
+ 0,
1473
+ 0,
1474
+ 0,
1475
+ 0,
1476
+ 0
1477
+ ],
1478
+ "id": 7,
1479
+ "left_children": [
1480
+ 1,
1481
+ 3,
1482
+ -1,
1483
+ 5,
1484
+ 7,
1485
+ 9,
1486
+ 11,
1487
+ 13,
1488
+ -1,
1489
+ 15,
1490
+ 17,
1491
+ -1,
1492
+ -1,
1493
+ -1,
1494
+ -1,
1495
+ 19,
1496
+ -1,
1497
+ -1,
1498
+ -1,
1499
+ -1,
1500
+ -1
1501
+ ],
1502
+ "right_children": [
1503
+ 2,
1504
+ 4,
1505
+ -1,
1506
+ 6,
1507
+ 8,
1508
+ 10,
1509
+ 12,
1510
+ 14,
1511
+ -1,
1512
+ 16,
1513
+ 18,
1514
+ -1,
1515
+ -1,
1516
+ -1,
1517
+ -1,
1518
+ 20,
1519
+ -1,
1520
+ -1,
1521
+ -1,
1522
+ -1,
1523
+ -1
1524
+ ],
1525
+ "split_conditions": [
1526
+ 0.06666667,
1527
+ 1,
1528
+ -0.31901464,
1529
+ 1,
1530
+ 0.6666667,
1531
+ 1,
1532
+ 0.0625,
1533
+ 0.5,
1534
+ 0,
1535
+ 1,
1536
+ 0.2857143,
1537
+ -0.03620003,
1538
+ 0.27379066,
1539
+ 0.07946744,
1540
+ 0.3287265,
1541
+ 0.7647059,
1542
+ 0.2650791,
1543
+ 0.015838766,
1544
+ 0.39378008,
1545
+ 0.0908757,
1546
+ -0.21849494
1547
+ ],
1548
+ "split_indices": [
1549
+ 89,
1550
+ 74,
1551
+ 0,
1552
+ 72,
1553
+ 3,
1554
+ 83,
1555
+ 42,
1556
+ 13,
1557
+ 0,
1558
+ 77,
1559
+ 93,
1560
+ 0,
1561
+ 0,
1562
+ 0,
1563
+ 0,
1564
+ 39,
1565
+ 0,
1566
+ 0,
1567
+ 0,
1568
+ 0,
1569
+ 0
1570
+ ],
1571
+ "split_type": [
1572
+ 0,
1573
+ 0,
1574
+ 0,
1575
+ 0,
1576
+ 0,
1577
+ 0,
1578
+ 0,
1579
+ 0,
1580
+ 0,
1581
+ 0,
1582
+ 0,
1583
+ 0,
1584
+ 0,
1585
+ 0,
1586
+ 0,
1587
+ 0,
1588
+ 0,
1589
+ 0,
1590
+ 0,
1591
+ 0,
1592
+ 0
1593
+ ]
1594
+ },
1595
+ {
1596
+ "categories_nodes": [],
1597
+ "categories_segments": [],
1598
+ "categories_sizes": [],
1599
+ "categories": [],
1600
+ "default_left": [
1601
+ 0,
1602
+ 0,
1603
+ 0,
1604
+ 0,
1605
+ 0,
1606
+ 0,
1607
+ 0,
1608
+ 0,
1609
+ 0,
1610
+ 0,
1611
+ 0,
1612
+ 0,
1613
+ 0,
1614
+ 0,
1615
+ 0,
1616
+ 0,
1617
+ 0,
1618
+ 0,
1619
+ 0
1620
+ ],
1621
+ "id": 8,
1622
+ "left_children": [
1623
+ 1,
1624
+ 3,
1625
+ -1,
1626
+ 5,
1627
+ -1,
1628
+ 7,
1629
+ 9,
1630
+ 11,
1631
+ 13,
1632
+ -1,
1633
+ -1,
1634
+ 15,
1635
+ 17,
1636
+ -1,
1637
+ -1,
1638
+ -1,
1639
+ -1,
1640
+ -1,
1641
+ -1
1642
+ ],
1643
+ "right_children": [
1644
+ 2,
1645
+ 4,
1646
+ -1,
1647
+ 6,
1648
+ -1,
1649
+ 8,
1650
+ 10,
1651
+ 12,
1652
+ 14,
1653
+ -1,
1654
+ -1,
1655
+ 16,
1656
+ 18,
1657
+ -1,
1658
+ -1,
1659
+ -1,
1660
+ -1,
1661
+ -1,
1662
+ -1
1663
+ ],
1664
+ "split_conditions": [
1665
+ 0.06666667,
1666
+ 1,
1667
+ -0.30402267,
1668
+ 1,
1669
+ 0.3160898,
1670
+ 1,
1671
+ 0.0625,
1672
+ 0.8666667,
1673
+ 0.375,
1674
+ -0.0031639664,
1675
+ 0.25087982,
1676
+ 0.44,
1677
+ 0.2857143,
1678
+ 0.0210603,
1679
+ 0.31114572,
1680
+ -0.2471748,
1681
+ 0.16370073,
1682
+ -0.31547767,
1683
+ 0.081857614
1684
+ ],
1685
+ "split_indices": [
1686
+ 89,
1687
+ 70,
1688
+ 0,
1689
+ 72,
1690
+ 0,
1691
+ 77,
1692
+ 42,
1693
+ 41,
1694
+ 42,
1695
+ 0,
1696
+ 0,
1697
+ 41,
1698
+ 93,
1699
+ 0,
1700
+ 0,
1701
+ 0,
1702
+ 0,
1703
+ 0,
1704
+ 0
1705
+ ],
1706
+ "split_type": [
1707
+ 0,
1708
+ 0,
1709
+ 0,
1710
+ 0,
1711
+ 0,
1712
+ 0,
1713
+ 0,
1714
+ 0,
1715
+ 0,
1716
+ 0,
1717
+ 0,
1718
+ 0,
1719
+ 0,
1720
+ 0,
1721
+ 0,
1722
+ 0,
1723
+ 0,
1724
+ 0,
1725
+ 0
1726
+ ]
1727
+ },
1728
+ {
1729
+ "categories_nodes": [],
1730
+ "categories_segments": [],
1731
+ "categories_sizes": [],
1732
+ "categories": [],
1733
+ "default_left": [
1734
+ 0,
1735
+ 0,
1736
+ 0,
1737
+ 0,
1738
+ 0,
1739
+ 0,
1740
+ 0,
1741
+ 0,
1742
+ 0,
1743
+ 0,
1744
+ 0,
1745
+ 0,
1746
+ 0,
1747
+ 0,
1748
+ 0,
1749
+ 0,
1750
+ 0
1751
+ ],
1752
+ "id": 9,
1753
+ "left_children": [
1754
+ 1,
1755
+ 3,
1756
+ -1,
1757
+ 5,
1758
+ -1,
1759
+ 7,
1760
+ -1,
1761
+ 9,
1762
+ 11,
1763
+ 13,
1764
+ 15,
1765
+ -1,
1766
+ -1,
1767
+ -1,
1768
+ -1,
1769
+ -1,
1770
+ -1
1771
+ ],
1772
+ "right_children": [
1773
+ 2,
1774
+ 4,
1775
+ -1,
1776
+ 6,
1777
+ -1,
1778
+ 8,
1779
+ -1,
1780
+ 10,
1781
+ 12,
1782
+ 14,
1783
+ 16,
1784
+ -1,
1785
+ -1,
1786
+ -1,
1787
+ -1,
1788
+ -1,
1789
+ -1
1790
+ ],
1791
+ "split_conditions": [
1792
+ 0.06666667,
1793
+ 1,
1794
+ -0.28748164,
1795
+ 0.020408163,
1796
+ -0.26999667,
1797
+ 1,
1798
+ -0.25284052,
1799
+ 0.068,
1800
+ 0.25,
1801
+ 0.33333334,
1802
+ 1,
1803
+ 0.0031921081,
1804
+ 0.31482393,
1805
+ 0.01565789,
1806
+ -0.30655268,
1807
+ 0.041998107,
1808
+ 0.34940735
1809
+ ],
1810
+ "split_indices": [
1811
+ 89,
1812
+ 85,
1813
+ 0,
1814
+ 47,
1815
+ 0,
1816
+ 78,
1817
+ 0,
1818
+ 9,
1819
+ 42,
1820
+ 3,
1821
+ 76,
1822
+ 0,
1823
+ 0,
1824
+ 0,
1825
+ 0,
1826
+ 0,
1827
+ 0
1828
+ ],
1829
+ "split_type": [
1830
+ 0,
1831
+ 0,
1832
+ 0,
1833
+ 0,
1834
+ 0,
1835
+ 0,
1836
+ 0,
1837
+ 0,
1838
+ 0,
1839
+ 0,
1840
+ 0,
1841
+ 0,
1842
+ 0,
1843
+ 0,
1844
+ 0,
1845
+ 0,
1846
+ 0
1847
+ ]
1848
+ },
1849
+ {
1850
+ "categories_nodes": [],
1851
+ "categories_segments": [],
1852
+ "categories_sizes": [],
1853
+ "categories": [],
1854
+ "default_left": [
1855
+ 0,
1856
+ 0,
1857
+ 0,
1858
+ 0,
1859
+ 0,
1860
+ 0,
1861
+ 0,
1862
+ 0,
1863
+ 0,
1864
+ 0,
1865
+ 0,
1866
+ 0,
1867
+ 0,
1868
+ 0,
1869
+ 0,
1870
+ 0,
1871
+ 0,
1872
+ 0,
1873
+ 0,
1874
+ 0,
1875
+ 0,
1876
+ 0,
1877
+ 0,
1878
+ 0,
1879
+ 0
1880
+ ],
1881
+ "id": 10,
1882
+ "left_children": [
1883
+ 1,
1884
+ 3,
1885
+ 5,
1886
+ -1,
1887
+ -1,
1888
+ 7,
1889
+ -1,
1890
+ 9,
1891
+ 11,
1892
+ 13,
1893
+ 15,
1894
+ -1,
1895
+ -1,
1896
+ 17,
1897
+ 19,
1898
+ 21,
1899
+ 23,
1900
+ -1,
1901
+ -1,
1902
+ -1,
1903
+ -1,
1904
+ -1,
1905
+ -1,
1906
+ -1,
1907
+ -1
1908
+ ],
1909
+ "right_children": [
1910
+ 2,
1911
+ 4,
1912
+ 6,
1913
+ -1,
1914
+ -1,
1915
+ 8,
1916
+ -1,
1917
+ 10,
1918
+ 12,
1919
+ 14,
1920
+ 16,
1921
+ -1,
1922
+ -1,
1923
+ 18,
1924
+ 20,
1925
+ 22,
1926
+ 24,
1927
+ -1,
1928
+ -1,
1929
+ -1,
1930
+ -1,
1931
+ -1,
1932
+ -1,
1933
+ -1,
1934
+ -1
1935
+ ],
1936
+ "split_conditions": [
1937
+ 0.5,
1938
+ 0.6363636,
1939
+ 1,
1940
+ -0.02236611,
1941
+ -0.2888001,
1942
+ 1,
1943
+ 0.27069846,
1944
+ 0.33333334,
1945
+ 0.094,
1946
+ 1,
1947
+ 0.03125,
1948
+ 0.2683646,
1949
+ 0.06352145,
1950
+ 1,
1951
+ 0.5116279,
1952
+ 0.4,
1953
+ 0.18367347,
1954
+ -0.25735977,
1955
+ 0.062078465,
1956
+ 0.23462851,
1957
+ 0.009009587,
1958
+ 0.11448733,
1959
+ -0.17989105,
1960
+ 0,
1961
+ 0.3225651
1962
+ ],
1963
+ "split_indices": [
1964
+ 41,
1965
+ 39,
1966
+ 70,
1967
+ 0,
1968
+ 0,
1969
+ 77,
1970
+ 0,
1971
+ 40,
1972
+ 9,
1973
+ 78,
1974
+ 87,
1975
+ 0,
1976
+ 0,
1977
+ 93,
1978
+ 43,
1979
+ 14,
1980
+ 43,
1981
+ 0,
1982
+ 0,
1983
+ 0,
1984
+ 0,
1985
+ 0,
1986
+ 0,
1987
+ 0,
1988
+ 0
1989
+ ],
1990
+ "split_type": [
1991
+ 0,
1992
+ 0,
1993
+ 0,
1994
+ 0,
1995
+ 0,
1996
+ 0,
1997
+ 0,
1998
+ 0,
1999
+ 0,
2000
+ 0,
2001
+ 0,
2002
+ 0,
2003
+ 0,
2004
+ 0,
2005
+ 0,
2006
+ 0,
2007
+ 0,
2008
+ 0,
2009
+ 0,
2010
+ 0,
2011
+ 0,
2012
+ 0,
2013
+ 0,
2014
+ 0,
2015
+ 0
2016
+ ]
2017
+ },
2018
+ {
2019
+ "categories_nodes": [],
2020
+ "categories_segments": [],
2021
+ "categories_sizes": [],
2022
+ "categories": [],
2023
+ "default_left": [
2024
+ 0,
2025
+ 0,
2026
+ 0,
2027
+ 0,
2028
+ 0,
2029
+ 0,
2030
+ 0,
2031
+ 0,
2032
+ 0,
2033
+ 0,
2034
+ 0,
2035
+ 0,
2036
+ 0,
2037
+ 0,
2038
+ 0,
2039
+ 0,
2040
+ 0,
2041
+ 0,
2042
+ 0,
2043
+ 0,
2044
+ 0,
2045
+ 0,
2046
+ 0
2047
+ ],
2048
+ "id": 11,
2049
+ "left_children": [
2050
+ 1,
2051
+ 3,
2052
+ 5,
2053
+ 7,
2054
+ -1,
2055
+ 9,
2056
+ 11,
2057
+ 13,
2058
+ 15,
2059
+ -1,
2060
+ -1,
2061
+ -1,
2062
+ 17,
2063
+ -1,
2064
+ -1,
2065
+ 19,
2066
+ -1,
2067
+ -1,
2068
+ -1,
2069
+ 21,
2070
+ -1,
2071
+ -1,
2072
+ -1
2073
+ ],
2074
+ "right_children": [
2075
+ 2,
2076
+ 4,
2077
+ 6,
2078
+ 8,
2079
+ -1,
2080
+ 10,
2081
+ 12,
2082
+ 14,
2083
+ 16,
2084
+ -1,
2085
+ -1,
2086
+ -1,
2087
+ 18,
2088
+ -1,
2089
+ -1,
2090
+ 20,
2091
+ -1,
2092
+ -1,
2093
+ -1,
2094
+ 22,
2095
+ -1,
2096
+ -1,
2097
+ -1
2098
+ ],
2099
+ "split_conditions": [
2100
+ 0.143,
2101
+ 0.6666667,
2102
+ 0.8,
2103
+ 0.11764706,
2104
+ 0.29769707,
2105
+ 1,
2106
+ 1,
2107
+ 1,
2108
+ 1,
2109
+ -0.29856202,
2110
+ -0.06651555,
2111
+ -0.07190087,
2112
+ 0.18181819,
2113
+ -0.25756392,
2114
+ 0.0032056994,
2115
+ 0.2,
2116
+ -0.22306377,
2117
+ 0,
2118
+ 0.22992176,
2119
+ 1,
2120
+ -0.1263198,
2121
+ 0.18086645,
2122
+ -0.042687424
2123
+ ],
2124
+ "split_indices": [
2125
+ 9,
2126
+ 3,
2127
+ 14,
2128
+ 42,
2129
+ 0,
2130
+ 75,
2131
+ 56,
2132
+ 36,
2133
+ 86,
2134
+ 0,
2135
+ 0,
2136
+ 0,
2137
+ 43,
2138
+ 0,
2139
+ 0,
2140
+ 114,
2141
+ 0,
2142
+ 0,
2143
+ 0,
2144
+ 61,
2145
+ 0,
2146
+ 0,
2147
+ 0
2148
+ ],
2149
+ "split_type": [
2150
+ 0,
2151
+ 0,
2152
+ 0,
2153
+ 0,
2154
+ 0,
2155
+ 0,
2156
+ 0,
2157
+ 0,
2158
+ 0,
2159
+ 0,
2160
+ 0,
2161
+ 0,
2162
+ 0,
2163
+ 0,
2164
+ 0,
2165
+ 0,
2166
+ 0,
2167
+ 0,
2168
+ 0,
2169
+ 0,
2170
+ 0,
2171
+ 0,
2172
+ 0
2173
+ ]
2174
+ },
2175
+ {
2176
+ "categories_nodes": [],
2177
+ "categories_segments": [],
2178
+ "categories_sizes": [],
2179
+ "categories": [],
2180
+ "default_left": [
2181
+ 0,
2182
+ 0,
2183
+ 0,
2184
+ 0,
2185
+ 0,
2186
+ 0,
2187
+ 0,
2188
+ 0,
2189
+ 0,
2190
+ 0,
2191
+ 0,
2192
+ 0,
2193
+ 0,
2194
+ 0,
2195
+ 0,
2196
+ 0,
2197
+ 0,
2198
+ 0,
2199
+ 0,
2200
+ 0,
2201
+ 0,
2202
+ 0,
2203
+ 0,
2204
+ 0,
2205
+ 0,
2206
+ 0,
2207
+ 0
2208
+ ],
2209
+ "id": 12,
2210
+ "left_children": [
2211
+ 1,
2212
+ 3,
2213
+ 5,
2214
+ 7,
2215
+ 9,
2216
+ -1,
2217
+ -1,
2218
+ 11,
2219
+ -1,
2220
+ -1,
2221
+ 13,
2222
+ 15,
2223
+ 17,
2224
+ 19,
2225
+ -1,
2226
+ -1,
2227
+ 21,
2228
+ -1,
2229
+ 23,
2230
+ 25,
2231
+ -1,
2232
+ -1,
2233
+ -1,
2234
+ -1,
2235
+ -1,
2236
+ -1,
2237
+ -1
2238
+ ],
2239
+ "right_children": [
2240
+ 2,
2241
+ 4,
2242
+ 6,
2243
+ 8,
2244
+ 10,
2245
+ -1,
2246
+ -1,
2247
+ 12,
2248
+ -1,
2249
+ -1,
2250
+ 14,
2251
+ 16,
2252
+ 18,
2253
+ 20,
2254
+ -1,
2255
+ -1,
2256
+ 22,
2257
+ -1,
2258
+ 24,
2259
+ 26,
2260
+ -1,
2261
+ -1,
2262
+ -1,
2263
+ -1,
2264
+ -1,
2265
+ -1,
2266
+ -1
2267
+ ],
2268
+ "split_conditions": [
2269
+ 1,
2270
+ 0.6666667,
2271
+ 0.44444445,
2272
+ 1,
2273
+ 0.065,
2274
+ 0.2448681,
2275
+ 0.026563909,
2276
+ 0.4,
2277
+ 0.13903756,
2278
+ -0.24570616,
2279
+ 0.143,
2280
+ 0.07,
2281
+ 0.03125,
2282
+ 1,
2283
+ -0.13812104,
2284
+ -0.0054215174,
2285
+ 1,
2286
+ -0.22352356,
2287
+ 0.25,
2288
+ 0.092,
2289
+ -0.13061607,
2290
+ -0.3103707,
2291
+ -0.062275015,
2292
+ 0.3121407,
2293
+ -0.014768046,
2294
+ 0.11900901,
2295
+ 0.3528405
2296
+ ],
2297
+ "split_indices": [
2298
+ 74,
2299
+ 43,
2300
+ 43,
2301
+ 78,
2302
+ 9,
2303
+ 0,
2304
+ 0,
2305
+ 14,
2306
+ 0,
2307
+ 0,
2308
+ 9,
2309
+ 9,
2310
+ 87,
2311
+ 53,
2312
+ 0,
2313
+ 0,
2314
+ 72,
2315
+ 0,
2316
+ 1,
2317
+ 9,
2318
+ 0,
2319
+ 0,
2320
+ 0,
2321
+ 0,
2322
+ 0,
2323
+ 0,
2324
+ 0
2325
+ ],
2326
+ "split_type": [
2327
+ 0,
2328
+ 0,
2329
+ 0,
2330
+ 0,
2331
+ 0,
2332
+ 0,
2333
+ 0,
2334
+ 0,
2335
+ 0,
2336
+ 0,
2337
+ 0,
2338
+ 0,
2339
+ 0,
2340
+ 0,
2341
+ 0,
2342
+ 0,
2343
+ 0,
2344
+ 0,
2345
+ 0,
2346
+ 0,
2347
+ 0,
2348
+ 0,
2349
+ 0,
2350
+ 0,
2351
+ 0,
2352
+ 0,
2353
+ 0
2354
+ ]
2355
+ },
2356
+ {
2357
+ "categories_nodes": [],
2358
+ "categories_segments": [],
2359
+ "categories_sizes": [],
2360
+ "categories": [],
2361
+ "default_left": [
2362
+ 0,
2363
+ 0,
2364
+ 0,
2365
+ 0,
2366
+ 0,
2367
+ 0,
2368
+ 0,
2369
+ 0,
2370
+ 0,
2371
+ 0,
2372
+ 0,
2373
+ 0,
2374
+ 0,
2375
+ 0,
2376
+ 0,
2377
+ 0,
2378
+ 0,
2379
+ 0,
2380
+ 0,
2381
+ 0,
2382
+ 0
2383
+ ],
2384
+ "id": 13,
2385
+ "left_children": [
2386
+ 1,
2387
+ 3,
2388
+ 5,
2389
+ 7,
2390
+ -1,
2391
+ -1,
2392
+ -1,
2393
+ 9,
2394
+ 11,
2395
+ -1,
2396
+ 13,
2397
+ -1,
2398
+ 15,
2399
+ 17,
2400
+ 19,
2401
+ -1,
2402
+ -1,
2403
+ -1,
2404
+ -1,
2405
+ -1,
2406
+ -1
2407
+ ],
2408
+ "right_children": [
2409
+ 2,
2410
+ 4,
2411
+ 6,
2412
+ 8,
2413
+ -1,
2414
+ -1,
2415
+ -1,
2416
+ 10,
2417
+ 12,
2418
+ -1,
2419
+ 14,
2420
+ -1,
2421
+ 16,
2422
+ 18,
2423
+ 20,
2424
+ -1,
2425
+ -1,
2426
+ -1,
2427
+ -1,
2428
+ -1,
2429
+ -1
2430
+ ],
2431
+ "split_conditions": [
2432
+ 1,
2433
+ 1,
2434
+ 0.2,
2435
+ 1,
2436
+ -0.26600093,
2437
+ 0.033916485,
2438
+ 0.24820511,
2439
+ 0.07619048,
2440
+ 0.096,
2441
+ -0.25407755,
2442
+ 0.4,
2443
+ 0.24073493,
2444
+ 0.5625,
2445
+ 1,
2446
+ 0.7,
2447
+ 0.06996503,
2448
+ -0.15577997,
2449
+ -0.103772566,
2450
+ 0.13883917,
2451
+ 0.21175478,
2452
+ 0.041600797
2453
+ ],
2454
+ "split_indices": [
2455
+ 80,
2456
+ 61,
2457
+ 42,
2458
+ 75,
2459
+ 0,
2460
+ 0,
2461
+ 0,
2462
+ 88,
2463
+ 9,
2464
+ 0,
2465
+ 14,
2466
+ 0,
2467
+ 41,
2468
+ 21,
2469
+ 41,
2470
+ 0,
2471
+ 0,
2472
+ 0,
2473
+ 0,
2474
+ 0,
2475
+ 0
2476
+ ],
2477
+ "split_type": [
2478
+ 0,
2479
+ 0,
2480
+ 0,
2481
+ 0,
2482
+ 0,
2483
+ 0,
2484
+ 0,
2485
+ 0,
2486
+ 0,
2487
+ 0,
2488
+ 0,
2489
+ 0,
2490
+ 0,
2491
+ 0,
2492
+ 0,
2493
+ 0,
2494
+ 0,
2495
+ 0,
2496
+ 0,
2497
+ 0,
2498
+ 0
2499
+ ]
2500
+ }
2501
+ ],
2502
+ "feature_names": [
2503
+ "recovery--visibleFieldsCountScaled",
2504
+ "recovery--visibleInputsCountScaled",
2505
+ "recovery--fieldsetsCountScaled",
2506
+ "recovery--textsCountScaled",
2507
+ "recovery--textareasCountScaled",
2508
+ "recovery--selectsCountScaled",
2509
+ "recovery--disabledCountScaled",
2510
+ "recovery--radiosCountScaled",
2511
+ "recovery--readOnlyCountScaled",
2512
+ "recovery--formComplexityScaled",
2513
+ "recovery--visibleIdentifiersCountScaled",
2514
+ "recovery--hiddenIdentifiersCountScaled",
2515
+ "recovery--usernamesCountScaled",
2516
+ "recovery--emailsCountScaled",
2517
+ "recovery--hiddenCountScaled",
2518
+ "recovery--hiddenPasswordsCountScaled",
2519
+ "recovery--submitsCountScaled",
2520
+ "recovery--identitiesCountScaled",
2521
+ "recovery--ccsCountScaled",
2522
+ "recovery--hasTels",
2523
+ "recovery--hasOAuth",
2524
+ "recovery--hasCaptchas",
2525
+ "recovery--hasFiles",
2526
+ "recovery--hasDate",
2527
+ "recovery--hasNumber",
2528
+ "recovery--oneVisibleField",
2529
+ "recovery--twoVisibleFields",
2530
+ "recovery--threeOrMoreVisibleFields",
2531
+ "recovery--noPasswords",
2532
+ "recovery--onePassword",
2533
+ "recovery--twoPasswords",
2534
+ "recovery--threeOrMorePasswords",
2535
+ "recovery--noIdentifiers",
2536
+ "recovery--oneIdentifier",
2537
+ "recovery--twoIdentifiers",
2538
+ "recovery--threeOrMoreIdentifiers",
2539
+ "recovery--autofocusedIsIdentifier",
2540
+ "recovery--autofocusedIsPassword",
2541
+ "recovery--visibleRatio",
2542
+ "recovery--inputRatio",
2543
+ "recovery--hiddenRatio",
2544
+ "recovery--identifierRatio",
2545
+ "recovery--emailRatio",
2546
+ "recovery--usernameRatio",
2547
+ "recovery--passwordRatio",
2548
+ "recovery--disabledRatio",
2549
+ "recovery--requiredRatio",
2550
+ "recovery--checkboxRatio",
2551
+ "recovery--hiddenIdentifierRatio",
2552
+ "recovery--hiddenPasswordRatio",
2553
+ "recovery--pageLogin",
2554
+ "recovery--formTextLogin",
2555
+ "recovery--formAttrsLogin",
2556
+ "recovery--headingsLogin",
2557
+ "recovery--layoutLogin",
2558
+ "recovery--rememberMeCheckbox",
2559
+ "recovery--troubleLink",
2560
+ "recovery--submitLogin",
2561
+ "recovery--pageRegister",
2562
+ "recovery--formTextRegister",
2563
+ "recovery--formAttrsRegister",
2564
+ "recovery--headingsRegister",
2565
+ "recovery--layoutRegister",
2566
+ "recovery--pwNewRegister",
2567
+ "recovery--pwConfirmRegister",
2568
+ "recovery--submitRegister",
2569
+ "recovery--TOSRef",
2570
+ "recovery--pagePwReset",
2571
+ "recovery--formTextPwReset",
2572
+ "recovery--formAttrsPwReset",
2573
+ "recovery--headingsPwReset",
2574
+ "recovery--layoutPwReset",
2575
+ "recovery--pageRecovery",
2576
+ "recovery--formTextRecovery",
2577
+ "recovery--formAttrsRecovery",
2578
+ "recovery--headingsRecovery",
2579
+ "recovery--layoutRecovery",
2580
+ "recovery--identifierRecovery",
2581
+ "recovery--submitRecovery",
2582
+ "recovery--formTextMFA",
2583
+ "recovery--formAttrsMFA",
2584
+ "recovery--inputsMFA",
2585
+ "recovery--newsletterForm",
2586
+ "recovery--searchForm",
2587
+ "recovery--multistepForm",
2588
+ "recovery--multiAuthForm",
2589
+ "recovery--multistepForm,multiAuthForm",
2590
+ "recovery--visibleRatio,visibleFieldsCountScaled",
2591
+ "recovery--visibleRatio,visibleIdentifiersCountScaled",
2592
+ "recovery--visibleRatio,visiblePasswordsCountScaled",
2593
+ "recovery--visibleRatio,hiddenIdentifiersCountScaled",
2594
+ "recovery--visibleRatio,hiddenPasswordsCountScaled",
2595
+ "recovery--visibleRatio,multiAuthForm",
2596
+ "recovery--visibleRatio,multistepForm",
2597
+ "recovery--identifierRatio,visibleFieldsCountScaled",
2598
+ "recovery--identifierRatio,visibleIdentifiersCountScaled",
2599
+ "recovery--identifierRatio,visiblePasswordsCountScaled",
2600
+ "recovery--identifierRatio,hiddenIdentifiersCountScaled",
2601
+ "recovery--identifierRatio,hiddenPasswordsCountScaled",
2602
+ "recovery--identifierRatio,multiAuthForm",
2603
+ "recovery--identifierRatio,multistepForm",
2604
+ "recovery--passwordRatio,visibleFieldsCountScaled",
2605
+ "recovery--passwordRatio,visibleIdentifiersCountScaled",
2606
+ "recovery--passwordRatio,visiblePasswordsCountScaled",
2607
+ "recovery--passwordRatio,hiddenIdentifiersCountScaled",
2608
+ "recovery--passwordRatio,hiddenPasswordsCountScaled",
2609
+ "recovery--passwordRatio,multiAuthForm",
2610
+ "recovery--passwordRatio,multistepForm",
2611
+ "recovery--requiredRatio,visibleFieldsCountScaled",
2612
+ "recovery--requiredRatio,visibleIdentifiersCountScaled",
2613
+ "recovery--requiredRatio,visiblePasswordsCountScaled",
2614
+ "recovery--requiredRatio,hiddenIdentifiersCountScaled",
2615
+ "recovery--requiredRatio,hiddenPasswordsCountScaled",
2616
+ "recovery--requiredRatio,multiAuthForm",
2617
+ "recovery--requiredRatio,multistepForm"
2618
+ ],
2619
+ "feature_types": [
2620
+ "float",
2621
+ "float",
2622
+ "float",
2623
+ "float",
2624
+ "float",
2625
+ "float",
2626
+ "float",
2627
+ "float",
2628
+ "float",
2629
+ "float",
2630
+ "float",
2631
+ "float",
2632
+ "float",
2633
+ "float",
2634
+ "float",
2635
+ "float",
2636
+ "float",
2637
+ "float",
2638
+ "float",
2639
+ "int",
2640
+ "int",
2641
+ "int",
2642
+ "int",
2643
+ "int",
2644
+ "int",
2645
+ "int",
2646
+ "int",
2647
+ "int",
2648
+ "int",
2649
+ "int",
2650
+ "int",
2651
+ "int",
2652
+ "int",
2653
+ "int",
2654
+ "int",
2655
+ "int",
2656
+ "int",
2657
+ "int",
2658
+ "float",
2659
+ "float",
2660
+ "float",
2661
+ "float",
2662
+ "float",
2663
+ "float",
2664
+ "float",
2665
+ "float",
2666
+ "float",
2667
+ "float",
2668
+ "float",
2669
+ "float",
2670
+ "int",
2671
+ "int",
2672
+ "int",
2673
+ "int",
2674
+ "int",
2675
+ "int",
2676
+ "int",
2677
+ "int",
2678
+ "int",
2679
+ "int",
2680
+ "int",
2681
+ "int",
2682
+ "int",
2683
+ "int",
2684
+ "int",
2685
+ "int",
2686
+ "int",
2687
+ "int",
2688
+ "int",
2689
+ "int",
2690
+ "int",
2691
+ "int",
2692
+ "int",
2693
+ "int",
2694
+ "int",
2695
+ "int",
2696
+ "int",
2697
+ "int",
2698
+ "int",
2699
+ "int",
2700
+ "int",
2701
+ "int",
2702
+ "int",
2703
+ "int",
2704
+ "int",
2705
+ "int",
2706
+ "int",
2707
+ "float",
2708
+ "float",
2709
+ "float",
2710
+ "float",
2711
+ "float",
2712
+ "float",
2713
+ "float",
2714
+ "float",
2715
+ "float",
2716
+ "float",
2717
+ "float",
2718
+ "float",
2719
+ "float",
2720
+ "float",
2721
+ "float",
2722
+ "float",
2723
+ "float",
2724
+ "float",
2725
+ "float",
2726
+ "float",
2727
+ "float",
2728
+ "float",
2729
+ "float",
2730
+ "float",
2731
+ "float",
2732
+ "float",
2733
+ "float",
2734
+ "float"
2735
+ ],
2736
+ "tree_info": [
2737
+ 0,
2738
+ 0,
2739
+ 0,
2740
+ 0,
2741
+ 0,
2742
+ 0,
2743
+ 0,
2744
+ 0,
2745
+ 0,
2746
+ 0,
2747
+ 0,
2748
+ 0,
2749
+ 0,
2750
+ 0
2751
+ ],
2752
+ "num_class": 0,
2753
+ "objective": "binary:logistic"
2754
+ }