removed colons for table text
Browse files
utils.py
CHANGED
@@ -23,9 +23,9 @@ COL_NAMES = ['Transaction date',
|
|
23 |
'Sender ID',
|
24 |
'Receiver ID']
|
25 |
|
26 |
-
feature_texts = {0: "Date of transaction
|
27 |
-
4: "Initial balance of recipient
|
28 |
-
7: "Receiver's balance was exactly credited
|
29 |
13: "Transaction type is Cash out", 14: "Transaction type is Transfer", 15: "Transaction type is Payment", 16: "Transaction type is Cash in", 17: "Transaction type is Debit"}
|
30 |
|
31 |
CATEGORIES = np.array(['CASH_OUT', 'TRANSFER', 'PAYMENT', 'CASH_IN', 'DEBIT'])
|
|
|
23 |
'Sender ID',
|
24 |
'Receiver ID']
|
25 |
|
26 |
+
feature_texts = {0: "Date of transaction", 1: "Amount transferred", 2: "Initial balance of sender", 3: "New balance of sender",
|
27 |
+
4: "Initial balance of recipient", 5: "New balance of recipient", 6: "Sender's balance was exactly credited",
|
28 |
+
7: "Receiver's balance was exactly credited", 8: "Large amount", 9: "Frequent receiver of transactions", 10: "Receiver is merchant", 11: "Sender ID", 12: "Receiver ID",
|
29 |
13: "Transaction type is Cash out", 14: "Transaction type is Transfer", 15: "Transaction type is Payment", 16: "Transaction type is Cash in", 17: "Transaction type is Debit"}
|
30 |
|
31 |
CATEGORIES = np.array(['CASH_OUT', 'TRANSFER', 'PAYMENT', 'CASH_IN', 'DEBIT'])
|