-
Notifications
You must be signed in to change notification settings - Fork 6
/
ml_hiring_hackathon.py
486 lines (257 loc) · 7.39 KB
/
ml_hiring_hackathon.py
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
#!/usr/bin/env python
# coding: utf-8
# In[1]:
# import libraries
import statistics
import numpy as np
import pandas as pd
import seaborn as sns
from xgboost import plot_importance
from xgboost import XGBRegressor as xgb
import matplotlib.pyplot as plt
from IPython.display import HTML, display, clear_output
get_ipython().run_line_magic('matplotlib', 'inline')
sns.set(rc={'figure.figsize':(18,6)})
import os
# os.listdir()
# In[2]:
# import train and test dataset
train = pd.read_csv('dataset/train.csv')
test = pd.read_csv('dataset/test.csv')
# In[3]:
print("Train shape:", train.shape)
print("Test shape:", test.shape)
train.head()
# In[4]:
# print columns in training dataset
train.columns
# In[5]:
train.describe()
# In[6]:
# plot training dataset heatmap
f,ax = plt.subplots(figsize=(15, 15))
sns.heatmap(train.corr(), annot=True, linewidths=.5, fmt= '.1f',ax=ax)
# In[7]:
# drop columns array
drop_col_array = [ 'loan_id' ]
print(drop_col_array)
# In[8]:
# drop loan_id
train = train.drop(drop_col_array, axis=1)
test = test.drop(drop_col_array, axis=1)
print(train.shape, test.shape)
# In[9]:
# checking missing data percentage in train data
total = train.isnull().sum().sort_values(ascending = False)
percent = (train.isnull().sum()/train.isnull().count()*100).sort_values(ascending = False)
missing_train = pd.concat([total, percent], axis=1, keys=['Total', 'Percent'])
missing_train.head(30)
# In[10]:
# print data types of each column
train.dtypes
# In[11]:
# Print number of unique elements in each column
for column in train.columns:
print(train[column].nunique()," ", column)
# # Data Visualization
# In[12]:
train.head()
# In[13]:
# This function returns the count plot of a column with percentage of each class
def plot_bar_counts_categorical(data_se, title, figsize, sort_by_counts=False):
info = data_se.value_counts()
info_norm = data_se.value_counts(normalize=True)
categories = info.index.values
counts = info.values
counts_norm = info_norm.values
fig, ax = plt.subplots(figsize=figsize)
if data_se.dtype in ['object']:
if sort_by_counts == False:
inds = categories.argsort()
counts = counts[inds]
counts_norm = counts_norm[inds]
categories = categories[inds]
ax = sns.barplot(counts, categories, orient = "h", ax=ax)
ax.set(xlabel="count", ylabel=data_se.name)
ax.set_title("Distribution of " + title)
for n, da in enumerate(counts):
ax.text(da, n, str(da)+ ", " + str(round(counts_norm[n]*100,2)) + " %", fontsize=10, va='center')
else:
inds = categories.argsort()
counts_sorted = counts[inds]
counts_norm_sorted = counts_norm[inds]
ax = sns.barplot(categories, counts, orient = "v", ax=ax)
ax.set(xlabel=data_se.name, ylabel='count')
ax.set_title("Distribution of " + title)
for n, da in enumerate(counts_sorted):
ax.text(n, da, str(da)+ ", " + str(round(counts_norm_sorted[n]*100,2)) + " %", fontsize=10, ha='center')
# In[14]:
plot_bar_counts_categorical(train['source'], 'Train dataset: source', (5,5))
# In[15]:
plot_bar_counts_categorical(train['financial_institution'], 'Train dataset: financial_institution', (5,5))
# In[16]:
plt.figure(figsize=(20, 2))
plt.plot(train['interest_rate'][:500])
plt.title('location_y')
plt.show()
# In[17]:
plot_bar_counts_categorical(train['origination_date'], 'Train dataset: origination_date', (5,5))
# In[18]:
plt.figure(figsize=(20, 2))
plt.plot(train['loan_to_value'][:1000])
plt.title('location_y')
plt.show()
# In[19]:
plt.figure(figsize=(20, 2))
plt.plot(train['number_of_borrowers'][:1000])
plt.title('location_y')
plt.show()
# In[20]:
plt.figure(figsize=(20, 2))
plt.plot(train['debt_to_income_ratio'][:1000])
plt.title('location_y')
plt.show()
# In[21]:
plot_bar_counts_categorical(train['insurance_type'], 'Train dataset: insurance_type', (5,5))
# In[22]:
plt.figure(figsize=(20, 2))
plt.plot(train['m1'][:])
plt.title('location_y')
plt.show()
# In[23]:
plt.figure(figsize=(20, 2))
plt.plot(train['m13'][:])
plt.title('location_y')
plt.show()
# In[24]:
plot_bar_counts_categorical(train['m13'], 'Train dataset: m13', (5,5))
# In[25]:
plt.figure(figsize=(7, 3))
sns.boxplot(train["m1"])
plt.show()
# In[26]:
plt.figure(figsize=(7, 3))
sns.boxplot(train["m2"])
plt.show()
# In[27]:
plt.figure(figsize=(7, 3))
sns.boxplot(train["m5"])
plt.show()
# In[28]:
plt.figure(figsize=(7, 3))
sns.boxplot(train["m9"])
plt.show()
# In[ ]:
# In[29]:
plt.figure(figsize=(7, 3))
sns.boxplot(train["borrower_credit_score"])
plt.show()
# In[30]:
plt.figure(figsize=(7, 3))
sns.boxplot(train["loan_to_value"])
plt.show()
# In[31]:
plt.figure(figsize=(7, 3))
sns.boxplot(train["interest_rate"])
plt.show()
# In[ ]:
# In[ ]:
# Label Encoding
# In[32]:
# Label Encoding
from sklearn.preprocessing import LabelEncoder, OneHotEncoder
for x in train.columns:
if train[x].dtype == type(object):
train[x] = train[x].fillna('NaN')
test[x] = test[x].fillna('NaN')
encoder = LabelEncoder()
encoder.fit(list(set(list(train[x]) + list(test[x]))))
train[x] = encoder.transform(train[x])
test[x] = encoder.transform(test[x])
# In[33]:
train.head()
# In[34]:
test.head()
# In[35]:
print(train.shape)
print(test.shape)
# # Model Training
# In[36]:
# Splitting training dataset into train and test
X = train.copy().drop('m13', axis=1).values
y = train['m13']
# In[37]:
print(train.shape)
print(X.shape)
print(y.shape)
# In[38]:
X[:2]
# In[39]:
# Splitting the dataset into the Training set and Test set
from sklearn.model_selection import train_test_split
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.25, random_state = 0)
# Feature Scaling
from sklearn.preprocessing import StandardScaler
sc = StandardScaler()
X_train = sc.fit_transform(X_train)
X_test = sc.transform(X_test)
X_whole = sc.transform(X.copy())
test_v = sc.transform(test.copy().values)
# In[40]:
X[0], X_train[0]
# In[41]:
test_v
# # XGBoost
# In[42]:
# XGB Classifier
from xgboost import XGBClassifier
classifier = XGBClassifier( learning_rate =0.1,
n_estimators=112,
max_depth=9,
min_child_weight=5,
gamma=0,
subsample=0.8,
colsample_bytree=0.6,
objective= 'binary:logistic',
nthread=4,
scale_pos_weight=13,
reg_lambda=5,
# max_delta_step=1,
alpha=0,
base_score=0.5,
seed=1029)
classifier.fit(X_train, y_train)
# In[43]:
# plot feature importance
plot_importance(classifier)
plt.figure(figsize=(200, 200))
plt.show()
# In[44]:
print(classifier.feature_importances_)
# In[45]:
# Predicting the Test set results
y_pred = classifier.predict(X_test)
y_pred
# In[46]:
# print f1 score
from sklearn.metrics import f1_score
f1_score(y_test, y_pred)
# In[47]:
test_pred = classifier.predict(test_v)
# In[48]:
print(test_pred.shape)
test_pred[:10]
# In[49]:
# print number of 1s and 0s in predicted values
unique, counts = np.unique(test_pred, return_counts=True)
dict(zip(unique, counts))
# In[50]:
# load loan_id of test dataset
test_loan_id = pd.read_csv('dataset/test.csv')['loan_id']
print(test_loan_id.shape)
# In[51]:
# save results to csv
subm = pd.DataFrame({'loan_id': test_loan_id, 'm13': test_pred})
subm = subm[['loan_id','m13']]
filename='solution/AakashJhawar_16011999_final.csv'
subm.to_csv(filename, index=False)