saribasmetehan commited on
Commit
50884c0
1 Parent(s): 45e93bf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +82 -79
README.md CHANGED
@@ -26,85 +26,88 @@ It achieves the following results on the evaluation set:
26
  ## Model description
27
 
28
  This model is a BERT (bert-base-uncased) model fine-tuned using the Banking77 dataset for text classification tasks. Banking77 is a dataset designed to categorize customer support messages in the banking and finance domain into 77 distinct categories. This model is specifically tailored for classifying customer complaints and inquiries in the banking sector, helping to assign messages to the correct categories effectively.
29
- label_map = {
30
- 0: "activate_my_card",
31
- 1: "age_limit",
32
- 2: "apple_pay_or_google_pay",
33
- 3: "atm_support",
34
- 4: "automatic_top_up",
35
- 5: "balance_not_updated_after_bank_transfer",
36
- 6: "balance_not_updated_after_cheque_or_cash_deposit",
37
- 7: "beneficiary_not_allowed",
38
- 8: "cancel_transfer",
39
- 9: "card_about_to_expire",
40
- 10: "card_acceptance",
41
- 11: "card_arrival",
42
- 12: "card_delivery_estimate",
43
- 13: "card_linking",
44
- 14: "card_not_working",
45
- 15: "card_payment_fee_charged",
46
- 16: "card_payment_not_recognised",
47
- 17: "card_payment_wrong_exchange_rate",
48
- 18: "card_swallowed",
49
- 19: "cash_withdrawal_charge",
50
- 20: "cash_withdrawal_not_recognised",
51
- 21: "change_pin",
52
- 22: "compromised_card",
53
- 23: "contactless_not_working",
54
- 24: "country_support",
55
- 25: "declined_card_payment",
56
- 26: "declined_cash_withdrawal",
57
- 27: "declined_transfer",
58
- 28: "direct_debit_payment_not_recognised",
59
- 29: "disposable_card_limits",
60
- 30: "edit_personal_details",
61
- 31: "exchange_charge",
62
- 32: "exchange_rate",
63
- 33: "exchange_via_app",
64
- 34: "extra_charge_on_statement",
65
- 35: "failed_transfer",
66
- 36: "fiat_currency_support",
67
- 37: "get_disposable_virtual_card",
68
- 38: "get_physical_card",
69
- 39: "getting_spare_card",
70
- 40: "getting_virtual_card",
71
- 41: "lost_or_stolen_card",
72
- 42: "lost_or_stolen_phone",
73
- 43: "order_physical_card",
74
- 44: "passcode_forgotten",
75
- 45: "pending_card_payment",
76
- 46: "pending_cash_withdrawal",
77
- 47: "pending_top_up",
78
- 48: "pending_transfer",
79
- 49: "pin_blocked",
80
- 50: "receiving_money",
81
- 51: "refund_not_showing_up",
82
- 52: "request_refund",
83
- 53: "reverted_card_payment",
84
- 54: "supported_cards_and_currencies",
85
- 55: "terminate_account",
86
- 56: "top_up_by_bank_transfer_charge",
87
- 57: "top_up_by_card_charge",
88
- 58: "top_up_by_cash_or_cheque",
89
- 59: "top_up_failed",
90
- 60: "top_up_limits",
91
- 61: "top_up_reverted",
92
- 62: "topping_up_by_card",
93
- 63: "transaction_charged_twice",
94
- 64: "transfer_fee_charged",
95
- 65: "transfer_into_account",
96
- 66: "transfer_not_received_by_recipient",
97
- 67: "transfer_timing",
98
- 68: "unable_to_verify_identity",
99
- 69: "verify_my_identity",
100
- 70: "verify_source_of_funds",
101
- 71: "verify_top_up",
102
- 72: "virtual_card_not_working",
103
- 73: "visa_or_mastercard",
104
- 74: "why_verify_identity",
105
- 75: "wrong_amount_of_cash_received",
106
- 76: "wrong_exchange_rate_for_cash_withdrawal"
107
- }
 
 
 
108
  ## Intended uses & limitations
109
 
110
  More information needed
 
26
  ## Model description
27
 
