Shaltiel commited on
Commit
d189a1b
1 Parent(s): 94d8abf

Upload 6 files

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ vocab.txt filter=lfs diff=lfs merge=lfs -text
config.json ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "BertForJointParsing"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "classifier_dropout": null,
7
+ "do_lex": true,
8
+ "do_morph": true,
9
+ "do_ner": true,
10
+ "do_prefix": true,
11
+ "do_syntax": true,
12
+ "hidden_act": "gelu",
13
+ "hidden_dropout_prob": 0.1,
14
+ "hidden_size": 312,
15
+ "id2label": {
16
+ "0": "B-ANG",
17
+ "1": "B-DUC",
18
+ "2": "B-EVE",
19
+ "3": "B-FAC",
20
+ "4": "B-GPE",
21
+ "5": "B-LOC",
22
+ "6": "B-ORG",
23
+ "7": "B-PER",
24
+ "8": "B-WOA",
25
+ "9": "B-INFORMAL",
26
+ "10": "B-MISC",
27
+ "11": "B-TIMEX",
28
+ "12": "B-TTL",
29
+ "13": "I-DUC",
30
+ "14": "I-EVE",
31
+ "15": "I-FAC",
32
+ "16": "I-GPE",
33
+ "17": "I-LOC",
34
+ "18": "I-ORG",
35
+ "19": "I-PER",
36
+ "20": "I-WOA",
37
+ "21": "I-ANG",
38
+ "22": "I-INFORMAL",
39
+ "23": "I-MISC",
40
+ "24": "I-TIMEX",
41
+ "25": "I-TTL",
42
+ "26": "O"
43
+ },
44
+ "initializer_range": 0.02,
45
+ "intermediate_size": 1200,
46
+ "label2id": {
47
+ "B-ANG": 0,
48
+ "B-DUC": 1,
49
+ "B-EVE": 2,
50
+ "B-FAC": 3,
51
+ "B-GPE": 4,
52
+ "B-INFORMAL": 9,
53
+ "B-LOC": 5,
54
+ "B-MISC": 10,
55
+ "B-ORG": 6,
56
+ "B-PER": 7,
57
+ "B-TIMEX": 11,
58
+ "B-TTL": 12,
59
+ "B-WOA": 8,
60
+ "I-ANG": 21,
61
+ "I-DUC": 13,
62
+ "I-EVE": 14,
63
+ "I-FAC": 15,
64
+ "I-GPE": 16,
65
+ "I-INFORMAL": 22,
66
+ "I-LOC": 17,
67
+ "I-MISC": 23,
68
+ "I-ORG": 18,
69
+ "I-PER": 19,
70
+ "I-TIMEX": 24,
71
+ "I-TTL": 25,
72
+ "I-WOA": 20,
73
+ "O": 26
74
+ },
75
+ "layer_norm_eps": 1e-12,
76
+ "max_position_embeddings": 512,
77
+ "model_type": "bert",
78
+ "newmodern": true,
79
+ "num_attention_heads": 12,
80
+ "num_hidden_layers": 4,
81
+ "pad_token_id": 0,
82
+ "position_embedding_type": "absolute",
83
+ "syntax_head_size": 128,
84
+ "torch_dtype": "float32",
85
+ "transformers_version": "4.36.2",
86
+ "type_vocab_size": 2,
87
+ "use_cache": true,
88
+ "vocab_size": 128000
89
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e609f564d6d6237351ad098089b699bcedbeb9e4ac86e11c244c10c9cf1e05fd
3
+ size 180943460
special_tokens_map.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": {
3
+ "content": "[CLS]",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "mask_token": {
10
+ "content": "[MASK]",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "[PAD]",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "sep_token": {
24
+ "content": "[SEP]",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ },
30
+ "unk_token": {
31
+ "content": "[UNK]",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false
36
+ }
37
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[UNK]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "1": {
12
+ "content": "[CLS]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "2": {
20
+ "content": "[SEP]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "3": {
28
+ "content": "[PAD]",
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
+ "5": {
44
+ "content": "[BLANK]",
45
+ "lstrip": false,
46
+ "normalized": false,
47
+ "rstrip": false,
48
+ "single_word": false,
49
+ "special": true
50
+ }
51
+ },
52
+ "clean_up_tokenization_spaces": true,
53
+ "cls_token": "[CLS]",
54
+ "do_lower_case": true,
55
+ "mask_token": "[MASK]",
56
+ "model_max_length": 512,
57
+ "pad_token": "[PAD]",
58
+ "sep_token": "[SEP]",
59
+ "strip_accents": null,
60
+ "tokenize_chinese_chars": true,
61
+ "tokenizer_class": "BertTokenizer",
62
+ "unk_token": "[UNK]"
63
+ }
vocab.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0fb90bfa35244d26f0065d1fcd0b5becc3da3d44d616a7e2aacaf6320b9fa2d0
3
+ size 1500244