judithrosell commited on
Commit
b643994
1 Parent(s): fabdc24

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "B-Ceramics_Glasses",
13
+ "1": "B-Composites_Layers_Coverings",
14
+ "2": "B-Copolymers_Blends",
15
+ "3": "B-Metals_Alloys",
16
+ "4": "B-Natural_Polymer",
17
+ "5": "B-Synthetic_Polymer",
18
+ "6": "B-Trade_Name_Biomat",
19
+ "7": "B-chemical_Material",
20
+ "8": "I-Ceramics_Glasses",
21
+ "9": "I-Composites_Layers_Coverings",
22
+ "10": "I-Copolymers_Blends",
23
+ "11": "I-Metals_Alloys",
24
+ "12": "I-Natural_Polymer",
25
+ "13": "I-Synthetic_Polymer",
26
+ "14": "I-Trade_Name_Biomat",
27
+ "15": "I-chemical_Material",
28
+ "16": "O"
29
+ },
30
+ "initializer_range": 0.02,
31
+ "intermediate_size": 3072,
32
+ "label2id": {
33
+ "B-Ceramics_Glasses": 0,
34
+ "B-Composites_Layers_Coverings": 1,
35
+ "B-Copolymers_Blends": 2,
36
+ "B-Metals_Alloys": 3,
37
+ "B-Natural_Polymer": 4,
38
+ "B-Synthetic_Polymer": 5,
39
+ "B-Trade_Name_Biomat": 6,
40
+ "B-chemical_Material": 7,
41
+ "I-Ceramics_Glasses": 8,
42
+ "I-Composites_Layers_Coverings": 9,
43
+ "I-Copolymers_Blends": 10,
44
+ "I-Metals_Alloys": 11,
45
+ "I-Natural_Polymer": 12,
46
+ "I-Synthetic_Polymer": 13,
47
+ "I-Trade_Name_Biomat": 14,
48
+ "I-chemical_Material": 15,
49
+ "O": 16
50
+ },
51
+ "layer_norm_eps": 1e-12,
52
+ "max_position_embeddings": 512,
53
+ "model_type": "bert",
54
+ "num_attention_heads": 12,
55
+ "num_hidden_layers": 12,
56
+ "pad_token_id": 0,
57
+ "position_embedding_type": "absolute",
58
+ "torch_dtype": "float32",
59
+ "transformers_version": "4.42.4",
60
+ "type_vocab_size": 2,
61
+ "use_cache": true,
62
+ "vocab_size": 30522
63
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca5804b10c264ea3327e3325473142793f4453ec87d4d711701041a5b2453e1f
3
+ size 435642228
runs/Aug29_23-09-52_589ce4859c78/events.out.tfevents.1724973018.589ce4859c78.964.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8015245ad700e7b091dfc9a6eb99278031f9dadf5db11a28d551755eb979fe5f
3
+ size 6413
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,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "1": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "2": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "3": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "4": {
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_basic_tokenize": true,
47
+ "do_lower_case": true,
48
+ "mask_token": "[MASK]",
49
+ "model_max_length": 1000000000000000019884624838656,
50
+ "never_split": null,
51
+ "pad_token": "[PAD]",
52
+ "sep_token": "[SEP]",
53
+ "strip_accents": null,
54
+ "tokenize_chinese_chars": true,
55
+ "tokenizer_class": "BertTokenizer",
56
+ "unk_token": "[UNK]"
57
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73df25f43f1922bf6a1c87ea4bf51561cc88f3d7690ebef91a3a86f21c94fb49
3
+ size 5112
vocab.txt ADDED
The diff for this file is too large to render. See raw diff