silvaKenpachi commited on
Commit
e23ea6e
·
verified ·
1 Parent(s): 0ed6759

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +160 -0
config.json ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sklearn": {
3
+ "columns": [
4
+ "Name",
5
+ "Gender",
6
+ "City",
7
+ "Working Professional or Student",
8
+ "Profession",
9
+ "Sleep Duration",
10
+ "Dietary Habits",
11
+ "Degree",
12
+ "Have you ever had suicidal thoughts ?",
13
+ "Family History of Mental Illness",
14
+ "Academic Pressure_na",
15
+ "Work Pressure_na",
16
+ "CGPA_na",
17
+ "Study Satisfaction_na",
18
+ "Job Satisfaction_na",
19
+ "Financial Stress_na",
20
+ "Age",
21
+ "Academic Pressure",
22
+ "Work Pressure",
23
+ "CGPA",
24
+ "Study Satisfaction",
25
+ "Job Satisfaction",
26
+ "Work/Study Hours",
27
+ "Financial Stress"
28
+ ],
29
+ "environment": [
30
+ "scikit-learn=1.3.2"
31
+ ],
32
+ "example_input": {
33
+ "Academic Pressure": [
34
+ -0.04606674611568451,
35
+ -0.04606674611568451,
36
+ -0.04606674611568451
37
+ ],
38
+ "Academic Pressure_na": [
39
+ 2,
40
+ 2,
41
+ 2
42
+ ],
43
+ "Age": [
44
+ 1.2607895135879517,
45
+ -0.19406381249427795,
46
+ 1.584090232849121
47
+ ],
48
+ "CGPA": [
49
+ 0.03309895098209381,
50
+ 0.03309895098209381,
51
+ 0.03309895098209381
52
+ ],
53
+ "CGPA_na": [
54
+ 2,
55
+ 2,
56
+ 2
57
+ ],
58
+ "City": [
59
+ 98,
60
+ 28,
61
+ 27
62
+ ],
63
+ "Degree": [
64
+ 77,
65
+ 90,
66
+ 77
67
+ ],
68
+ "Dietary Habits": [
69
+ 16,
70
+ 21,
71
+ 21
72
+ ],
73
+ "Family History of Mental Illness": [
74
+ 1,
75
+ 2,
76
+ 2
77
+ ],
78
+ "Financial Stress": [
79
+ 1.4229286909103394,
80
+ 1.4229286909103394,
81
+ 0.008482186123728752
82
+ ],
83
+ "Financial Stress_na": [
84
+ 1,
85
+ 1,
86
+ 1
87
+ ],
88
+ "Gender": [
89
+ 2,
90
+ 2,
91
+ 2
92
+ ],
93
+ "Have you ever had suicidal thoughts ?": [
94
+ 1,
95
+ 1,
96
+ 2
97
+ ],
98
+ "Job Satisfaction": [
99
+ 0.8020281791687012,
100
+ 1.5897727012634277,
101
+ -1.5612051486968994
102
+ ],
103
+ "Job Satisfaction_na": [
104
+ 1,
105
+ 1,
106
+ 1
107
+ ],
108
+ "Name": [
109
+ 79,
110
+ 269,
111
+ 90
112
+ ],
113
+ "Profession": [
114
+ 46,
115
+ 15,
116
+ 56
117
+ ],
118
+ "Sleep Duration": [
119
+ 30,
120
+ 20,
121
+ 30
122
+ ],
123
+ "Study Satisfaction": [
124
+ 0.019511962309479713,
125
+ 0.019511962309479713,
126
+ 0.019511962309479713
127
+ ],
128
+ "Study Satisfaction_na": [
129
+ 2,
130
+ 2,
131
+ 2
132
+ ],
133
+ "Work Pressure": [
134
+ 1.588835597038269,
135
+ -0.7938991189002991,
136
+ -0.7938991189002991
137
+ ],
138
+ "Work Pressure_na": [
139
+ 1,
140
+ 1,
141
+ 1
142
+ ],
143
+ "Work/Study Hours": [
144
+ 1.2296171188354492,
145
+ 1.4891586303710938,
146
+ -1.1062564849853516
147
+ ],
148
+ "Working Professional or Student": [
149
+ 2,
150
+ 2,
151
+ 2
152
+ ]
153
+ },
154
+ "model": {
155
+ "file": "model.pkl"
156
+ },
157
+ "model_format": "pickle",
158
+ "task": "tabular-classification"
159
+ }
160
+ }