Update README.md
Browse files
README.md
CHANGED
|
@@ -26,4 +26,30 @@ The example of one sample is provided below
|
|
| 26 |
'product': 1,
|
| 27 |
'flag': 0
|
| 28 |
}
|
| 29 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
'product': 1,
|
| 27 |
'flag': 0
|
| 28 |
}
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
### Data Fields
|
| 32 |
+
|
| 33 |
+
- `app_id`: application ID.
|
| 34 |
+
- `transactions`: 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.
|
| 35 |
+
- `amnt`: normalized transaction amount. 0.0 - corresponds to omissions.
|
| 36 |
+
- `currency`: transaction currency ID.
|
| 37 |
+
- `operation_kind`: ID of the transaction type.
|
| 38 |
+
- `card_type`: unique identifier of the card type.
|
| 39 |
+
- `operation_type`: ID of the type of plastic card transaction.
|
| 40 |
+
- `operation_type_group`: ID of a group of card transactions, for example, debit card or credit card.
|
| 41 |
+
- `ecommerce_flag`: feature of e-commerce.
|
| 42 |
+
- `payment_system`: ID of the payment system type.
|
| 43 |
+
- `income_flag`: feature of debiting/depositing funds to the card.
|
| 44 |
+
- `mcc`: unique identifier of the type of outlet.
|
| 45 |
+
- `country`: transaction country ID.
|
| 46 |
+
- `city`: transaction city ID.
|
| 47 |
+
- `mcc_category`: ID of the transaction store category.
|
| 48 |
+
- `day_of_week`: day of the week when the transaction was made.
|
| 49 |
+
- `hour`: hour when the transaction was made.
|
| 50 |
+
- `days_before`: number of days before the date of issue of the loan.
|
| 51 |
+
- `weekofyear`: number of the week in the year when the transaction was made.
|
| 52 |
+
- `hour_diff`: number of hours since the last transaction for this client.
|
| 53 |
+
- `transaction_number`: sequence number of the client's transaction.
|
| 54 |
+
- `product`: product ID for which it is necessary to make a decision whether the applicant will go into default or not
|
| 55 |
+
- `flag`: target, 1 - the fact of going into default.
|