Brizape commited on
Commit
77dbef8
1 Parent(s): 9abf235

Training in progress, step 25

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext",
3
+ "architectures": [
4
+ "BertForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "hidden_size": 768,
11
+ "id2label": {
12
+ "0": "O",
13
+ "1": "B-Gene_protein",
14
+ "2": "I-Gene_protein",
15
+ "3": "B-DNA_Mutation",
16
+ "4": "I-DNA_Mutation",
17
+ "5": "B-DNA_modification",
18
+ "6": "I-DNA_modification",
19
+ "7": "B-locus",
20
+ "8": "I-locus",
21
+ "9": "B-Mutation",
22
+ "10": "I-Mutation",
23
+ "11": "B-dbSNP",
24
+ "12": "I-dbSNP",
25
+ "13": "B-Protein_Mutation",
26
+ "14": "I-Protein_Mutation",
27
+ "15": "B-RNA",
28
+ "16": "I-RNA",
29
+ "17": "B-RNA_Mutation",
30
+ "18": "I-RNA_Mutation"
31
+ },
32
+ "initializer_range": 0.02,
33
+ "intermediate_size": 3072,
34
+ "label2id": {
35
+ "B-DNA_Mutation": 3,
36
+ "B-DNA_modification": 5,
37
+ "B-Gene_protein": 1,
38
+ "B-Mutation": 9,
39
+ "B-Protein_Mutation": 13,
40
+ "B-RNA": 15,
41
+ "B-RNA_Mutation": 17,
42
+ "B-dbSNP": 11,
43
+ "B-locus": 7,
44
+ "I-DNA_Mutation": 4,
45
+ "I-DNA_modification": 6,
46
+ "I-Gene_protein": 2,
47
+ "I-Mutation": 10,
48
+ "I-Protein_Mutation": 14,
49
+ "I-RNA": 16,
50
+ "I-RNA_Mutation": 18,
51
+ "I-dbSNP": 12,
52
+ "I-locus": 8,
53
+ "O": 0
54
+ },
55
+ "layer_norm_eps": 1e-12,
56
+ "max_position_embeddings": 512,
57
+ "model_type": "bert",
58
+ "num_attention_heads": 12,
59
+ "num_hidden_layers": 12,
60
+ "pad_token_id": 0,
61
+ "position_embedding_type": "absolute",
62
+ "torch_dtype": "float32",
63
+ "transformers_version": "4.27.4",
64
+ "type_vocab_size": 2,
65
+ "use_cache": true,
66
+ "vocab_size": 30522
67
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e2b2e244e32d7ce8b615db1a3bcad64934b9f943b34f772748f9d852aa93eefc
3
+ size 435697197
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,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_basic_tokenize": true,
4
+ "do_lower_case": true,
5
+ "mask_token": "[MASK]",
6
+ "model_max_len": 512,
7
+ "model_max_length": 1000000000000000019884624838656,
8
+ "never_split": null,
9
+ "pad_token": "[PAD]",
10
+ "sep_token": "[SEP]",
11
+ "special_tokens_map_file": null,
12
+ "strip_accents": null,
13
+ "tokenize_chinese_chars": true,
14
+ "tokenizer_class": "BertTokenizer",
15
+ "trunction": true,
16
+ "unk_token": "[UNK]"
17
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c915f9d7bffcd1df7646700fe8f96bf929f0bd97d2f0afa9ed5c41382aba04b
3
+ size 3579
vocab.txt ADDED
The diff for this file is too large to render. See raw diff