Sonatafyai commited on
Commit
b551849
1 Parent(s): 2710b21

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-base-uncased",
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": "urinary tract infection",
14
+ "1": "common cold",
15
+ "2": "arthritis",
16
+ "3": "allergy",
17
+ "4": "typhoid",
18
+ "5": "gastroesophageal reflux disease",
19
+ "6": "impetigo",
20
+ "7": "chicken pox",
21
+ "8": "hypertension",
22
+ "9": "peptic ulcer disease",
23
+ "10": "diabetes",
24
+ "11": "jaundice",
25
+ "12": "dengue",
26
+ "13": "drug reaction",
27
+ "14": "psoriasis",
28
+ "15": "fungal infection",
29
+ "16": "bronchial asthma",
30
+ "17": "migraine",
31
+ "18": "malaria",
32
+ "19": "pneumonia",
33
+ "20": "cervical spondylosis",
34
+ "21": "varicose veins"
35
+ },
36
+ "initializer_range": 0.02,
37
+ "intermediate_size": 3072,
38
+ "label2id": {
39
+ "allergy": 3,
40
+ "arthritis": 2,
41
+ "bronchial asthma": 16,
42
+ "cervical spondylosis": 20,
43
+ "chicken pox": 7,
44
+ "common cold": 1,
45
+ "dengue": 12,
46
+ "diabetes": 10,
47
+ "drug reaction": 13,
48
+ "fungal infection": 15,
49
+ "gastroesophageal reflux disease": 5,
50
+ "hypertension": 8,
51
+ "impetigo": 6,
52
+ "jaundice": 11,
53
+ "malaria": 18,
54
+ "migraine": 17,
55
+ "peptic ulcer disease": 9,
56
+ "pneumonia": 19,
57
+ "psoriasis": 14,
58
+ "typhoid": 4,
59
+ "urinary tract infection": 0,
60
+ "varicose veins": 21
61
+ },
62
+ "layer_norm_eps": 1e-12,
63
+ "max_position_embeddings": 512,
64
+ "model_type": "bert",
65
+ "num_attention_heads": 12,
66
+ "num_hidden_layers": 12,
67
+ "pad_token_id": 0,
68
+ "position_embedding_type": "absolute",
69
+ "problem_type": "single_label_classification",
70
+ "torch_dtype": "float32",
71
+ "transformers_version": "4.40.1",
72
+ "type_vocab_size": 2,
73
+ "use_cache": true,
74
+ "vocab_size": 30522
75
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45ef56bff6582c5367b3af2820e3b69814f0dd749e7a546989cbd62563547a26
3
+ size 438020168
runs/May09_13-55-28_7347343b886b/events.out.tfevents.1715262929.7347343b886b.5170.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e392318b5519f5d75406c2a95db6cda51b2079c9a0a7871e485a7fbecc0d4a1
3
+ size 6193
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": "BertTokenizer",
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:10662a1bad510f24d1caaff44e094bdf010dfbffc2385d2ef2887b56486bcc9d
3
+ size 5048
vocab.txt ADDED
The diff for this file is too large to render. See raw diff