siddharthtumre commited on
Commit
f4136ec
1 Parent(s): f17f6a6

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "allenai/scibert_scivocab_uncased",
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-DNA",
14
+ "10": "I-protein",
15
+ "2": "I-DNA",
16
+ "3": "B-RNA",
17
+ "4": "I-RNA",
18
+ "5": "B-cell_line",
19
+ "6": "I-cell_line",
20
+ "7": "B-cell_type",
21
+ "8": "I-cell_type",
22
+ "9": "B-protein"
23
+ },
24
+ "initializer_range": 0.02,
25
+ "intermediate_size": 3072,
26
+ "label2id": {
27
+ "B-DNA": "1",
28
+ "B-RNA": "3",
29
+ "B-cell_line": "5",
30
+ "B-cell_type": "7",
31
+ "B-protein": "9",
32
+ "I-DNA": "2",
33
+ "I-RNA": "4",
34
+ "I-cell_line": "6",
35
+ "I-cell_type": "8",
36
+ "I-protein": "10",
37
+ "O": "0"
38
+ },
39
+ "layer_norm_eps": 1e-12,
40
+ "max_position_embeddings": 512,
41
+ "model_type": "bert",
42
+ "num_attention_heads": 12,
43
+ "num_hidden_layers": 12,
44
+ "pad_token_id": 0,
45
+ "position_embedding_type": "absolute",
46
+ "torch_dtype": "float32",
47
+ "transformers_version": "4.21.1",
48
+ "type_vocab_size": 2,
49
+ "use_cache": true,
50
+ "vocab_size": 31090
51
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6897f62ae68af4172f1b1def345a1fd11b01640fce7036f483d4c3b3d47e9bd5
3
+ size 437415729
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,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_basic_tokenize": true,
4
+ "do_lower_case": true,
5
+ "mask_token": "[MASK]",
6
+ "name_or_path": "allenai/scibert_scivocab_uncased",
7
+ "never_split": null,
8
+ "pad_token": "[PAD]",
9
+ "sep_token": "[SEP]",
10
+ "special_tokens_map_file": null,
11
+ "strip_accents": null,
12
+ "tokenize_chinese_chars": true,
13
+ "tokenizer_class": "BertTokenizer",
14
+ "unk_token": "[UNK]"
15
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:619fded8fdfb48c2ecce0ab7d918aa1950607568382754944b35e36ae67e5e9f
3
+ size 3375
vocab.txt ADDED
The diff for this file is too large to render. See raw diff