mobashgr
commited on
Commit
•
c9030b6
0
Parent(s):
intial commit
Browse files- config.json +41 -0
- eval_results.txt +16 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +1 -0
- test_predictions.txt +0 -0
- test_results.txt +15 -0
- tokenizer_config.json +1 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
config.json
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "allenai/scibert_scivocab_uncased",
|
3 |
+
"adapters": {
|
4 |
+
"adapters": {},
|
5 |
+
"config_map": {},
|
6 |
+
"fusion_config_map": {},
|
7 |
+
"fusions": {}
|
8 |
+
},
|
9 |
+
"architectures": [
|
10 |
+
"BertForTokenClassification"
|
11 |
+
],
|
12 |
+
"attention_probs_dropout_prob": 0.1,
|
13 |
+
"classifier_dropout": null,
|
14 |
+
"hidden_act": "gelu",
|
15 |
+
"hidden_dropout_prob": 0.1,
|
16 |
+
"hidden_size": 768,
|
17 |
+
"id2label": {
|
18 |
+
"0": "B-bio",
|
19 |
+
"1": "I-bio",
|
20 |
+
"2": "O"
|
21 |
+
},
|
22 |
+
"initializer_range": 0.02,
|
23 |
+
"intermediate_size": 3072,
|
24 |
+
"label2id": {
|
25 |
+
"B-bio": 0,
|
26 |
+
"I-bio": 1,
|
27 |
+
"O": 2
|
28 |
+
},
|
29 |
+
"layer_norm_eps": 1e-12,
|
30 |
+
"max_position_embeddings": 512,
|
31 |
+
"model_type": "bert",
|
32 |
+
"num_attention_heads": 12,
|
33 |
+
"num_hidden_layers": 12,
|
34 |
+
"pad_token_id": 0,
|
35 |
+
"position_embedding_type": "absolute",
|
36 |
+
"torch_dtype": "float32",
|
37 |
+
"transformers_version": "4.11.3",
|
38 |
+
"type_vocab_size": 2,
|
39 |
+
"use_cache": true,
|
40 |
+
"vocab_size": 31090
|
41 |
+
}
|
eval_results.txt
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
eval_loss = 1.8682520021684468e-05
|
2 |
+
eval_precision = 1.0
|
3 |
+
eval_recall = 1.0
|
4 |
+
eval_f1 = 1.0
|
5 |
+
eval_classification report = precision recall f1-score support
|
6 |
+
|
7 |
+
bio 1.00 1.00 1.00 787
|
8 |
+
|
9 |
+
micro avg 1.00 1.00 1.00 787
|
10 |
+
macro avg 1.00 1.00 1.00 787
|
11 |
+
weighted avg 1.00 1.00 1.00 787
|
12 |
+
|
13 |
+
eval_runtime = 15.3196
|
14 |
+
eval_samples_per_second = 60.25
|
15 |
+
eval_steps_per_second = 7.572
|
16 |
+
epoch = 13.0
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fdf4147e0bc2208f2ce5627d69d7d24b663288cc1deadfcfbea657d06deb96ef
|
3 |
+
size 437407601
|
special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|
test_predictions.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
test_results.txt
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
test_loss = 0.07469259202480316
|
2 |
+
test_precision = 0.8638211382113821
|
3 |
+
test_recall = 0.8854166666666666
|
4 |
+
test_f1 = 0.874485596707819
|
5 |
+
test_classification report = precision recall f1-score support
|
6 |
+
|
7 |
+
bio 0.86 0.89 0.87 960
|
8 |
+
|
9 |
+
micro avg 0.86 0.89 0.87 960
|
10 |
+
macro avg 0.86 0.89 0.87 960
|
11 |
+
weighted avg 0.86 0.89 0.87 960
|
12 |
+
|
13 |
+
test_runtime = 15.5155
|
14 |
+
test_samples_per_second = 60.714
|
15 |
+
test_steps_per_second = 7.605
|
tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"do_lower_case": true, "do_basic_tokenize": true, "never_split": null, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "special_tokens_map_file": null, "tokenizer_file": null, "name_or_path": "allenai/scibert_scivocab_uncased", "tokenizer_class": "BertTokenizer"}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c806653979635319952b9e7bd393ee005232045e3d93cf367a71dc98e45f6566
|
3 |
+
size 2927
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|