bitdribble commited on
Commit
cb0df9d
·
verified ·
1 Parent(s): fe4e4e3

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "ABN",
13
+ "1": "AOB",
14
+ "2": "Authorization to file (Non-Assigned)",
15
+ "3": "CMN",
16
+ "4": "Carrier Proof of Delivery",
17
+ "5": "Chart Notes/Progress Notes",
18
+ "6": "Claim Audit Decision",
19
+ "7": "DWO - Detailed Written Order",
20
+ "8": "Delivery Notification",
21
+ "9": "Delivery Quote",
22
+ "10": "Delivery Ticket",
23
+ "11": "Drop Shipment Delivery Confirmation",
24
+ "12": "Generic Script",
25
+ "13": "Incoming Fax",
26
+ "14": "Insurance Card / Drivers License",
27
+ "15": "Intake Sheet",
28
+ "16": "Invalid documentation",
29
+ "17": "Lift Chair Agreement",
30
+ "18": "Oxygen CMN and Test Results",
31
+ "19": "Oxygen Checklist or Fire Safety",
32
+ "20": "PRE",
33
+ "21": "Payor Correspondence",
34
+ "22": "Pickup Ticket",
35
+ "23": "Prior Authorization Incoming/Outgoing",
36
+ "24": "Prochant - Appeal Documents",
37
+ "25": "Rehab - Chart Notes",
38
+ "26": "Rehab - Home Assessment",
39
+ "27": "Rehab - Intake",
40
+ "28": "Rehab - Service Eval",
41
+ "29": "Sleep Therapy - Sleep Study",
42
+ "30": "Sleep Therapy- Financial Form",
43
+ "31": "Sleep Therapy-Initial Compliance Report",
44
+ "32": "Sleep Therapy-Ongoing Compliance Report",
45
+ "33": "Waiver - ABN",
46
+ "34": "Waiver- Commercial"
47
+ },
48
+ "initializer_range": 0.02,
49
+ "label2id": {
50
+ "ABN": 0,
51
+ "AOB": 1,
52
+ "Authorization to file (Non-Assigned)": 2,
53
+ "CMN": 3,
54
+ "Carrier Proof of Delivery": 4,
55
+ "Chart Notes/Progress Notes": 5,
56
+ "Claim Audit Decision": 6,
57
+ "DWO - Detailed Written Order": 7,
58
+ "Delivery Notification": 8,
59
+ "Delivery Quote": 9,
60
+ "Delivery Ticket": 10,
61
+ "Drop Shipment Delivery Confirmation": 11,
62
+ "Generic Script": 12,
63
+ "Incoming Fax": 13,
64
+ "Insurance Card / Drivers License": 14,
65
+ "Intake Sheet": 15,
66
+ "Invalid documentation": 16,
67
+ "Lift Chair Agreement": 17,
68
+ "Oxygen CMN and Test Results": 18,
69
+ "Oxygen Checklist or Fire Safety": 19,
70
+ "PRE": 20,
71
+ "Payor Correspondence": 21,
72
+ "Pickup Ticket": 22,
73
+ "Prior Authorization Incoming/Outgoing": 23,
74
+ "Prochant - Appeal Documents": 24,
75
+ "Rehab - Chart Notes": 25,
76
+ "Rehab - Home Assessment": 26,
77
+ "Rehab - Intake": 27,
78
+ "Rehab - Service Eval": 28,
79
+ "Sleep Therapy - Sleep Study": 29,
80
+ "Sleep Therapy- Financial Form": 30,
81
+ "Sleep Therapy-Initial Compliance Report": 31,
82
+ "Sleep Therapy-Ongoing Compliance Report": 32,
83
+ "Waiver - ABN": 33,
84
+ "Waiver- Commercial": 34
85
+ },
86
+ "max_position_embeddings": 512,
87
+ "model_type": "distilbert",
88
+ "n_heads": 12,
89
+ "n_layers": 6,
90
+ "pad_token_id": 0,
91
+ "problem_type": "single_label_classification",
92
+ "qa_dropout": 0.1,
93
+ "seq_classif_dropout": 0.2,
94
+ "sinusoidal_pos_embds": false,
95
+ "tie_weights_": true,
96
+ "torch_dtype": "float32",
97
+ "transformers_version": "4.37.2",
98
+ "vocab_size": 30522
99
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64c791eb88c9f2f1215c3b7ddd688b7653076814e0e785645227fd0acf2b035b
3
+ size 267934084
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": 512,
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:3e3a17000d3743603071e19b4a9de7b11d4405428d1ab5bb82161dfbe4346c7b
3
+ size 4664
vocab.txt ADDED
The diff for this file is too large to render. See raw diff