28
  This model is a BERT (bert-base-uncased) model fine-tuned using the Banking77 dataset for text classification tasks. Banking77 is a dataset designed to categorize customer support messages in the banking and finance domain into 77 distinct categories. This model is specifically tailored for classifying customer complaints and inquiries in the banking sector, helping to assign messages to the correct categories effectively.
29
+
30
+ | Label Index | Intent Category |
31
+ |-------------|--------------------------------------------------|
32
+ | 0 | activate_my_card |
33
+ | 1 | age_limit |
34
+ | 2 | apple_pay_or_google_pay |
35
+ | 3 | atm_support |
36
+ | 4 | automatic_top_up |
37
+ | 5 | balance_not_updated_after_bank_transfer |
38
+ | 6 | balance_not_updated_after_cheque_or_cash_deposit|
39
+ | 7 | beneficiary_not_allowed |
40
+ | 8 | cancel_transfer |
41
+ | 9 | card_about_to_expire |
42
+ | 10 | card_acceptance |
43
+ | 11 | card_arrival |
44
+ | 12 | card_delivery_estimate |
45
+ | 13 | card_linking |
46
+ | 14 | card_not_working |
47
+ | 15 | card_payment_fee_charged |
48
+ | 16 | card_payment_not_recognised |
49
+ | 17 | card_payment_wrong_exchange_rate |
50
+ | 18 | card_swallowed |
51
+ | 19 | cash_withdrawal_charge |
52
+ | 20 | cash_withdrawal_not_recognised |
53
+ | 21 | change_pin |
54
+ | 22 | compromised_card |
55
+ | 23 | contactless_not_working |
56
+ | 24 | country_support |
57
+ | 25 | declined_card_payment |
58
+ | 26 | declined_cash_withdrawal |
59
+ | 27 | declined_transfer |
60
+ | 28 | direct_debit_payment_not_recognised |
61
+ | 29 | disposable_card_limits |
62
+ | 30 | edit_personal_details |
63
+ | 31 | exchange_charge |
64
+ | 32 | exchange_rate |
65
+ | 33 | exchange_via_app |
66
+ | 34 | extra_charge_on_statement |
67
+ | 35 | failed_transfer |
68
+ | 36 | fiat_currency_support |
69
+ | 37 | get_disposable_virtual_card |
70
+ | 38 | get_physical_card |
71
+ | 39 | getting_spare_card |
72
+ | 40 | getting_virtual_card |
73
+ | 41 | lost_or_stolen_card |
74
+ | 42 | lost_or_stolen_phone |
75
+ | 43 | order_physical_card |
76
+ | 44 | passcode_forgotten |
77
+ | 45 | pending_card_payment |
78
+ | 46 | pending_cash_withdrawal |
79
+ | 47 | pending_top_up |
80
+ | 48 | pending_transfer |
81
+ | 49 | pin_blocked |
82
+ | 50 | receiving_money |
83
+ | 51 | refund_not_showing_up |
84
+ | 52 | request_refund |
85
+ | 53 | reverted_card_payment |
86
+ | 54 | supported_cards_and_currencies |
87
+ | 55 | terminate_account |
88
+ | 56 | top_up_by_bank_transfer_charge |
89
+ | 57 | top_up_by_card_charge |
90
+ | 58 | top_up_by_cash_or_cheque |
91
+ | 59 | top_up_failed |
92
+ | 60 | top_up_limits |
93
+ | 61 | top_up_reverted |
94
+ | 62 | topping_up_by_card |
95
+ | 63 | transaction_charged_twice |
96
+ | 64 | transfer_fee_charged |
97
+ | 65 | transfer_into_account |
98
+ | 66 | transfer_not_received_by_recipient |
99
+ | 67 | transfer_timing |
100
+ | 68 | unable_to_verify_identity |
101
+ | 69 | verify_my_identity |
102
+ | 70 | verify_source_of_funds |
103
+ | 71 | verify_top_up |
104
+ | 72 | virtual_card_not_working |
105
+ | 73 | visa_or_mastercard |
106
+ | 74 | why_verify_identity |
107
+ | 75 | wrong_amount_of_cash_received |
108
+ | 76 | wrong_exchange_rate_for_cash_withdrawal |
109
+ Nasıl Eklenir:
110
+
111
  ## Intended uses & limitations
112
 
113
  More information needed