Update README.md
Browse files
README.md
CHANGED
@@ -8,4 +8,63 @@ tags:
|
|
8 |
- time-series
|
9 |
size_categories:
|
10 |
- 1M<n<10M
|
11 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
- time-series
|
9 |
size_categories:
|
10 |
- 1M<n<10M
|
11 |
+
---
|
12 |
+
|
13 |
+
## Dataset Structure
|
14 |
+
|
15 |
+
### Data Instances
|
16 |
+
|
17 |
+
The example of one sample is provided below
|
18 |
+
```
|
19 |
+
{
|
20 |
+
'app_id': 10,
|
21 |
+
'history':
|
22 |
+
[
|
23 |
+
|
24 |
+
],
|
25 |
+
'flag': 0
|
26 |
+
}
|
27 |
+
```
|
28 |
+
|
29 |
+
### Data Fields
|
30 |
+
|
31 |
+
- `id`: application ID.
|
32 |
+
- `history`: an array of transactions where each transaction is represented as a 20-dimensional array, each element of the array represents a corresponding feature from the following list.
|
33 |
+
- `id`: application ID.
|
34 |
+
- `rn`: serial number of the credit product in the credit history.
|
35 |
+
- `pre_since_opened`: days from the date of opening the loan to the date of data collection.
|
36 |
+
- `pre_since_confirmed`: days from the date of confirmation of the loan information to the date of data collection.
|
37 |
+
- `pre_pterm`: planned number of days from the opening date of the loan to the closing date.
|
38 |
+
- `pre_fterm`: actual number of days from the opening date of the loan to the closing date.
|
39 |
+
- `pre_till_pclose`: planned number of days from the date of data collection to the closing date of the loan.
|
40 |
+
- `pre_till_fclose`: actual number of days from the date of data collection to the closing date of the loan.
|
41 |
+
- `pre_loans_credit_limit`: credit limit.
|
42 |
+
- `pre_loans_next_pay_summ`: amount of the next loan payment.
|
43 |
+
- `pre_loans_outstanding`: remaining unpaid loan amount.
|
44 |
+
- `pre_loans_total_overdue`: current overdue debt.
|
45 |
+
- `pre_loans_max_overdue_sum`: maximum overdue debt.
|
46 |
+
- `pre_loans_credit_cost_rate`: full cost of the loan.
|
47 |
+
- `pre_loans5`: number of delays up to 5 days.
|
48 |
+
- `pre_loans530`: number of delays from 5 to 30 days.
|
49 |
+
- `pre_loans3060`: number of delays from 30 to 60 days.
|
50 |
+
- `pre_loans6090`: number of delays from 60 to 90 days.
|
51 |
+
- `pre_loans90`: the number of delays of more than 90 days.
|
52 |
+
- `is_zero_loans_5`: flag: no delays up to 5 days.
|
53 |
+
- `is_zero_loans_530`: flag: no delays from 5 to 30 days.
|
54 |
+
- `is_zero_loans_3060`: flag: no delays from 30 to 60 days.
|
55 |
+
- `is_zero_loans_6090`: flag: no delays from 60 to 90 days.
|
56 |
+
- `is_zero_loans90`: flag: no delays for more than 90 days.
|
57 |
+
- `pre_util`: ratio of the remaining unpaid loan amount to the credit limit.
|
58 |
+
- `pre_over2limit`: ratio of current overdue debt to the credit limit.
|
59 |
+
- `pre_maxover2limit`: ratio of the maximum overdue debt to the credit limit.
|
60 |
+
- `is_zero_util`: flag: the ratio of the remaining unpaid loan amount to the credit limit is 0.
|
61 |
+
- `is_zero_over2limit`: flag: the ratio of the current overdue debt to the credit limit is 0.
|
62 |
+
- `is_zero_maxover2limit`: flag: the ratio of the maximum overdue debt to the credit limit is 0.
|
63 |
+
- `enc_paym_{0..n}`: monthly payment statuses for the last n months.
|
64 |
+
- `enc_loans_account_holder_type`: type of attitude to credit.
|
65 |
+
- `enc_loans_credit_status`: loan status.
|
66 |
+
- `enc_loans_account_cur`: loan currency.
|
67 |
+
- `enc_loans_credit_type`: type of loan.
|
68 |
+
- `pclose_flag`: flag: the planned number of days from the opening date of the loan to the closing date is not defined.
|
69 |
+
- `fclose_flag`: flag: the actual number of days from the opening date of the loan to the closing date is not determined.
|
70 |
+
- `flag`: target, 1 – the fact that the client has defaulted.
|