Go Inoue
commited on
Commit
·
afa47fb
1
Parent(s):
7a0b78c
Add model files
Browse files- config.json +90 -0
- eval_results.txt +8 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +1 -0
- test_predictions.txt +0 -0
- test_results.txt +8 -0
- tf_model.h5 +3 -0
- tokenizer_config.json +1 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
config.json
ADDED
@@ -0,0 +1,90 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"BertForTokenClassification"
|
4 |
+
],
|
5 |
+
"attention_probs_dropout_prob": 0.1,
|
6 |
+
"gradient_checkpointing": false,
|
7 |
+
"hidden_act": "gelu",
|
8 |
+
"hidden_dropout_prob": 0.1,
|
9 |
+
"hidden_size": 768,
|
10 |
+
"id2label": {
|
11 |
+
"0": "abbrev",
|
12 |
+
"1": "adj",
|
13 |
+
"2": "adj_comp",
|
14 |
+
"3": "adj_num",
|
15 |
+
"4": "adv",
|
16 |
+
"5": "adv_interrog",
|
17 |
+
"6": "adv_rel",
|
18 |
+
"7": "conj",
|
19 |
+
"8": "conj_sub",
|
20 |
+
"9": "digit",
|
21 |
+
"10": "interj",
|
22 |
+
"11": "noun",
|
23 |
+
"12": "noun_num",
|
24 |
+
"13": "noun_prop",
|
25 |
+
"14": "noun_quant",
|
26 |
+
"15": "part",
|
27 |
+
"16": "part_det",
|
28 |
+
"17": "part_focus",
|
29 |
+
"18": "part_fut",
|
30 |
+
"19": "part_interrog",
|
31 |
+
"20": "part_neg",
|
32 |
+
"21": "part_restrict",
|
33 |
+
"22": "part_verb",
|
34 |
+
"23": "part_voc",
|
35 |
+
"24": "prep",
|
36 |
+
"25": "pron",
|
37 |
+
"26": "pron_dem",
|
38 |
+
"27": "pron_exclam",
|
39 |
+
"28": "pron_interrog",
|
40 |
+
"29": "pron_rel",
|
41 |
+
"30": "punc",
|
42 |
+
"31": "verb",
|
43 |
+
"32": "verb_pseudo"
|
44 |
+
},
|
45 |
+
"initializer_range": 0.02,
|
46 |
+
"intermediate_size": 3072,
|
47 |
+
"label2id": {
|
48 |
+
"abbrev": 0,
|
49 |
+
"adj": 1,
|
50 |
+
"adj_comp": 2,
|
51 |
+
"adj_num": 3,
|
52 |
+
"adv": 4,
|
53 |
+
"adv_interrog": 5,
|
54 |
+
"adv_rel": 6,
|
55 |
+
"conj": 7,
|
56 |
+
"conj_sub": 8,
|
57 |
+
"digit": 9,
|
58 |
+
"interj": 10,
|
59 |
+
"noun": 11,
|
60 |
+
"noun_num": 12,
|
61 |
+
"noun_prop": 13,
|
62 |
+
"noun_quant": 14,
|
63 |
+
"part": 15,
|
64 |
+
"part_det": 16,
|
65 |
+
"part_focus": 17,
|
66 |
+
"part_fut": 18,
|
67 |
+
"part_interrog": 19,
|
68 |
+
"part_neg": 20,
|
69 |
+
"part_restrict": 21,
|
70 |
+
"part_verb": 22,
|
71 |
+
"part_voc": 23,
|
72 |
+
"prep": 24,
|
73 |
+
"pron": 25,
|
74 |
+
"pron_dem": 26,
|
75 |
+
"pron_exclam": 27,
|
76 |
+
"pron_interrog": 28,
|
77 |
+
"pron_rel": 29,
|
78 |
+
"punc": 30,
|
79 |
+
"verb": 31,
|
80 |
+
"verb_pseudo": 32
|
81 |
+
},
|
82 |
+
"layer_norm_eps": 1e-12,
|
83 |
+
"max_position_embeddings": 512,
|
84 |
+
"model_type": "bert",
|
85 |
+
"num_attention_heads": 12,
|
86 |
+
"num_hidden_layers": 12,
|
87 |
+
"pad_token_id": 0,
|
88 |
+
"type_vocab_size": 2,
|
89 |
+
"vocab_size": 30000
|
90 |
+
}
|
eval_results.txt
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
eval_loss = 0.40482919967195957
|
2 |
+
eval_accuracy = 0.9329896907216495
|
3 |
+
eval_precision_micro = 0.9329896907216495
|
4 |
+
eval_recall_micro = 0.9329896907216495
|
5 |
+
eval_f1_micro = 0.9329896907216495
|
6 |
+
eval_precision_macro = 0.8159526627199191
|
7 |
+
eval_recall_macro = 0.820919127999272
|
8 |
+
eval_f1_macro = 0.8124637223477806
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0a64147b7024fcf1222d3fd583a449ab131f9b4aa31a34b4dabc63594fa45f15
|
3 |
+
size 436481449
|
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,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
eval_loss = 0.38994529334565986
|
2 |
+
eval_accuracy = 0.9362294761532447
|
3 |
+
eval_precision_micro = 0.9362294761532447
|
4 |
+
eval_recall_micro = 0.9362294761532447
|
5 |
+
eval_f1_micro = 0.9362294761532447
|
6 |
+
eval_precision_macro = 0.8458356303364576
|
7 |
+
eval_recall_macro = 0.8567624911843018
|
8 |
+
eval_f1_macro = 0.8488307729173594
|
tf_model.h5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e2287df38e8055bcded16bdb9a28b9a98c1e402bb94c08f746f7c1eb92acadbb
|
3 |
+
size 436592640
|
tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"do_lower_case": false, "special_tokens_map_file": null, "full_tokenizer_file": null}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c394e9e02e3eb9c66aa3a3348ba1294cb52dee4297bfe927afd731955cad6bc2
|
3 |
+
size 1355
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|