Anurag0961 commited on
Commit
3716693
·
1 Parent(s): bb0fcab

Training in progress, step 500

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-uncased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForSequenceClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "account_statement_email",
13
+ "1": "bank_details_update_request",
14
+ "2": "biller_addition_query",
15
+ "3": "brokerage_statement",
16
+ "4": "capital_gain_statement",
17
+ "5": "change_of_plan",
18
+ "6": "client_changes_contact_details",
19
+ "7": "client_changes_name",
20
+ "8": "commission_query",
21
+ "9": "consolidation_procedure",
22
+ "10": "demat_queries",
23
+ "11": "dividend_payment_query",
24
+ "12": "fatca_queries",
25
+ "13": "folio_status_query",
26
+ "14": "kyc_update_request",
27
+ "15": "minor_to_major",
28
+ "16": "new_leads",
29
+ "17": "nomination_request",
30
+ "18": "out_of_scope",
31
+ "19": "redemption_payment_not_received",
32
+ "20": "redemption_request",
33
+ "21": "sip_related",
34
+ "22": "switch_related",
35
+ "23": "transaction_query",
36
+ "24": "transmission",
37
+ "25": "website_issues",
38
+ "26": "wrong_allocation"
39
+ },
40
+ "initializer_range": 0.02,
41
+ "label2id": {
42
+ "account_statement_email": 0,
43
+ "bank_details_update_request": 1,
44
+ "biller_addition_query": 2,
45
+ "brokerage_statement": 3,
46
+ "capital_gain_statement": 4,
47
+ "change_of_plan": 5,
48
+ "client_changes_contact_details": 6,
49
+ "client_changes_name": 7,
50
+ "commission_query": 8,
51
+ "consolidation_procedure": 9,
52
+ "demat_queries": 10,
53
+ "dividend_payment_query": 11,
54
+ "fatca_queries": 12,
55
+ "folio_status_query": 13,
56
+ "kyc_update_request": 14,
57
+ "minor_to_major": 15,
58
+ "new_leads": 16,
59
+ "nomination_request": 17,
60
+ "out_of_scope": 18,
61
+ "redemption_payment_not_received": 19,
62
+ "redemption_request": 20,
63
+ "sip_related": 21,
64
+ "switch_related": 22,
65
+ "transaction_query": 23,
66
+ "transmission": 24,
67
+ "website_issues": 25,
68
+ "wrong_allocation": 26
69
+ },
70
+ "max_position_embeddings": 512,
71
+ "model_type": "distilbert",
72
+ "n_heads": 12,
73
+ "n_layers": 6,
74
+ "pad_token_id": 0,
75
+ "problem_type": "single_label_classification",
76
+ "qa_dropout": 0.1,
77
+ "seq_classif_dropout": 0.2,
78
+ "sinusoidal_pos_embds": false,
79
+ "tie_weights_": true,
80
+ "torch_dtype": "float32",
81
+ "transformers_version": "4.26.0",
82
+ "vocab_size": 30522
83
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7cac0349943fe398f3007d76ddb9e549d6d88e94994daea9efa0fd4329c9c553
3
+ size 267932397
runs/Jan30_06-02-01_5a7990ab3527/1675058536.0214148/events.out.tfevents.1675058536.5a7990ab3527.284.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a2dc0efea7f3948658096a2baec7815c126df0c811cfb2a88a1cae1675018b7
3
+ size 5671
runs/Jan30_06-02-01_5a7990ab3527/events.out.tfevents.1675058535.5a7990ab3527.284.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ca3784a0e47dc7655901ebb0c3f32d70c2fc860ef57b6600f2f3493660016f6
3
+ size 6338
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_lower_case": true,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "name_or_path": "distilbert-base-uncased",
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "special_tokens_map_file": null,
10
+ "strip_accents": null,
11
+ "tokenize_chinese_chars": true,
12
+ "tokenizer_class": "DistilBertTokenizer",
13
+ "unk_token": "[UNK]"
14
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:308e67af786ad689ce58b4a713255d4f6bbeeb809f53169aa0ead35286cf81da
3
+ size 3515
vocab.txt ADDED
The diff for this file is too large to render. See raw diff