patchingfailed commited on
Commit
0cab202
1 Parent(s): 5a66171

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "appleternity/scibert-uncased-finetuned-coda19",
3
+ "architectures": [
4
+ "BertForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "gradient_checkpointing": false,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "id2label": {
13
+ "0": " Allergy / Immunology",
14
+ "1": " Autopsy",
15
+ "10": " Discharge Summary",
16
+ "11": " ENT - Otolaryngology",
17
+ "12": " Emergency Room Reports",
18
+ "13": " Endocrinology",
19
+ "14": " Gastroenterology",
20
+ "15": " General Medicine",
21
+ "16": " Hematology - Oncology",
22
+ "17": " Hospice - Palliative Care",
23
+ "18": " IME-QME-Work Comp etc.",
24
+ "19": " Lab Medicine - Pathology",
25
+ "2": " Bariatrics",
26
+ "20": " Letters",
27
+ "21": " Nephrology",
28
+ "22": " Neurology",
29
+ "23": " Neurosurgery",
30
+ "24": " Obstetrics / Gynecology",
31
+ "25": " Office Notes",
32
+ "26": " Ophthalmology",
33
+ "27": " Orthopedic",
34
+ "28": " Pain Management",
35
+ "29": " Pediatrics - Neonatal",
36
+ "3": " Cardiovascular / Pulmonary",
37
+ "30": " Physical Medicine - Rehab",
38
+ "31": " Podiatry",
39
+ "32": " Psychiatry / Psychology",
40
+ "33": " Radiology",
41
+ "34": " Rheumatology",
42
+ "35": " SOAP / Chart / Progress Notes",
43
+ "36": " Sleep Medicine",
44
+ "37": " Speech - Language",
45
+ "38": " Surgery",
46
+ "39": " Urology",
47
+ "4": " Chiropractic",
48
+ "5": " Consult - History and Phy.",
49
+ "6": " Cosmetic / Plastic Surgery",
50
+ "7": " Dentistry",
51
+ "8": " Dermatology",
52
+ "9": " Diets and Nutritions"
53
+ },
54
+ "initializer_range": 0.02,
55
+ "intermediate_size": 3072,
56
+ "label2id": {
57
+ " Allergy / Immunology": 0,
58
+ " Autopsy": 1,
59
+ " Bariatrics": 2,
60
+ " Cardiovascular / Pulmonary": 3,
61
+ " Chiropractic": 4,
62
+ " Consult - History and Phy.": 5,
63
+ " Cosmetic / Plastic Surgery": 6,
64
+ " Dentistry": 7,
65
+ " Dermatology": 8,
66
+ " Diets and Nutritions": 9,
67
+ " Discharge Summary": 10,
68
+ " ENT - Otolaryngology": 11,
69
+ " Emergency Room Reports": 12,
70
+ " Endocrinology": 13,
71
+ " Gastroenterology": 14,
72
+ " General Medicine": 15,
73
+ " Hematology - Oncology": 16,
74
+ " Hospice - Palliative Care": 17,
75
+ " IME-QME-Work Comp etc.": 18,
76
+ " Lab Medicine - Pathology": 19,
77
+ " Letters": 20,
78
+ " Nephrology": 21,
79
+ " Neurology": 22,
80
+ " Neurosurgery": 23,
81
+ " Obstetrics / Gynecology": 24,
82
+ " Office Notes": 25,
83
+ " Ophthalmology": 26,
84
+ " Orthopedic": 27,
85
+ " Pain Management": 28,
86
+ " Pediatrics - Neonatal": 29,
87
+ " Physical Medicine - Rehab": 30,
88
+ " Podiatry": 31,
89
+ " Psychiatry / Psychology": 32,
90
+ " Radiology": 33,
91
+ " Rheumatology": 34,
92
+ " SOAP / Chart / Progress Notes": 35,
93
+ " Sleep Medicine": 36,
94
+ " Speech - Language": 37,
95
+ " Surgery": 38,
96
+ " Urology": 39
97
+ },
98
+ "layer_norm_eps": 1e-12,
99
+ "max_position_embeddings": 512,
100
+ "model_type": "bert",
101
+ "num_attention_heads": 12,
102
+ "num_hidden_layers": 12,
103
+ "pad_token_id": 0,
104
+ "position_embedding_type": "absolute",
105
+ "problem_type": "single_label_classification",
106
+ "torch_dtype": "float32",
107
+ "transformers_version": "4.33.3",
108
+ "type_vocab_size": 2,
109
+ "use_cache": true,
110
+ "vocab_size": 31090
111
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a87861dda3784b99c409d805894cca0e3a9ed72e9971b4ea764b11223db69a91
3
+ size 439865265
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,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clean_up_tokenization_spaces": true,
3
+ "cls_token": "[CLS]",
4
+ "do_basic_tokenize": true,
5
+ "do_lower_case": true,
6
+ "full_tokenizer_file": null,
7
+ "mask_token": "[MASK]",
8
+ "model_max_length": 1000000000000000019884624838656,
9
+ "never_split": null,
10
+ "pad_token": "[PAD]",
11
+ "sep_token": "[SEP]",
12
+ "strip_accents": null,
13
+ "tokenize_chinese_chars": true,
14
+ "tokenizer_class": "BertTokenizer",
15
+ "unk_token": "[UNK]"
16
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4bbc6bf537ecf9800e3004da8905a583af969e1e5409cc1d31a8281f901d764d
3
+ size 4027
vocab.txt ADDED
The diff for this file is too large to render. See raw diff