@protontech/autofill 0.0.22991789 → 0.0.33690782

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 (190) 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 +17 -0
  16. package/features/feature.js +72 -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 +4427 -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 +5 -2
  38. package/index.js +10 -3
  39. package/models/perceptron/index.d.ts +2 -0
  40. package/models/perceptron/index.js +27 -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/prod_20240829/index.d.ts +2 -0
  52. package/models/prod_20240829/index.js +27 -0
  53. package/models/prod_20240829/params/email-model.json +45 -0
  54. package/models/prod_20240829/params/login-model.json +421 -0
  55. package/models/prod_20240829/params/new-password-model.json +125 -0
  56. package/models/prod_20240829/params/otp-model.json +153 -0
  57. package/models/prod_20240829/params/password-change-model.json +421 -0
  58. package/models/prod_20240829/params/password-model.json +125 -0
  59. package/models/prod_20240829/params/recovery-model.json +421 -0
  60. package/models/prod_20240829/params/register-model.json +421 -0
  61. package/models/prod_20240829/params/username-hidden-model.json +41 -0
  62. package/models/prod_20240829/params/username-model.json +45 -0
  63. package/models/random_forest/index.d.ts +2 -0
  64. package/models/random_forest/index.js +27 -0
  65. package/models/random_forest/params/email-model.json +1456 -0
  66. package/models/random_forest/params/login-model.json +4194 -0
  67. package/models/random_forest/params/new-password-model.json +1448 -0
  68. package/models/random_forest/params/otp-model.json +2004 -0
  69. package/models/random_forest/params/password-change-model.json +1422 -0
  70. package/models/random_forest/params/password-model.json +1292 -0
  71. package/models/random_forest/params/recovery-model.json +2754 -0
  72. package/models/random_forest/params/register-model.json +3678 -0
  73. package/models/random_forest/params/username-hidden-model.json +1108 -0
  74. package/models/random_forest/params/username-model.json +1052 -0
  75. package/models/v1/index.d.ts +2 -0
  76. package/models/v1/index.js +35 -0
  77. package/package.json +14 -15
  78. package/rules/v1/index.d.ts +3 -0
  79. package/rules/v1/index.js +69 -0
  80. package/rulesets.d.ts +2 -2
  81. package/rulesets.js +11 -10
  82. package/types/index.d.ts +72 -17
  83. package/types/index.js +35 -2
  84. package/utils/attributes.js +1 -1
  85. package/utils/clustering.js +18 -5
  86. package/utils/credit-card.d.ts +32 -0
  87. package/utils/credit-card.js +259 -0
  88. package/utils/credit-card.samples.spec.d.ts +1 -0
  89. package/utils/credit-card.samples.spec.js +452 -0
  90. package/utils/credit-card.spec.d.ts +1 -0
  91. package/utils/credit-card.spec.js +296 -0
  92. package/utils/dom.d.ts +3 -2
  93. package/utils/dom.js +12 -7
  94. package/utils/exclusion.d.ts +1 -0
  95. package/utils/exclusion.js +22 -10
  96. package/utils/extract.d.ts +1 -0
  97. package/utils/extract.js +26 -7
  98. package/utils/fathom.d.ts +10 -23
  99. package/utils/fathom.js +7 -12
  100. package/utils/field.d.ts +12 -4
  101. package/utils/field.js +25 -14
  102. package/utils/flags.d.ts +9 -3
  103. package/utils/flags.js +27 -9
  104. package/utils/form.d.ts +16 -5
  105. package/utils/form.js +35 -14
  106. package/utils/identity.d.ts +12 -21
  107. package/utils/identity.js +66 -41
  108. package/utils/identity.samples.spec.d.ts +1 -0
  109. package/utils/identity.samples.spec.js +28 -0
  110. package/utils/iframe.d.ts +2 -0
  111. package/utils/iframe.js +22 -0
  112. package/utils/overrides.d.ts +19 -0
  113. package/utils/overrides.js +40 -0
  114. package/utils/prepass.js +6 -4
  115. package/utils/re.d.ts +19 -4
  116. package/utils/re.js +22 -7
  117. package/utils/re.spec.d.ts +1 -0
  118. package/utils/re.spec.js +62 -0
  119. package/utils/shadow-dom.d.ts +8 -0
  120. package/utils/shadow-dom.js +53 -0
  121. package/utils/shadow-dom.spec.d.ts +1 -0
  122. package/utils/shadow-dom.spec.js +215 -0
  123. package/utils/visible.d.ts +3 -2
  124. package/utils/visible.js +42 -22
  125. package/cli.d.ts +0 -2
  126. package/cli.js +0 -128
  127. package/features/abstract.field.d.ts +0 -123
  128. package/features/abstract.field.js +0 -63
  129. package/features/abstract.form.d.ts +0 -98
  130. package/features/abstract.form.js +0 -281
  131. package/features/field.email.d.ts +0 -18
  132. package/features/field.email.js +0 -43
  133. package/features/field.otp.d.ts +0 -36
  134. package/features/field.otp.js +0 -116
  135. package/features/field.password.d.ts +0 -35
  136. package/features/field.password.js +0 -104
  137. package/features/field.username-hidden.d.ts +0 -15
  138. package/features/field.username-hidden.js +0 -40
  139. package/features/field.username.d.ts +0 -16
  140. package/features/field.username.js +0 -41
  141. package/features/form.combined.d.ts +0 -1
  142. package/features/form.combined.js +0 -6
  143. package/trainees/field.email.d.ts +0 -2
  144. package/trainees/field.email.js +0 -16
  145. package/trainees/field.identity.d.ts +0 -2
  146. package/trainees/field.identity.js +0 -9
  147. package/trainees/field.otp.d.ts +0 -2
  148. package/trainees/field.otp.js +0 -16
  149. package/trainees/field.password.current.d.ts +0 -2
  150. package/trainees/field.password.current.js +0 -16
  151. package/trainees/field.password.new.d.ts +0 -2
  152. package/trainees/field.password.new.js +0 -16
  153. package/trainees/field.username-hidden.d.ts +0 -2
  154. package/trainees/field.username-hidden.js +0 -22
  155. package/trainees/field.username.d.ts +0 -2
  156. package/trainees/field.username.js +0 -16
  157. package/trainees/form.login.d.ts +0 -2
  158. package/trainees/form.login.js +0 -16
  159. package/trainees/form.noop.d.ts +0 -1
  160. package/trainees/form.noop.js +0 -7
  161. package/trainees/form.password-change.d.ts +0 -2
  162. package/trainees/form.password-change.js +0 -16
  163. package/trainees/form.recovery.d.ts +0 -2
  164. package/trainees/form.recovery.js +0 -16
  165. package/trainees/form.register.d.ts +0 -2
  166. package/trainees/form.register.js +0 -16
  167. package/trainees/index.d.ts +0 -9
  168. package/trainees/index.js +0 -72
  169. package/trainees/results/result.email.d.ts +0 -2
  170. package/trainees/results/result.email.js +0 -17
  171. package/trainees/results/result.login.d.ts +0 -2
  172. package/trainees/results/result.login.js +0 -110
  173. package/trainees/results/result.new-password.d.ts +0 -2
  174. package/trainees/results/result.new-password.js +0 -36
  175. package/trainees/results/result.otp.d.ts +0 -2
  176. package/trainees/results/result.otp.js +0 -43
  177. package/trainees/results/result.password-change.d.ts +0 -2
  178. package/trainees/results/result.password-change.js +0 -110
  179. package/trainees/results/result.password.d.ts +0 -2
  180. package/trainees/results/result.password.js +0 -36
  181. package/trainees/results/result.recovery.d.ts +0 -2
  182. package/trainees/results/result.recovery.js +0 -110
  183. package/trainees/results/result.register.d.ts +0 -2
  184. package/trainees/results/result.register.js +0 -110
  185. package/trainees/results/result.username-hidden.d.ts +0 -2
  186. package/trainees/results/result.username-hidden.js +0 -15
  187. package/trainees/results/result.username.d.ts +0 -2
  188. package/trainees/results/result.username.js +0 -16
  189. package/utils/memoize.d.ts +0 -5
  190. package/utils/memoize.js +0 -12
