jarvisx17 commited on
Commit
7b09458
1 Parent(s): 3441180

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-uncased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForTokenClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "O",
13
+ "1": "B-Medicine",
14
+ "2": "I-Medicine",
15
+ "3": "B-MedicalCondition",
16
+ "4": "I-MedicalCondition",
17
+ "5": "B-Pathogen",
18
+ "6": "I-Pathogen"
19
+ },
20
+ "initializer_range": 0.02,
21
+ "label2id": {
22
+ "B-MedicalCondition": 3,
23
+ "B-Medicine": 1,
24
+ "B-Pathogen": 5,
25
+ "I-MedicalCondition": 4,
26
+ "I-Medicine": 2,
27
+ "I-Pathogen": 6,
28
+ "O": 0
29
+ },
30
+ "max_position_embeddings": 512,
31
+ "model_type": "distilbert",
32
+ "n_heads": 12,
33
+ "n_layers": 6,
34
+ "pad_token_id": 0,
35
+ "qa_dropout": 0.1,
36
+ "seq_classif_dropout": 0.2,
37
+ "sinusoidal_pos_embds": false,
38
+ "tie_weights_": true,
39
+ "torch_dtype": "float32",
40
+ "transformers_version": "4.27.3",
41
+ "vocab_size": 30522
42
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:862a4d3e14db11200ee72f0751652aa589312cd753c5c6699c05cd6640b35c6a
3
+ size 265506469
runs/Mar24_11-19-35_2edf5c9fd780/1679656781.076915/events.out.tfevents.1679656781.2edf5c9fd780.118.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:15acb0c7061f8bb252f290f4dbe2585ce03708c4ff0bde47022ece1f55341d59
3
+ size 5757
runs/Mar24_11-19-35_2edf5c9fd780/events.out.tfevents.1679656781.2edf5c9fd780.118.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04413c9eb62589ed967f1e9b543c654ea47639dc19ec1ab0e02b09def9b27a72
3
+ size 4609
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,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_lower_case": true,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "pad_token": "[PAD]",
7
+ "sep_token": "[SEP]",
8
+ "special_tokens_map_file": null,
9
+ "strip_accents": null,
10
+ "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "DistilBertTokenizer",
12
+ "unk_token": "[UNK]"
13
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ec7b9055246f94777f590d3df6b680f171aa2d26057a5496aa7c345b61e5e82
3
+ size 3579
vocab.txt ADDED
The diff for this file is too large to render. See raw diff