End of training
Browse files- README.md +15 -31
- config.json +142 -100
- label_encoder.joblib +2 -2
- model.safetensors +2 -2
- special_tokens_map.json +35 -5
- training_args.bin +2 -2
README.md
CHANGED
@@ -1,6 +1,5 @@
|
|
1 |
---
|
2 |
-
|
3 |
-
base_model: bert-base-uncased
|
4 |
tags:
|
5 |
- generated_from_trainer
|
6 |
model-index:
|
@@ -13,9 +12,9 @@ should probably proofread and complete it, then remove this comment. -->
|
|
13 |
|
14 |
# TenaliAI-FinTech-v1
|
15 |
|
16 |
-
This model
|
17 |
It achieves the following results on the evaluation set:
|
18 |
-
- Loss: 0.
|
19 |
|
20 |
## Model description
|
21 |
|
@@ -40,42 +39,27 @@ The following hyperparameters were used during training:
|
|
40 |
- seed: 42
|
41 |
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
42 |
- lr_scheduler_type: linear
|
43 |
-
- num_epochs:
|
44 |
|
45 |
### Training results
|
46 |
|
47 |
| Training Loss | Epoch | Step | Validation Loss |
|
48 |
|:-------------:|:-----:|:----:|:---------------:|
|
49 |
-
| No log | 1.0 |
|
50 |
-
| No log | 2.0 |
|
51 |
-
|
|
52 |
-
|
|
53 |
-
|
|
54 |
-
|
|
55 |
-
|
|
56 |
-
|
|
57 |
-
| 0.
|
58 |
-
| 0.
|
59 |
-
| 0.1041 | 11.0 | 1232 | 0.0910 |
|
60 |
-
| 0.1041 | 12.0 | 1344 | 0.0924 |
|
61 |
-
| 0.1041 | 13.0 | 1456 | 0.0915 |
|
62 |
-
| 0.0226 | 14.0 | 1568 | 0.0933 |
|
63 |
-
| 0.0226 | 15.0 | 1680 | 0.0987 |
|
64 |
-
| 0.0226 | 16.0 | 1792 | 0.0980 |
|
65 |
-
| 0.0226 | 17.0 | 1904 | 0.1006 |
|
66 |
-
| 0.0115 | 18.0 | 2016 | 0.1014 |
|
67 |
-
| 0.0115 | 19.0 | 2128 | 0.0996 |
|
68 |
-
| 0.0115 | 20.0 | 2240 | 0.1034 |
|
69 |
-
| 0.0115 | 21.0 | 2352 | 0.0989 |
|
70 |
-
| 0.0115 | 22.0 | 2464 | 0.1076 |
|
71 |
-
| 0.0089 | 23.0 | 2576 | 0.1051 |
|
72 |
-
| 0.0089 | 24.0 | 2688 | 0.1040 |
|
73 |
-
| 0.0089 | 25.0 | 2800 | 0.1058 |
|
74 |
|
75 |
|
76 |
### Framework versions
|
77 |
|
78 |
-
- Transformers 4.
|
79 |
- Pytorch 2.3.1+cu121
|
80 |
- Datasets 2.21.0
|
81 |
- Tokenizers 0.19.1
|
|
|
1 |
---
|
2 |
+
library_name: transformers
|
|
|
3 |
tags:
|
4 |
- generated_from_trainer
|
5 |
model-index:
|
|
|
12 |
|
13 |
# TenaliAI-FinTech-v1
|
14 |
|
15 |
+
This model was trained from scratch on an unknown dataset.
|
16 |
It achieves the following results on the evaluation set:
|
17 |
+
- Loss: 0.1497
|
18 |
|
19 |
## Model description
|
20 |
|
|
|
39 |
- seed: 42
|
40 |
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
41 |
- lr_scheduler_type: linear
|
42 |
+
- num_epochs: 10
|
43 |
|
44 |
### Training results
|
45 |
|
46 |
| Training Loss | Epoch | Step | Validation Loss |
|
47 |
|:-------------:|:-----:|:----:|:---------------:|
|
48 |
+
| No log | 1.0 | 182 | 3.1418 |
|
49 |
+
| No log | 2.0 | 364 | 1.9366 |
|
50 |
+
| 2.8756 | 3.0 | 546 | 1.1533 |
|
51 |
+
| 2.8756 | 4.0 | 728 | 0.6654 |
|
52 |
+
| 2.8756 | 5.0 | 910 | 0.4046 |
|
53 |
+
| 0.763 | 6.0 | 1092 | 0.2734 |
|
54 |
+
| 0.763 | 7.0 | 1274 | 0.1923 |
|
55 |
+
| 0.763 | 8.0 | 1456 | 0.1646 |
|
56 |
+
| 0.2072 | 9.0 | 1638 | 0.1517 |
|
57 |
+
| 0.2072 | 10.0 | 1820 | 0.1497 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
|
60 |
### Framework versions
|
61 |
|
62 |
+
- Transformers 4.44.2
|
63 |
- Pytorch 2.3.1+cu121
|
64 |
- Datasets 2.21.0
|
65 |
- Tokenizers 0.19.1
|
config.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "
|
3 |
"architectures": [
|
4 |
"BertForSequenceClassification"
|
5 |
],
|
@@ -11,109 +11,151 @@
|
|
11 |
"hidden_size": 768,
|
12 |
"id2label": {
|
13 |
"0": "account_statement",
|
14 |
-
"1": "
|
15 |
-
"2": "
|
16 |
-
"3": "
|
17 |
-
"4": "
|
18 |
-
"5": "
|
19 |
-
"6": "
|
20 |
-
"7": "
|
21 |
-
"8": "
|
22 |
-
"9": "
|
23 |
-
"10": "
|
24 |
-
"11": "
|
25 |
-
"12": "
|
26 |
-
"13": "
|
27 |
-
"14": "
|
28 |
-
"15": "
|
29 |
-
"16": "
|
30 |
-
"17": "
|
31 |
-
"18": "
|
32 |
-
"19": "
|
33 |
-
"20": "
|
34 |
-
"21": "
|
35 |
-
"22": "
|
36 |
-
"23": "
|
37 |
-
"24": "
|
38 |
-
"25": "
|
39 |
-
"26": "
|
40 |
-
"27": "
|
41 |
-
"28": "
|
42 |
-
"29": "
|
43 |
-
"30": "
|
44 |
-
"31": "
|
45 |
-
"32": "
|
46 |
-
"33": "
|
47 |
-
"34": "
|
48 |
-
"35": "
|
49 |
-
"36": "
|
50 |
-
"37": "
|
51 |
-
"38": "
|
52 |
-
"39": "
|
53 |
-
"40": "
|
54 |
-
"41": "
|
55 |
-
"42": "
|
56 |
-
"43": "
|
57 |
-
"44": "
|
58 |
-
"45": "
|
59 |
-
"46": "
|
60 |
-
"47": "
|
61 |
-
"48": "
|
62 |
-
"49": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
},
|
64 |
"initializer_range": 0.02,
|
65 |
"intermediate_size": 3072,
|
66 |
"label2id": {
|
67 |
"account_statement": 0,
|
68 |
-
"
|
69 |
-
"
|
70 |
-
"
|
71 |
-
"
|
72 |
-
"
|
73 |
-
"
|
74 |
-
"
|
75 |
-
"
|
76 |
-
"
|
77 |
-
"
|
78 |
-
"
|
79 |
-
"
|
80 |
-
"
|
81 |
-
"
|
82 |
-
"
|
83 |
-
"
|
84 |
-
"
|
85 |
-
"
|
86 |
-
"
|
87 |
-
"
|
88 |
-
"
|
89 |
-
"
|
90 |
-
"
|
91 |
-
"
|
92 |
-
"
|
93 |
-
"
|
94 |
-
"
|
95 |
-
"
|
96 |
-
"
|
97 |
-
"
|
98 |
-
"
|
99 |
-
"
|
100 |
-
"
|
101 |
-
"
|
102 |
-
"
|
103 |
-
"
|
104 |
-
"
|
105 |
-
"
|
106 |
-
"
|
107 |
-
"
|
108 |
-
"
|
109 |
-
"
|
110 |
-
"
|
111 |
-
"
|
112 |
-
"
|
113 |
-
"
|
114 |
-
"
|
115 |
-
"
|
116 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
},
|
118 |
"layer_norm_eps": 1e-12,
|
119 |
"max_position_embeddings": 512,
|
@@ -124,7 +166,7 @@
|
|
124 |
"position_embedding_type": "absolute",
|
125 |
"problem_type": "single_label_classification",
|
126 |
"torch_dtype": "float32",
|
127 |
-
"transformers_version": "4.
|
128 |
"type_vocab_size": 2,
|
129 |
"use_cache": true,
|
130 |
"vocab_size": 30522
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "TenaliAIModels/BertBaseModel",
|
3 |
"architectures": [
|
4 |
"BertForSequenceClassification"
|
5 |
],
|
|
|
11 |
"hidden_size": 768,
|
12 |
"id2label": {
|
13 |
"0": "account_statement",
|
14 |
+
"1": "account_statement_hi",
|
15 |
+
"2": "account_statement_kn",
|
16 |
+
"3": "account_statement_mr",
|
17 |
+
"4": "add_beneficiary",
|
18 |
+
"5": "add_beneficiary_hi",
|
19 |
+
"6": "add_beneficiary_kn",
|
20 |
+
"7": "add_beneficiary_mr",
|
21 |
+
"8": "balance_enquiry",
|
22 |
+
"9": "beneficiary_details",
|
23 |
+
"10": "bill_payment",
|
24 |
+
"11": "block_card",
|
25 |
+
"12": "block_card_hi",
|
26 |
+
"13": "block_card_kn",
|
27 |
+
"14": "block_card_mr",
|
28 |
+
"15": "bulk_payments",
|
29 |
+
"16": "bulk_payments_status",
|
30 |
+
"17": "car_insurance",
|
31 |
+
"18": "car_insurance_hi",
|
32 |
+
"19": "car_insurance_kn",
|
33 |
+
"20": "car_insurance_mr",
|
34 |
+
"21": "change_contact_info",
|
35 |
+
"22": "debit_card_details",
|
36 |
+
"23": "delete_beneficiary",
|
37 |
+
"24": "fd_details",
|
38 |
+
"25": "fd_rate",
|
39 |
+
"26": "fd_rate_large_amount",
|
40 |
+
"27": "funds_transfer",
|
41 |
+
"28": "funds_transfer_direct",
|
42 |
+
"29": "funds_transfer_direct_hi",
|
43 |
+
"30": "funds_transfer_direct_kn",
|
44 |
+
"31": "funds_transfer_direct_mr",
|
45 |
+
"32": "funds_transfer_other_bank",
|
46 |
+
"33": "funds_transfer_own_account",
|
47 |
+
"34": "funds_transfer_status",
|
48 |
+
"35": "funds_transfer_third_party",
|
49 |
+
"36": "gst_payment",
|
50 |
+
"37": "health_insurance",
|
51 |
+
"38": "health_insurance_hi",
|
52 |
+
"39": "health_insurance_kn",
|
53 |
+
"40": "health_insurance_mr",
|
54 |
+
"41": "investment_details",
|
55 |
+
"42": "investment_details_hi",
|
56 |
+
"43": "investment_details_kn",
|
57 |
+
"44": "investment_details_mr",
|
58 |
+
"45": "list_accounts",
|
59 |
+
"46": "list_beneficiary",
|
60 |
+
"47": "list_billers",
|
61 |
+
"48": "list_fd",
|
62 |
+
"49": "list_investments",
|
63 |
+
"50": "list_loans",
|
64 |
+
"51": "loan_details",
|
65 |
+
"52": "nrv_details",
|
66 |
+
"53": "open_account",
|
67 |
+
"54": "pending_authorization",
|
68 |
+
"55": "pin_change",
|
69 |
+
"56": "raise_request",
|
70 |
+
"57": "rd_details",
|
71 |
+
"58": "rd_rate",
|
72 |
+
"59": "request_status",
|
73 |
+
"60": "saving_interest_rate",
|
74 |
+
"61": "send_money_abroad",
|
75 |
+
"62": "ss_fd_rate",
|
76 |
+
"63": "ss_rd_rate",
|
77 |
+
"64": "transaction_history",
|
78 |
+
"65": "transaction_limit",
|
79 |
+
"66": "travel_insurance",
|
80 |
+
"67": "travel_insurance_hi",
|
81 |
+
"68": "travel_insurance_kn",
|
82 |
+
"69": "travel_insurance_mr",
|
83 |
+
"70": "update_beneficiary"
|
84 |
},
|
85 |
"initializer_range": 0.02,
|
86 |
"intermediate_size": 3072,
|
87 |
"label2id": {
|
88 |
"account_statement": 0,
|
89 |
+
"account_statement_hi": 1,
|
90 |
+
"account_statement_kn": 2,
|
91 |
+
"account_statement_mr": 3,
|
92 |
+
"add_beneficiary": 4,
|
93 |
+
"add_beneficiary_hi": 5,
|
94 |
+
"add_beneficiary_kn": 6,
|
95 |
+
"add_beneficiary_mr": 7,
|
96 |
+
"balance_enquiry": 8,
|
97 |
+
"beneficiary_details": 9,
|
98 |
+
"bill_payment": 10,
|
99 |
+
"block_card": 11,
|
100 |
+
"block_card_hi": 12,
|
101 |
+
"block_card_kn": 13,
|
102 |
+
"block_card_mr": 14,
|
103 |
+
"bulk_payments": 15,
|
104 |
+
"bulk_payments_status": 16,
|
105 |
+
"car_insurance": 17,
|
106 |
+
"car_insurance_hi": 18,
|
107 |
+
"car_insurance_kn": 19,
|
108 |
+
"car_insurance_mr": 20,
|
109 |
+
"change_contact_info": 21,
|
110 |
+
"debit_card_details": 22,
|
111 |
+
"delete_beneficiary": 23,
|
112 |
+
"fd_details": 24,
|
113 |
+
"fd_rate": 25,
|
114 |
+
"fd_rate_large_amount": 26,
|
115 |
+
"funds_transfer": 27,
|
116 |
+
"funds_transfer_direct": 28,
|
117 |
+
"funds_transfer_direct_hi": 29,
|
118 |
+
"funds_transfer_direct_kn": 30,
|
119 |
+
"funds_transfer_direct_mr": 31,
|
120 |
+
"funds_transfer_other_bank": 32,
|
121 |
+
"funds_transfer_own_account": 33,
|
122 |
+
"funds_transfer_status": 34,
|
123 |
+
"funds_transfer_third_party": 35,
|
124 |
+
"gst_payment": 36,
|
125 |
+
"health_insurance": 37,
|
126 |
+
"health_insurance_hi": 38,
|
127 |
+
"health_insurance_kn": 39,
|
128 |
+
"health_insurance_mr": 40,
|
129 |
+
"investment_details": 41,
|
130 |
+
"investment_details_hi": 42,
|
131 |
+
"investment_details_kn": 43,
|
132 |
+
"investment_details_mr": 44,
|
133 |
+
"list_accounts": 45,
|
134 |
+
"list_beneficiary": 46,
|
135 |
+
"list_billers": 47,
|
136 |
+
"list_fd": 48,
|
137 |
+
"list_investments": 49,
|
138 |
+
"list_loans": 50,
|
139 |
+
"loan_details": 51,
|
140 |
+
"nrv_details": 52,
|
141 |
+
"open_account": 53,
|
142 |
+
"pending_authorization": 54,
|
143 |
+
"pin_change": 55,
|
144 |
+
"raise_request": 56,
|
145 |
+
"rd_details": 57,
|
146 |
+
"rd_rate": 58,
|
147 |
+
"request_status": 59,
|
148 |
+
"saving_interest_rate": 60,
|
149 |
+
"send_money_abroad": 61,
|
150 |
+
"ss_fd_rate": 62,
|
151 |
+
"ss_rd_rate": 63,
|
152 |
+
"transaction_history": 64,
|
153 |
+
"transaction_limit": 65,
|
154 |
+
"travel_insurance": 66,
|
155 |
+
"travel_insurance_hi": 67,
|
156 |
+
"travel_insurance_kn": 68,
|
157 |
+
"travel_insurance_mr": 69,
|
158 |
+
"update_beneficiary": 70
|
159 |
},
|
160 |
"layer_norm_eps": 1e-12,
|
161 |
"max_position_embeddings": 512,
|
|
|
166 |
"position_embedding_type": "absolute",
|
167 |
"problem_type": "single_label_classification",
|
168 |
"torch_dtype": "float32",
|
169 |
+
"transformers_version": "4.44.2",
|
170 |
"type_vocab_size": 2,
|
171 |
"use_cache": true,
|
172 |
"vocab_size": 30522
|
label_encoder.joblib
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f37da4ded2647270f79c439a3edde51a4b085d83778fa7bfef1f3587c59df143
|
3 |
+
size 7711
|
model.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:80c55c4676ad5ca05087dca097d224ca97c8982baa1fd84806d0628c835c76a6
|
3 |
+
size 438260096
|
special_tokens_map.json
CHANGED
@@ -1,7 +1,37 @@
|
|
1 |
{
|
2 |
-
"cls_token":
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
}
|
|
|
1 |
{
|
2 |
+
"cls_token": {
|
3 |
+
"content": "[CLS]",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": false,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"mask_token": {
|
10 |
+
"content": "[MASK]",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": false,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"pad_token": {
|
17 |
+
"content": "[PAD]",
|
18 |
+
"lstrip": false,
|
19 |
+
"normalized": false,
|
20 |
+
"rstrip": false,
|
21 |
+
"single_word": false
|
22 |
+
},
|
23 |
+
"sep_token": {
|
24 |
+
"content": "[SEP]",
|
25 |
+
"lstrip": false,
|
26 |
+
"normalized": false,
|
27 |
+
"rstrip": false,
|
28 |
+
"single_word": false
|
29 |
+
},
|
30 |
+
"unk_token": {
|
31 |
+
"content": "[UNK]",
|
32 |
+
"lstrip": false,
|
33 |
+
"normalized": false,
|
34 |
+
"rstrip": false,
|
35 |
+
"single_word": false
|
36 |
+
}
|
37 |
}
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3a2c0da650b066cb9f602f18b9b9fe5284822c0720557f347d6768e195873166
|
3 |
+
size 5240
|