@@ -0,0 +1,1052 @@
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
+ ],
19
+ "id": 0,
20
+ "left_children": [
21
+ 1,
22
+ 3,
23
+ -1,
24
+ 5,
25
+ -1,
26
+ 7,
27
+ -1,
28
+ -1,
29
+ -1
30
+ ],
31
+ "right_children": [
32
+ 2,
33
+ 4,
34
+ -1,
35
+ 6,
36
+ -1,
37
+ 8,
38
+ -1,
39
+ -1,
40
+ -1
41
+ ],
42
+ "split_conditions": [
43
+ 1,
44
+ 1,
45
+ 1.0421218,
46
+ 1,
47
+ 0.99537414,
48
+ 1,
49
+ 0.9844186,
50
+ -0.5191332,
51
+ 0.8637767
52
+ ],
53
+ "split_indices": [
54
+ 0,
55
+ 8,
56
+ 0,
57
+ 7,
58
+ 0,
59
+ 13,
60
+ 0,
61
+ 0,
62
+ 0
63
+ ],
64
+ "split_type": [
65
+ 0,
66
+ 0,
67
+ 0,
68
+ 0,
69
+ 0,
70
+ 0,
71
+ 0,
72
+ 0,
73
+ 0
74
+ ]
75
+ },
76
+ {
77
+ "categories_nodes": [],
78
+ "categories_segments": [],
79
+ "categories_sizes": [],
80
+ "categories": [],
81
+ "default_left": [
82
+ 0,
83
+ 0,
84
+ 0,
85
+ 0,
86
+ 0,
87
+ 0,
88
+ 0,
89
+ 0,
90
+ 0
91
+ ],
92
+ "id": 1,
93
+ "left_children": [
94
+ 1,
95
+ 3,
96
+ -1,
97
+ 5,
98
+ -1,
99
+ 7,
100
+ -1,
101
+ -1,
102
+ -1
103
+ ],
104
+ "right_children": [
105
+ 2,
106
+ 4,
107
+ -1,
108
+ 6,
109
+ -1,
110
+ 8,
111
+ -1,
112
+ -1,
113
+ -1
114
+ ],
115
+ "split_conditions": [
116
+ 1,
117
+ 1,
118
+ 0.58854145,
119
+ 1,
120
+ 0.57765514,
121
+ 1,
122
+ 0.57458323,
123
+ -0.4493339,
124
+ 0.5388122
125
+ ],
126
+ "split_indices": [
127
+ 0,
128
+ 8,
129
+ 0,
130
+ 7,
131
+ 0,
132
+ 13,
133
+ 0,
134
+ 0,
135
+ 0
136
+ ],
137
+ "split_type": [
138
+ 0,
139
+ 0,
140
+ 0,
141
+ 0,
142
+ 0,
143
+ 0,
144
+ 0,
145
+ 0,
146
+ 0
147
+ ]
148
+ },
149
+ {
150
+ "categories_nodes": [],
151
+ "categories_segments": [],
152
+ "categories_sizes": [],
153
+ "categories": [],
154
+ "default_left": [
155
+ 0,
156
+ 0,
157
+ 0,
158
+ 0,
159
+ 0,
160
+ 0,
161
+ 0,
162
+ 0,
163
+ 0
164
+ ],
165
+ "id": 2,
166
+ "left_children": [
167
+ 1,
168
+ 3,
169
+ -1,
170
+ 5,
171
+ -1,
172
+ 7,
173
+ -1,
174
+ -1,
175
+ -1
176
+ ],
177
+ "right_children": [
178
+ 2,
179
+ 4,
180
+ -1,
181
+ 6,
182
+ -1,
183
+ 8,
184
+ -1,
185
+ -1,
186
+ -1
187
+ ],
188
+ "split_conditions": [
189
+ 1,
190
+ 1,
191
+ 0.47592577,
192
+ 1,
193
+ 0.4638128,
194
+ 1,
195
+ 0.46046776,
196
+ -0.4117353,
197
+ 0.42579433
198
+ ],
199
+ "split_indices": [
200
+ 0,
201
+ 8,
202
+ 0,
203
+ 7,
204
+ 0,
205
+ 13,
206
+ 0,
207
+ 0,
208
+ 0
209
+ ],
210
+ "split_type": [
211
+ 0,
212
+ 0,
213
+ 0,
214
+ 0,
215
+ 0,
216
+ 0,
217
+ 0,
218
+ 0,
219
+ 0
220
+ ]
221
+ },
222
+ {
223
+ "categories_nodes": [],
224
+ "categories_segments": [],
225
+ "categories_sizes": [],
226
+ "categories": [],
227
+ "default_left": [
228
+ 0,
229
+ 0,
230
+ 0,
231
+ 0,
232
+ 0,
233
+ 0,
234
+ 0,
235
+ 0,
236
+ 0
237
+ ],
238
+ "id": 3,
239
+ "left_children": [
240
+ 1,
241
+ 3,
242
+ -1,
243
+ 5,
244
+ -1,
245
+ 7,
246
+ -1,
247
+ -1,
248
+ -1
249
+ ],
250
+ "right_children": [
251
+ 2,
252
+ 4,
253
+ -1,
254
+ 6,
255
+ -1,
256
+ 8,
257
+ -1,
258
+ -1,
259
+ -1
260
+ ],
261
+ "split_conditions": [
262
+ 1,
263
+ 1,
264
+ 0.42033777,
265
+ 1,
266
+ 0.40529355,
267
+ 1,
268
+ 0.4012229,
269
+ -0.38875622,
270
+ 0.36239743
271
+ ],
272
+ "split_indices": [
273
+ 0,
274
+ 8,
275
+ 0,
276
+ 7,
277
+ 0,
278
+ 13,
279
+ 0,
280
+ 0,
281
+ 0
282
+ ],
283
+ "split_type": [
284
+ 0,
285
+ 0,
286
+ 0,
287
+ 0,
288
+ 0,
289
+ 0,
290
+ 0,
291
+ 0,
292
+ 0
293
+ ]
294
+ },
295
+ {
296
+ "categories_nodes": [],
297
+ "categories_segments": [],
298
+ "categories_sizes": [],
299
+ "categories": [],
300
+ "default_left": [
301
+ 0,
302
+ 0,
303
+ 0,
304
+ 0,
305
+ 0,
306
+ 0,
307
+ 0,
308
+ 0,
309
+ 0
310
+ ],
311
+ "id": 4,
312
+ "left_children": [
313
+ 1,
314
+ 3,
315
+ -1,
316
+ 5,
317
+ -1,
318
+ 7,
319
+ -1,
320
+ -1,
321
+ -1
322
+ ],
323
+ "right_children": [
324
+ 2,
325
+ 4,
326
+ -1,
327
+ 6,
328
+ -1,
329
+ 8,
330
+ -1,
331
+ -1,
332
+ -1
333
+ ],
334
+ "split_conditions": [
335
+ 1,
336
+ 1,
337
+ 0.3862063,
338
+ 1,
339
+ 0.3674523,
340
+ 1,
341
+ 0.3624835,
342
+ -0.37341934,
343
+ 0.31859887
344
+ ],
345
+ "split_indices": [
346
+ 0,
347
+ 8,
348
+ 0,
349
+ 7,
350
+ 0,
351
+ 13,
352
+ 0,
353
+ 0,
354
+ 0
355
+ ],
356
+ "split_type": [
357
+ 0,
358
+ 0,
359
+ 0,
360
+ 0,
361
+ 0,
362
+ 0,
363
+ 0,
364
+ 0,
365
+ 0
366
+ ]
367
+ },
368
+ {
369
+ "categories_nodes": [],
370
+ "categories_segments": [],
371
+ "categories_sizes": [],
372
+ "categories": [],
373
+ "default_left": [
374
+ 0,
375
+ 0,
376
+ 0,
377
+ 0,
378
+ 0,
379
+ 0,
380
+ 0,
381
+ 0,
382
+ 0
383
+ ],
384
+ "id": 5,
385
+ "left_children": [
386
+ 1,
387
+ 3,
388
+ -1,
389
+ 5,
390
+ -1,
391
+ 7,
392
+ -1,
393
+ -1,
394
+ -1
395
+ ],
396
+ "right_children": [
397
+ 2,
398
+ 4,
399
+ -1,
400
+ 6,
401
+ -1,
402
+ 8,
403
+ -1,
404
+ -1,
405
+ -1
406
+ ],
407
+ "split_conditions": [
408
+ 1,
409
+ 1,
410
+ 0.36173457,
411
+ 1,
412
+ 0.33876342,
413
+ 1,
414
+ 0.3328219,
415
+ -0.36227667,
416
+ 0.2842836
417
+ ],
418
+ "split_indices": [
419
+ 0,
420
+ 8,
421
+ 0,
422
+ 7,
423
+ 0,
424
+ 13,
425
+ 0,
426
+ 0,
427
+ 0
428
+ ],
429
+ "split_type": [
430
+ 0,
431
+ 0,
432
+ 0,
433
+ 0,
434
+ 0,
435
+ 0,
436
+ 0,
437
+ 0,
438
+ 0
439
+ ]
440
+ },
441
+ {
442
+ "categories_nodes": [],
443
+ "categories_segments": [],
444
+ "categories_sizes": [],
445
+ "categories": [],
446
+ "default_left": [
447
+ 0,
448
+ 0,
449
+ 0,
450
+ 0,
451
+ 0,
452
+ 0,
453
+ 0,
454
+ 0,
455
+ 0
456
+ ],
457
+ "id": 6,
458
+ "left_children": [
459
+ 1,
460
+ 3,
461
+ -1,
462
+ 5,
463
+ -1,
464
+ 7,
465
+ -1,
466
+ -1,
467
+ -1
468
+ ],
469
+ "right_children": [
470
+ 2,
471
+ 4,
472
+ -1,
473
+ 6,
474
+ -1,
475
+ 8,
476
+ -1,
477
+ -1,
478
+ -1
479
+ ],
480
+ "split_conditions": [
481
+ 1,
482
+ 1,
483
+ 0.34152836,
484
+ 1,
485
+ 0.3141889,
486
+ 1,
487
+ 0.30730158,
488
+ -0.35333964,
489
+ 0.2553071
490
+ ],
491
+ "split_indices": [
492
+ 0,
493
+ 8,
494
+ 0,
495
+ 7,
496
+ 0,
497
+ 13,
498
+ 0,
499
+ 0,
500
+ 0
501
+ ],
502
+ "split_type": [
503
+ 0,
504
+ 0,
505
+ 0,
506
+ 0,
507
+ 0,
508
+ 0,
509
+ 0,
510
+ 0,
511
+ 0
512
+ ]
513
+ },
514
+ {
515
+ "categories_nodes": [],
516
+ "categories_segments": [],
517
+ "categories_sizes": [],
518
+ "categories": [],
519
+ "default_left": [
520
+ 0,
521
+ 0,
522
+ 0,
523
+ 0,
524
+ 0,
525
+ 0,
526
+ 0,
527
+ 0,
528
+ 0
529
+ ],
530
+ "id": 7,
531
+ "left_children": [
532
+ 1,
533
+ 3,
534
+ -1,
535
+ 5,
536
+ -1,
537
+ 7,
538
+ -1,
539
+ -1,
540
+ -1
541
+ ],
542
+ "right_children": [
543
+ 2,
544
+ 4,
545
+ -1,
546
+ 6,
547
+ -1,
548
+ 8,
549
+ -1,
550
+ -1,
551
+ -1
552
+ ],
553
+ "split_conditions": [
554
+ 1,
555
+ 1,
556
+ 0.32261136,
557
+ 1,
558
+ 0.29131657,
559
+ 1,
560
+ 0.2836265,
561
+ -0.34530172,
562
+ 0.229873
563
+ ],
564
+ "split_indices": [
565
+ 0,
566
+ 8,
567
+ 0,
568
+ 7,
569
+ 0,
570
+ 13,
571
+ 0,
572
+ 0,
573
+ 0
574
+ ],
575
+ "split_type": [
576
+ 0,
577
+ 0,
578
+ 0,
579
+ 0,
580
+ 0,
581
+ 0,
582
+ 0,
583
+ 0,
584
+ 0
585
+ ]
586
+ },
587
+ {
588
+ "categories_nodes": [],
589
+ "categories_segments": [],
590
+ "categories_sizes": [],
591
+ "categories": [],
592
+ "default_left": [
593
+ 0,
594
+ 0,
595
+ 0,
596
+ 0,
597
+ 0,
598
+ 0,
599
+ 0,
600
+ 0,
601
+ 0
602
+ ],
603
+ "id": 8,
604
+ "left_children": [
605
+ 1,
606
+ 3,
607
+ -1,
608
+ 5,
609
+ -1,
610
+ 7,
611
+ -1,
612
+ -1,
613
+ -1
614
+ ],
615
+ "right_children": [
616
+ 2,
617
+ 4,
618
+ -1,
619
+ 6,
620
+ -1,
621
+ 8,
622
+ -1,
623
+ -1,
624
+ -1
625
+ ],
626
+ "split_conditions": [
627
+ 1,
628
+ 1,
629
+ 0.30318332,
630
+ 1,
631
+ 0.26909298,
632
+ 1,
633
+ 0.26085156,
634
+ -0.3372015,
635
+ 0.20720553
636
+ ],
637
+ "split_indices": [
638
+ 0,
639
+ 8,
640
+ 0,
641
+ 7,
642
+ 0,
643
+ 13,
644
+ 0,
645
+ 0,
646
+ 0
647
+ ],
648
+ "split_type": [
649
+ 0,
650
+ 0,
651
+ 0,
652
+ 0,
653
+ 0,
654
+ 0,
655
+ 0,
656
+ 0,
657
+ 0
658
+ ]
659
+ },
660
+ {
661
+ "categories_nodes": [],
662
+ "categories_segments": [],
663
+ "categories_sizes": [],
664
+ "categories": [],
665
+ "default_left": [
666
+ 0,
667
+ 0,
668
+ 0,
669
+ 0,
670
+ 0,
671
+ 0,
672
+ 0,
673
+ 0,
674
+ 0
675
+ ],
676
+ "id": 9,
677
+ "left_children": [
678
+ 1,
679
+ 3,
680
+ -1,
681
+ 5,
682
+ -1,
683
+ 7,
684
+ -1,
685
+ -1,
686
+ -1
687
+ ],
688
+ "right_children": [
689
+ 2,
690
+ 4,
691
+ -1,
692
+ 6,
693
+ -1,
694
+ 8,
695
+ -1,
696
+ -1,
697
+ -1
698
+ ],
699
+ "split_conditions": [
700
+ 1,
701
+ 1,
702
+ 0.28220508,
703
+ 1,
704
+ 0.24726394,
705
+ 1,
706
+ 0.23878926,
707
+ -0.3282728,
708
+ 0.18695693
709
+ ],
710
+ "split_indices": [
711
+ 0,
712
+ 8,
713
+ 0,
714
+ 7,
715
+ 0,
716
+ 13,
717
+ 0,
718
+ 0,
719
+ 0
720
+ ],
721
+ "split_type": [
722
+ 0,
723
+ 0,
724
+ 0,
725
+ 0,
726
+ 0,
727
+ 0,
728
+ 0,
729
+ 0,
730
+ 0
731
+ ]
732
+ },
733
+ {
734
+ "categories_nodes": [],
735
+ "categories_segments": [],
736
+ "categories_sizes": [],
737
+ "categories": [],
738
+ "default_left": [
739
+ 0,
740
+ 0,
741
+ 0,
742
+ 0,
743
+ 0,
744
+ 0,
745
+ 0
746
+ ],
747
+ "id": 10,
748
+ "left_children": [
749
+ 1,
750
+ 3,
751
+ -1,
752
+ 5,
753
+ -1,
754
+ -1,
755
+ -1
756
+ ],
757
+ "right_children": [
758
+ 2,
759
+ 4,
760
+ -1,
761
+ 6,
762
+ -1,
763
+ -1,
764
+ -1
765
+ ],
766
+ "split_conditions": [
767
+ 1,
768
+ 1,
769
+ 0.2592803,
770
+ 1,
771
+ 0.2260217,
772
+ -0.26124394,
773
+ 0.21763813
774
+ ],
775
+ "split_indices": [
776
+ 0,
777
+ 8,
778
+ 0,
779
+ 7,
780
+ 0,
781
+ 0,
782
+ 0
783
+ ],
784
+ "split_type": [
785
+ 0,
786
+ 0,
787
+ 0,
788
+ 0,
789
+ 0,
790
+ 0,
791
+ 0
792
+ ]
793
+ },
794
+ {
795
+ "categories_nodes": [],
796
+ "categories_segments": [],
797
+ "categories_sizes": [],
798
+ "categories": [],
799
+ "default_left": [
800
+ 0,
801
+ 0,
802
+ 0,
803
+ 0,
804
+ 0,
805
+ 0,
806
+ 0,
807
+ 0,
808
+ 0
809
+ ],
810
+ "id": 11,
811
+ "left_children": [
812
+ 1,
813
+ 3,
814
+ -1,
815
+ 5,
816
+ -1,
817
+ 7,
818
+ -1,
819
+ -1,
820
+ -1
821
+ ],
822
+ "right_children": [
823
+ 2,
824
+ 4,
825
+ -1,
826
+ 6,
827
+ -1,
828
+ 8,
829
+ -1,
830
+ -1,
831
+ -1
832
+ ],
833
+ "split_conditions": [
834
+ 1,
835
+ 1,
836
+ 0.28094038,
837
+ 1,
838
+ 0.23175035,
839
+ 1,
840
+ 0.19772059,
841
+ -0.30799463,
842
+ 0.10028152
843
+ ],
844
+ "split_indices": [
845
+ 8,
846
+ 13,
847
+ 0,
848
+ 7,
849
+ 0,
850
+ 0,
851
+ 0,
852
+ 0,
853
+ 0
854
+ ],
855
+ "split_type": [
856
+ 0,
857
+ 0,
858
+ 0,
859
+ 0,
860
+ 0,
861
+ 0,
862
+ 0,
863
+ 0,
864
+ 0
865
+ ]
866
+ },
867
+ {
868
+ "categories_nodes": [],
869
+ "categories_segments": [],
870
+ "categories_sizes": [],
871
+ "categories": [],
872
+ "default_left": [
873
+ 0,
874
+ 0,
875
+ 0,
876
+ 0,
877
+ 0,
878
+ 0,
879
+ 0,
880
+ 0,
881
+ 0
882
+ ],
883
+ "id": 12,
884
+ "left_children": [
885
+ 1,
886
+ 3,
887
+ -1,
888
+ 5,
889
+ -1,
890
+ 7,
891
+ -1,
892
+ -1,
893
+ -1
894
+ ],
895
+ "right_children": [
896
+ 2,
897
+ 4,
898
+ -1,
899
+ 6,
900
+ -1,
901
+ 8,
902
+ -1,
903
+ -1,
904
+ -1
905
+ ],
906
+ "split_conditions": [
907
+ 1,
908
+ 1,
909
+ 0.26196495,
910
+ 1,
911
+ 0.21048306,
912
+ 1,
913
+ 0.17931606,
914
+ -0.29397976,
915
+ 0.08365833
916
+ ],
917
+ "split_indices": [
918
+ 8,
919
+ 13,
920
+ 0,
921
+ 7,
922
+ 0,
923
+ 0,
924
+ 0,
925
+ 0,
926
+ 0
927
+ ],
928
+ "split_type": [
929
+ 0,
930
+ 0,
931
+ 0,
932
+ 0,
933
+ 0,
934
+ 0,
935
+ 0,
936
+ 0,
937
+ 0
938
+ ]
939
+ },
940
+ {
941
+ "categories_nodes": [],
942
+ "categories_segments": [],
943
+ "categories_sizes": [],
944
+ "categories": [],
945
+ "default_left": [
946
+ 0,
947
+ 0,
948
+ 0,
949
+ 0,
950
+ 0,
951
+ 0,
952
+ 0
953
+ ],
954
+ "id": 13,
955
+ "left_children": [
956
+ 1,
957
+ 3,
958
+ -1,
959
+ 5,
960
+ -1,
961
+ -1,
962
+ -1
963
+ ],
964
+ "right_children": [
965
+ 2,
966
+ 4,
967
+ -1,
968
+ 6,
969
+ -1,
970
+ -1,
971
+ -1
972
+ ],
973
+ "split_conditions": [
974
+ 1,
975
+ 1,
976
+ 0.24220751,
977
+ 1,
978
+ 0.19079693,
979
+ -0.17850287,
980
+ 0.06948956
981
+ ],
982
+ "split_indices": [
983
+ 8,
984
+ 13,
985
+ 0,
986
+ 0,
987
+ 0,
988
+ 0,
989
+ 0
990
+ ],
991
+ "split_type": [
992
+ 0,
993
+ 0,
994
+ 0,
995
+ 0,
996
+ 0,
997
+ 0,
998
+ 0
999
+ ]
1000
+ }
1001
+ ],
1002
+ "feature_names": [
1003
+ "username--attrUsername",
1004
+ "username--autocompleteEmail",
1005
+ "username--autocompleteOff",
1006
+ "username--autocompleteUsername",
1007
+ "username--fieldCC",
1008
+ "username--fieldIdentity",
1009
+ "username--isSearchField",
1010
+ "username--firstLoginFormField",
1011
+ "username--labelUsername",
1012
+ "username--outlierAttrs",
1013
+ "username--outlierEmail",
1014
+ "username--outlierLabel",
1015
+ "username--outlierText",
1016
+ "username--textUsername"
1017
+ ],
1018
+ "feature_types": [
1019
+ "int",
1020
+ "int",
1021
+ "int",
1022
+ "int",
1023
+ "int",
1024
+ "int",
1025
+ "int",
1026
+ "int",
1027
+ "int",
1028
+ "int",
1029
+ "int",
1030
+ "int",
1031
+ "int",
1032
+ "int"
1033
+ ],
1034
+ "tree_info": [
1035
+ 0,
1036
+ 0,
1037
+ 0,
1038
+ 0,
1039
+ 0,
1040
+ 0,
1041
+ 0,
1042
+ 0,
1043
+ 0,
1044
+ 0,
1045
+ 0,
1046
+ 0,
1047
+ 0,
1048
+ 0
1049
+ ],
1050
+ "num_class": 0,
1051
+ "objective": "binary:logistic"
1052
+ }