Create config.json
Browse files- config.json +83 -0
config.json
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"sklearn": {
|
3 |
+
"columns": [
|
4 |
+
"nb_hyperlinks",
|
5 |
+
"ratio_intHyperlinks",
|
6 |
+
"ratio_extHyperlinks",
|
7 |
+
"ratio_extRedirection",
|
8 |
+
"safe_anchor",
|
9 |
+
"domain_registration_length",
|
10 |
+
"domain_age",
|
11 |
+
"web_traffic",
|
12 |
+
"google_index",
|
13 |
+
"page_rank",
|
14 |
+
"status"
|
15 |
+
],
|
16 |
+
"environment": [
|
17 |
+
"scikit-learn=1.3.2"
|
18 |
+
],
|
19 |
+
"example_input": {
|
20 |
+
"domain_age": [
|
21 |
+
11039.0,
|
22 |
+
-1.0,
|
23 |
+
5636.0
|
24 |
+
],
|
25 |
+
"domain_registration_length": [
|
26 |
+
3571.0,
|
27 |
+
0.0,
|
28 |
+
208.0
|
29 |
+
],
|
30 |
+
"google_index": [
|
31 |
+
0.0,
|
32 |
+
0.0,
|
33 |
+
0.0
|
34 |
+
],
|
35 |
+
"nb_hyperlinks": [
|
36 |
+
97.0,
|
37 |
+
168.0,
|
38 |
+
52.0
|
39 |
+
],
|
40 |
+
"page_rank": [
|
41 |
+
5.0,
|
42 |
+
2.0,
|
43 |
+
10.0
|
44 |
+
],
|
45 |
+
"ratio_extHyperlinks": [
|
46 |
+
0.030927835,
|
47 |
+
0.220238095,
|
48 |
+
0.442307692
|
49 |
+
],
|
50 |
+
"ratio_extRedirection": [
|
51 |
+
0.0,
|
52 |
+
0.378378378,
|
53 |
+
0.0
|
54 |
+
],
|
55 |
+
"ratio_intHyperlinks": [
|
56 |
+
0.969072165,
|
57 |
+
0.779761905,
|
58 |
+
0.557692308
|
59 |
+
],
|
60 |
+
"safe_anchor": [
|
61 |
+
25.0,
|
62 |
+
24.32432432,
|
63 |
+
0.0
|
64 |
+
],
|
65 |
+
"status": [
|
66 |
+
"legitimate",
|
67 |
+
"legitimate",
|
68 |
+
"legitimate"
|
69 |
+
],
|
70 |
+
"web_traffic": [
|
71 |
+
178542.0,
|
72 |
+
0.0,
|
73 |
+
2.0
|
74 |
+
]
|
75 |
+
},
|
76 |
+
"model": {
|
77 |
+
"file": "model.pkl"
|
78 |
+
},
|
79 |
+
"model_format": "pickle",
|
80 |
+
"task": "tabular-classification",
|
81 |
+
"use_intelex": false
|
82 |
+
}
|
83 |
+
}
|