Mahesh9 commited on
Commit
d889dd2
1 Parent(s): 220d232

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert/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 information incorrect",
13
+ "1": "Account opened as a result of fraud",
14
+ "2": "Account status incorrect",
15
+ "3": "Attempted to collect wrong amount",
16
+ "4": "Banking errors",
17
+ "5": "Billing problem",
18
+ "6": "Can't close your account",
19
+ "7": "Card opened as result of identity theft or fraud",
20
+ "8": "Card was charged for something you did not purchase with the card",
21
+ "9": "Company closed your account",
22
+ "10": "Credit card company isn't resolving a dispute about a purchase on your statement",
23
+ "11": "Credit inquiries on your report that you don't recognize",
24
+ "12": "Debt is not yours",
25
+ "13": "Debt was paid",
26
+ "14": "Debt was result of identity theft",
27
+ "15": "Deposits and withdrawals",
28
+ "16": "Didn't receive enough information to verify debt",
29
+ "17": "Didn't receive notice of right to dispute",
30
+ "18": "Difficulty submitting a dispute or getting information about a dispute over the phone",
31
+ "19": "Fee problem",
32
+ "20": "Funds not handled or disbursed as instructed",
33
+ "21": "Funds not received from closed account",
34
+ "22": "Information belongs to someone else",
35
+ "23": "Information is missing that should be on the report",
36
+ "24": "Investigation took more than 30 days",
37
+ "25": "Old information reappears or never goes away",
38
+ "26": "Other problem",
39
+ "27": "Other problem getting your report or credit score",
40
+ "28": "Overdrafts and overdraft fees",
41
+ "29": "Personal information incorrect",
42
+ "30": "Problem accessing account",
43
+ "31": "Problem canceling credit monitoring or identify theft protection service",
44
+ "32": "Problem during payment process",
45
+ "33": "Problem using a debit or ATM card",
46
+ "34": "Problem with fees",
47
+ "35": "Problem with personal statement of dispute",
48
+ "36": "Public record information inaccurate",
49
+ "37": "Received bad information about your loan",
50
+ "38": "Reporting company used your report improperly",
51
+ "39": "Their investigation did not fix an error on your report",
52
+ "40": "Threatened or suggested your credit would be damaged",
53
+ "41": "Transaction was not authorized",
54
+ "42": "Trouble with how payments are being handled",
55
+ "43": "Was not notified of investigation status or results"
56
+ },
57
+ "initializer_range": 0.02,
58
+ "label2id": {
59
+ "Account information incorrect": 0,
60
+ "Account opened as a result of fraud": 1,
61
+ "Account status incorrect": 2,
62
+ "Attempted to collect wrong amount": 3,
63
+ "Banking errors": 4,
64
+ "Billing problem": 5,
65
+ "Can't close your account": 6,
66
+ "Card opened as result of identity theft or fraud": 7,
67
+ "Card was charged for something you did not purchase with the card": 8,
68
+ "Company closed your account": 9,
69
+ "Credit card company isn't resolving a dispute about a purchase on your statement": 10,
70
+ "Credit inquiries on your report that you don't recognize": 11,
71
+ "Debt is not yours": 12,
72
+ "Debt was paid": 13,
73
+ "Debt was result of identity theft": 14,
74
+ "Deposits and withdrawals": 15,
75
+ "Didn't receive enough information to verify debt": 16,
76
+ "Didn't receive notice of right to dispute": 17,
77
+ "Difficulty submitting a dispute or getting information about a dispute over the phone": 18,
78
+ "Fee problem": 19,
79
+ "Funds not handled or disbursed as instructed": 20,
80
+ "Funds not received from closed account": 21,
81
+ "Information belongs to someone else": 22,
82
+ "Information is missing that should be on the report": 23,
83
+ "Investigation took more than 30 days": 24,
84
+ "Old information reappears or never goes away": 25,
85
+ "Other problem": 26,
86
+ "Other problem getting your report or credit score": 27,
87
+ "Overdrafts and overdraft fees": 28,
88
+ "Personal information incorrect": 29,
89
+ "Problem accessing account": 30,
90
+ "Problem canceling credit monitoring or identify theft protection service": 31,
91
+ "Problem during payment process": 32,
92
+ "Problem using a debit or ATM card": 33,
93
+ "Problem with fees": 34,
94
+ "Problem with personal statement of dispute": 35,
95
+ "Public record information inaccurate": 36,
96
+ "Received bad information about your loan": 37,
97
+ "Reporting company used your report improperly": 38,
98
+ "Their investigation did not fix an error on your report": 39,
99
+ "Threatened or suggested your credit would be damaged": 40,
100
+ "Transaction was not authorized": 41,
101
+ "Trouble with how payments are being handled": 42,
102
+ "Was not notified of investigation status or results": 43
103
+ },
104
+ "max_position_embeddings": 512,
105
+ "model_type": "distilbert",
106
+ "n_heads": 12,
107
+ "n_layers": 6,
108
+ "pad_token_id": 0,
109
+ "problem_type": "single_label_classification",
110
+ "qa_dropout": 0.1,
111
+ "seq_classif_dropout": 0.2,
112
+ "sinusoidal_pos_embds": false,
113
+ "tie_weights_": true,
114
+ "torch_dtype": "float32",
115
+ "transformers_version": "4.37.2",
116
+ "vocab_size": 30522
117
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:043ce5dd71099c7ff3bf23a9d24ddb4b4f09826c6c91114eb299ea2b10e04be9
3
+ size 267961768
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,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": true,
45
+ "cls_token": "[CLS]",
46
+ "do_lower_case": true,
47
+ "mask_token": "[MASK]",
48
+ "model_max_length": 1000000000000000019884624838656,
49
+ "pad_token": "[PAD]",
50
+ "sep_token": "[SEP]",
51
+ "strip_accents": null,
52
+ "tokenize_chinese_chars": true,
53
+ "tokenizer_class": "DistilBertTokenizer",
54
+ "unk_token": "[UNK]"
55
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d0af6e767f9f0bad52cca15365f3c784978f8b8ea71c7e4763a57a273b3b2b8
3
+ size 4728
vocab.txt ADDED
The diff for this file is too large to render. See raw diff