File size: 3,006 Bytes
cc95a8f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
    "sklearn": {
        "columns": [
            "gender",
            "SeniorCitizen",
            "Partner",
            "Dependents",
            "tenure",
            "PhoneService",
            "MultipleLines",
            "InternetService",
            "OnlineSecurity",
            "OnlineBackup",
            "DeviceProtection",
            "TechSupport",
            "StreamingTV",
            "StreamingMovies",
            "Contract",
            "PaperlessBilling",
            "PaymentMethod",
            "MonthlyCharges",
            "TotalCharges"
        ],
        "environment": [
            "scikit-learn=1.1.1"
        ],
        "example_input": {
            "Contract": [
                "Two year",
                "Month-to-month",
                "One year"
            ],
            "Dependents": [
                "Yes",
                "No",
                "No"
            ],
            "DeviceProtection": [
                "No",
                "No",
                "Yes"
            ],
            "InternetService": [
                "Fiber optic",
                "Fiber optic",
                "DSL"
            ],
            "MonthlyCharges": [
                79.05,
                84.95,
                68.8
            ],
            "MultipleLines": [
                "Yes",
                "Yes",
                "Yes"
            ],
            "OnlineBackup": [
                "No",
                "No",
                "Yes"
            ],
            "OnlineSecurity": [
                "Yes",
                "No",
                "Yes"
            ],
            "PaperlessBilling": [
                "No",
                "Yes",
                "No"
            ],
            "Partner": [
                "Yes",
                "Yes",
                "No"
            ],
            "PaymentMethod": [
                "Bank transfer (automatic)",
                "Electronic check",
                "Bank transfer (automatic)"
            ],
            "PhoneService": [
                "Yes",
                "Yes",
                "Yes"
            ],
            "SeniorCitizen": [
                0,
                0,
                0
            ],
            "StreamingMovies": [
                "No",
                "No",
                "No"
            ],
            "StreamingTV": [
                "No",
                "Yes",
                "No"
            ],
            "TechSupport": [
                "No",
                "No",
                "Yes"
            ],
            "TotalCharges": [
                5730.7,
                1378.25,
                4111.35
            ],
            "gender": [
                "Female",
                "Female",
                "Male"
            ],
            "tenure": [
                72,
                16,
                63
            ]
        },
        "model": {
            "file": "example.pkl"
        },
        "task": "tabular-classification"
    }
}