Mahesh9 commited on
Commit
f78f531
1 Parent(s): c183bb5

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "Attempts to collect debt not owed",
13
+ "1": "Closing an account",
14
+ "2": "Closing your account",
15
+ "3": "Credit monitoring or identity theft protection services",
16
+ "4": "Dealing with your lender or servicer",
17
+ "5": "False statements or representation",
18
+ "6": "Fees or interest",
19
+ "7": "Getting a credit card",
20
+ "8": "Identity theft protection or other monitoring services",
21
+ "9": "Improper use of your report",
22
+ "10": "Incorrect information on your report",
23
+ "11": "Managing an account",
24
+ "12": "Managing the loan or lease",
25
+ "13": "Opening an account",
26
+ "14": "Other features, terms, or problems",
27
+ "15": "Problem caused by your funds being low",
28
+ "16": "Problem when making payments",
29
+ "17": "Problem with a company's investigation into an existing issue",
30
+ "18": "Problem with a company's investigation into an existing problem",
31
+ "19": "Problem with a credit reporting company's investigation into an existing problem",
32
+ "20": "Problem with a lender or other company charging your account",
33
+ "21": "Problem with a purchase shown on your statement",
34
+ "22": "Took or threatened to take negative or legal action",
35
+ "23": "Unable to get your credit report or credit score",
36
+ "24": "Written notification about debt"
37
+ },
38
+ "initializer_range": 0.02,
39
+ "label2id": {
40
+ "Attempts to collect debt not owed": 0,
41
+ "Closing an account": 1,
42
+ "Closing your account": 2,
43
+ "Credit monitoring or identity theft protection services": 3,
44
+ "Dealing with your lender or servicer": 4,
45
+ "False statements or representation": 5,
46
+ "Fees or interest": 6,
47
+ "Getting a credit card": 7,
48
+ "Identity theft protection or other monitoring services": 8,
49
+ "Improper use of your report": 9,
50
+ "Incorrect information on your report": 10,
51
+ "Managing an account": 11,
52
+ "Managing the loan or lease": 12,
53
+ "Opening an account": 13,
54
+ "Other features, terms, or problems": 14,
55
+ "Problem caused by your funds being low": 15,
56
+ "Problem when making payments": 16,
57
+ "Problem with a company's investigation into an existing issue": 17,
58
+ "Problem with a company's investigation into an existing problem": 18,
59
+ "Problem with a credit reporting company's investigation into an existing problem": 19,
60
+ "Problem with a lender or other company charging your account": 20,
61
+ "Problem with a purchase shown on your statement": 21,
62
+ "Took or threatened to take negative or legal action": 22,
63
+ "Unable to get your credit report or credit score": 23,
64
+ "Written notification about debt": 24
65
+ },
66
+ "max_position_embeddings": 512,
67
+ "model_type": "distilbert",
68
+ "n_heads": 12,
69
+ "n_layers": 6,
70
+ "pad_token_id": 0,
71
+ "problem_type": "single_label_classification",
72
+ "qa_dropout": 0.1,
73
+ "seq_classif_dropout": 0.2,
74
+ "sinusoidal_pos_embds": false,
75
+ "tie_weights_": true,
76
+ "torch_dtype": "float32",
77
+ "transformers_version": "4.37.2",
78
+ "vocab_size": 30522
79
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2d7965c651f57cdc13bd8614243b74811a2c5f7da3479d3eef8d30a4669a3c3
3
+ size 267903316
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:29915561379e846cd78f59fa7992fd98f1ec9447176f5cb3cb7052385e2925e2
3
+ size 4728
vocab.txt ADDED
The diff for this file is too large to render. See raw diff