ajtamayoh commited on
Commit
a90c51b
1 Parent(s): f348913

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": "arthritis",
14
+ "1": "drug reaction",
15
+ "2": "typhoid",
16
+ "3": "varicose veins",
17
+ "4": "gastroesophageal reflux disease",
18
+ "5": "chicken pox",
19
+ "6": "impetigo",
20
+ "7": "fungal infection",
21
+ "8": "pneumonia",
22
+ "9": "dengue",
23
+ "10": "bronchial asthma",
24
+ "11": "allergy",
25
+ "12": "migraine",
26
+ "13": "psoriasis",
27
+ "14": "peptic ulcer disease",
28
+ "15": "hypertension",
29
+ "16": "urinary tract infection",
30
+ "17": "jaundice",
31
+ "18": "common cold",
32
+ "19": "malaria",
33
+ "20": "cervical spondylosis",
34
+ "21": "diabetes"
35
+ },
36
+ "initializer_range": 0.02,
37
+ "intermediate_size": 3072,
38
+ "label2id": {
39
+ "allergy": 11,
40
+ "arthritis": 0,
41
+ "bronchial asthma": 10,
42
+ "cervical spondylosis": 20,
43
+ "chicken pox": 5,
44
+ "common cold": 18,
45
+ "dengue": 9,
46
+ "diabetes": 21,
47
+ "drug reaction": 1,
48
+ "fungal infection": 7,
49
+ "gastroesophageal reflux disease": 4,
50
+ "hypertension": 15,
51
+ "impetigo": 6,
52
+ "jaundice": 17,
53
+ "malaria": 19,
54
+ "migraine": 12,
55
+ "peptic ulcer disease": 14,
56
+ "pneumonia": 8,
57
+ "psoriasis": 13,
58
+ "typhoid": 2,
59
+ "urinary tract infection": 16,
60
+ "varicose veins": 3
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.38.2",
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:17e1b0df3f52f37a79e74ca6305501fab862e8c775da293ffa06f17485568ed1
3
+ size 438020168
runs/Apr16_18-10-03_3ec5da41a045/events.out.tfevents.1713291004.3ec5da41a045.2195.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20f7923acc953dadb8e6869fd1c68613722323403a2aa2793534d21445e77099
3
+ size 6085
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:bebfca972d27f6034ea9b9bb8864e5cf1bcdf07313a5388f50a808e746e098f5
3
+ size 4920
vocab.txt ADDED
The diff for this file is too large to render. See raw diff