hasan
commited on
Commit
•
9d04392
1
Parent(s):
1609e70
EstBERT_UPOS_128 commit by Hasan
Browse files- config.json +55 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +1 -0
- tokenizer_config.json +1 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
config.json
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"BertForTokenClassification"
|
4 |
+
],
|
5 |
+
"attention_probs_dropout_prob": 0.1,
|
6 |
+
"hidden_act": "gelu",
|
7 |
+
"hidden_dropout_prob": 0.1,
|
8 |
+
"hidden_size": 768,
|
9 |
+
"id2label": {
|
10 |
+
"0": "ADJ",
|
11 |
+
"1": "ADP",
|
12 |
+
"10": "PROPN",
|
13 |
+
"11": "PUNCT",
|
14 |
+
"12": "SCONJ",
|
15 |
+
"13": "SYM",
|
16 |
+
"14": "VERB",
|
17 |
+
"15": "X",
|
18 |
+
"2": "ADV",
|
19 |
+
"3": "AUX",
|
20 |
+
"4": "CCONJ",
|
21 |
+
"5": "DET",
|
22 |
+
"6": "INTJ",
|
23 |
+
"7": "NOUN",
|
24 |
+
"8": "NUM",
|
25 |
+
"9": "PRON"
|
26 |
+
},
|
27 |
+
"initializer_range": 0.02,
|
28 |
+
"intermediate_size": 3072,
|
29 |
+
"label2id": {
|
30 |
+
"ADJ": 0,
|
31 |
+
"ADP": 1,
|
32 |
+
"ADV": 2,
|
33 |
+
"AUX": 3,
|
34 |
+
"CCONJ": 4,
|
35 |
+
"DET": 5,
|
36 |
+
"INTJ": 6,
|
37 |
+
"NOUN": 7,
|
38 |
+
"NUM": 8,
|
39 |
+
"PRON": 9,
|
40 |
+
"PROPN": 10,
|
41 |
+
"PUNCT": 11,
|
42 |
+
"SCONJ": 12,
|
43 |
+
"SYM": 13,
|
44 |
+
"VERB": 14,
|
45 |
+
"X": 15
|
46 |
+
},
|
47 |
+
"layer_norm_eps": 1e-12,
|
48 |
+
"max_position_embeddings": 512,
|
49 |
+
"model_type": "bert",
|
50 |
+
"num_attention_heads": 12,
|
51 |
+
"num_hidden_layers": 12,
|
52 |
+
"pad_token_id": 0,
|
53 |
+
"type_vocab_size": 2,
|
54 |
+
"vocab_size": 50000
|
55 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3706e5a3e14aff4db53436c9c3eb7ba9a235ea04f9fb5c07bd7aa3acfd059d42
|
3 |
+
size 497864867
|
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_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"do_lower_case": false}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2ec4e82e0457cdc0013148b614877135147412d31b8f916a4eaae3ad682b336a
|
3 |
+
size 1247
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|