credentek commited on
Commit
088298a
·
1 Parent(s): 749d47d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +91 -4
README.md CHANGED
@@ -1,27 +1,114 @@
1
  ---
2
  tags:
3
  - generated_from_trainer
 
 
 
 
 
4
  model-index:
5
  - name: TenaliAI-FinTech-v1
6
  results: []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  ---
8
 
 
 
9
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
10
  should probably proofread and complete it, then remove this comment. -->
11
 
12
  # TenaliAI-FinTech-v1
13
 
14
- This model was trained from scratch on an unknown dataset.
15
  It achieves the following results on the evaluation set:
16
- - Loss: 0.0546
17
 
18
  ## Model description
19
 
20
- More information needed
 
 
 
 
 
 
 
 
21
 
22
  ## Intended uses & limitations
23
 
24
- More information needed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
  ## Training and evaluation data
27
 
 
1
  ---
2
  tags:
3
  - generated_from_trainer
4
+ - banking
5
+ - finance
6
+ - internet banking
7
+ - mobile banking
8
+ - Natural User Experience
9
  model-index:
10
  - name: TenaliAI-FinTech-v1
11
  results: []
12
+ widget:
13
+ - text: Can you pls tell me what is the latest balance in my account number 1001
14
+ example_title: Balance Enquiry
15
+ - text: I want to send money abroad. What is the process
16
+ example_title: Outward Remittance
17
+ - text: Pay 100 INR and recharge my mobile phone
18
+ example_title: Utility Bill Payment
19
+ - text: What is the outstanding EMI on my loan
20
+ example_title: Loan Details
21
+ license: apache-2.0
22
+ language:
23
+ - en
24
+ metrics:
25
+ - accuracy
26
  ---
27
 
28
+
29
+
30
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
31
  should probably proofread and complete it, then remove this comment. -->
32
 
33
  # TenaliAI-FinTech-v1
34
 
35
+ This model was trained from scratch on banking dataset.
36
  It achieves the following results on the evaluation set:
37
+ - Loss: 0.0758
38
 
39
  ## Model description
40
 
41
+ This project is integral to the development of a Natural User Experience within the Banking and Finance Industry [BFSI].
42
+
43
+ The TenaliAI-FinTech model is specifically designed to tackle the intricate task of deciphering the intent behind customer queries in the BFSI sector.
44
+
45
+ The underlying technology behind TenaliAI-FinTech employs advanced natural language processing and machine learning algorithms. These technologies enhance the model's ability to accurately classify and understand the diverse range of customer queries. By leveraging sophisticated classification techniques, the model ensures a more precise interpretation of user intent, regardless of whether the query originates from the bank's net banking portal, mobile banking portal, or other communication channels.
46
+
47
+ Furthermore, the model excels in query tokenization, making it proficient in breaking down customer queries into meaningful components. This capability not only streamlines the processing of customer requests but also enables a more efficient and targeted response.
48
+
49
+ Ultimately, the technology powering TenaliAI-FinTech contributes to an enhanced customer service experience by providing quicker and more accurate responses to inquiries across multiple banking platforms.
50
 
51
  ## Intended uses & limitations
52
 
53
+ This model is meant to generate "Intent" for a given customer query on bank's netbanking portal or mobile banking. Following is the list of intents :
54
+
55
+ <pre>
56
+ {
57
+ 'add_beneficiary': 0,
58
+ 'balance_enquiry': 1,
59
+ 'beneficiary_details': 2,
60
+ 'bill_payment': 3,
61
+ 'block_card': 4,
62
+ 'bulk_payments': 5,
63
+ 'bulk_payments_status': 6,
64
+ 'change_contact_info': 7,
65
+ 'debit_card_details': 8,
66
+ 'delete_beneficiary': 9,
67
+ 'fd_details': 10,
68
+ 'fd_rate': 11,
69
+ 'fd_rate_large_amount': 12,
70
+ 'funds_transfer_other_bank': 13,
71
+ 'funds_transfer_own_account': 14,
72
+ 'funds_transfer_status': 15,
73
+ 'funds_transfer_third_party': 16,
74
+ 'gst_payment': 17,
75
+ 'investment_details': 18,
76
+ 'list_accounts': 19,
77
+ 'list_beneficiary': 20,
78
+ 'list_billers': 21,
79
+ 'list_fd': 22,
80
+ 'list_investments': 23,
81
+ 'list_loans': 24,
82
+ 'loan_details': 25,
83
+ 'nrv_details': 26,
84
+ 'open_account': 27,
85
+ 'pending_authorization': 28,
86
+ 'pin_change': 29,
87
+ 'raise_request': 30,
88
+ 'request_status': 31,
89
+ 'saving_interest_rate': 32,
90
+ 'send_money_abroad': 33,
91
+ 'ss_fd_rate': 34,
92
+ 'transaction_history': 35,
93
+ 'transaction_limit': 36,
94
+ 'update_beneficiary': 37}
95
+ </pre>
96
+
97
+ How to use :
98
+
99
+ 1. Type a query such as
100
+ - "Tell me my last 10 transactions"
101
+ - "I am senior citizen. What is FD rates"
102
+ - "I want to send money to my brother"
103
+ - "I want Fixed Deposit rate for 2 Crore INR"
104
+ - "What is the outstanding EMI or my loan"
105
+ - "How many active loans do I have ?"
106
+ - "I want to add a new beneficiary"
107
+ 3. This engine will understand the "intent" behind the query and return the value of LABEL_0 to LABEL_50.
108
+ 4. The LABEL having maximum value (which will be at the top in the result) will be the identified "intent"
109
+ 5. Use above mapping table and convert LABEL to Code. So, for example, LABEL_34 means "Senior Citizen Fixed Deposit Rate" and so on.
110
+
111
+
112
 
113
  ## Training and evaluation data
114