Python में क्रेडिट रिस्क मॉडलिंग
Michael Crabtree
Data Scientist, Ford Motor Company
prob_default मानों की रेंज के लिए एक थ्रेशोल्ड सेट किया थाloan_status बदला गया थाpreds_df['loan_status'] = preds_df['prob_default'].apply(lambda x: 1 if x > 0.4 else 0)
| Loan | prob_default | threshold | loan_status |
|---|---|---|---|
| 1 | 0.25 | 0.4 | 0 |
| 2 | 0.42 | 0.4 | 1 |
| 3 | 0.75 | 0.4 | 1 |
prob_default वाले 85% लोन स्वीकार करेंimport numpy as np
# Compute the threshold for 85% acceptance rate
threshold = np.quantile(prob_default, 0.85)
0.804
| Loan | prob_default |
Threshold | Predicted loan_status |
Accept or Reject |
|---|---|---|---|---|
| 1 | 0.65 | 0.804 | 0 | Accept |
| 2 | 0.85 | 0.804 | 1 | Reject |
loan_status मानों को फिर से असाइन करें# Compute the quantile on the probabilities of default
preds_df['loan_status'] = preds_df['prob_default'].apply(lambda x: 1 if x > 0.804 else 0)
prob_default उन मानों के आस-पास हैं जहाँ हमारा मॉडल अच्छी तरह calibrated नहीं है#Calculate the bad rate
np.sum(accepted_loans['true_loan_status']) / accepted_loans['true_loan_status'].count()
0 है और default 1 है, तो sum() डिफॉल्ट्स की गिनती देता है.count() डेटा फ्रेम की रो काउंट के बराबर होता हैPython में क्रेडिट रिस्क मॉडलिंग