DunnBC22 commited on
Commit
3d0f161
·
1 Parent(s): 8dafb67

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-base-cased",
3
+ "architectures": [
4
+ "BertForTokenClassification"
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": "O",
14
+ "1": "B-DNA",
15
+ "2": "I-DNA",
16
+ "3": "B-protein",
17
+ "4": "I-protein",
18
+ "5": "B-cell_type",
19
+ "6": "I-cell_type",
20
+ "7": "B-cell_line",
21
+ "8": "I-cell_line",
22
+ "9": "B-RNA",
23
+ "10": "I-RNA"
24
+ },
25
+ "initializer_range": 0.02,
26
+ "intermediate_size": 3072,
27
+ "label2id": {
28
+ "B-DNA": 1,
29
+ "B-RNA": 9,
30
+ "B-cell_line": 7,
31
+ "B-cell_type": 5,
32
+ "B-protein": 3,
33
+ "I-DNA": 2,
34
+ "I-RNA": 10,
35
+ "I-cell_line": 8,
36
+ "I-cell_type": 6,
37
+ "I-protein": 4,
38
+ "O": 0
39
+ },
40
+ "layer_norm_eps": 1e-12,
41
+ "max_position_embeddings": 512,
42
+ "model_type": "bert",
43
+ "num_attention_heads": 12,
44
+ "num_hidden_layers": 12,
45
+ "pad_token_id": 0,
46
+ "position_embedding_type": "absolute",
47
+ "torch_dtype": "float32",
48
+ "transformers_version": "4.28.1",
49
+ "type_vocab_size": 2,
50
+ "use_cache": true,
51
+ "vocab_size": 28996
52
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1a1994c5839f795ba7bb72b1606340757aab569cf9c244f16a8fd5ecbe8aea8
3
+ size 430981869
runs/Jul03_23-31-49_Brians-Mac-mini.local/1688445114.175515/events.out.tfevents.1688445114.Brians-Mac-mini.local.10840.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d513459dbb9852b98c1b168ad335012f1ab3def86d296b4eb85d458e1dbab431
3
+ size 5952
runs/Jul03_23-31-49_Brians-Mac-mini.local/events.out.tfevents.1688445114.Brians-Mac-mini.local.10840.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a603e7aa1463ea9ddb85a7fb67c6efaa715b06fd24aabc9b8744f6f07db96e58
3
+ size 6761
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
+ "clean_up_tokenization_spaces": true,
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": false,
5
+ "mask_token": "[MASK]",
6
+ "model_max_length": 512,
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "strip_accents": null,
10
+ "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "BertTokenizer",
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:6a75056f6bcca43f9a228a6bb3ea713cd2920e18241b149522b00c051a46ba1d
3
+ size 3643
vocab.txt ADDED
The diff for this file is too large to render. See raw diff