initial commit
Browse files- config.json +20 -0
- pytorch_model.bin +3 -0
- results.txt +7 -0
- special_tokens_map.json +1 -0
- tokenizer.json +0 -0
- tokenizer_config.json +1 -0
- vocab.txt +0 -0
config.json
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"attention_probs_dropout_prob": 0.1,
|
3 |
+
"classifier_dropout": null,
|
4 |
+
"hidden_act": "gelu",
|
5 |
+
"hidden_dropout_prob": 0.1,
|
6 |
+
"hidden_size": 768,
|
7 |
+
"initializer_range": 0.02,
|
8 |
+
"intermediate_size": 3072,
|
9 |
+
"layer_norm_eps": 1e-12,
|
10 |
+
"max_position_embeddings": 512,
|
11 |
+
"model_type": "bert",
|
12 |
+
"num_attention_heads": 12,
|
13 |
+
"num_hidden_layers": 12,
|
14 |
+
"pad_token_id": 0,
|
15 |
+
"position_embedding_type": "absolute",
|
16 |
+
"transformers_version": "4.11.3",
|
17 |
+
"type_vocab_size": 2,
|
18 |
+
"use_cache": true,
|
19 |
+
"vocab_size": 31090
|
20 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f98c3b9cf036cb983b8cb62ea9673a69f59c212d2de981a882c876d0601fe08a
|
3 |
+
size 440004077
|
results.txt
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
epoch -1 (before training): {'mean_average_precision_at_r': 0.1717016948291418, 'precision_at_1': 0.9052984775641025, 'r_precision': 0.24771769612667782}
|
2 |
+
epoch 0: {'mean_average_precision_at_r': 0.9145767187131235, 'precision_at_1': 0.9973457532051282, 'r_precision': 0.9218415775216084}
|
3 |
+
epoch 1: {'mean_average_precision_at_r': 0.9328308864696903, 'precision_at_1': 0.9977463942307693, 'r_precision': 0.9374125501176045}
|
4 |
+
epoch 2: {'mean_average_precision_at_r': 0.945318116542741, 'precision_at_1': 0.9985476762820513, 'r_precision': 0.9490188145214213}
|
5 |
+
epoch 3: {'mean_average_precision_at_r': 0.9443299354752162, 'precision_at_1': 0.9988982371794872, 'r_precision': 0.9473097575204369}
|
6 |
+
epoch 4: {'mean_average_precision_at_r': 0.946282748566647, 'precision_at_1': 0.9988982371794872, 'r_precision': 0.9488600018943666}
|
7 |
+
best epoch: 4
|
special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"do_lower_case": true, "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, "name_or_path": "allenai/scibert_scivocab_uncased", "do_basic_tokenize": true, "never_split": null, "tokenizer_class": "BertTokenizer"}
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|