lilyyellow commited on
Commit
6966f4b
·
verified ·
1 Parent(s): 412f474

Training in progress, step 5780

Browse files
config.json ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "NlpHUST/ner-vietnamese-electra-base",
3
+ "architectures": [
4
+ "ElectraForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "embedding_size": 768,
9
+ "finetuning_task": "ner",
10
+ "hidden_act": "gelu",
11
+ "hidden_dropout_prob": 0.1,
12
+ "hidden_size": 768,
13
+ "id2label": {
14
+ "0": "I-LOCATION",
15
+ "1": "I-DISEASE",
16
+ "2": "B-AGE",
17
+ "3": "I-ROLE",
18
+ "4": "B-ROLE",
19
+ "5": "I-DATETIME",
20
+ "6": "B-TRANSPORTATION",
21
+ "7": "O",
22
+ "8": "B-DISEASE",
23
+ "9": "I-PHONE",
24
+ "10": "B-GENDER",
25
+ "11": "I-PRODUCT",
26
+ "12": "I-QUANTITY",
27
+ "13": "B-DATETIME",
28
+ "14": "B-QUANTITY",
29
+ "15": "I-EMAIL",
30
+ "16": "B-EMAIL",
31
+ "17": "B-LAW",
32
+ "18": "I-GENDER",
33
+ "19": "I-AGE",
34
+ "20": "I-ORGANIZATION",
35
+ "21": "I-EVENT",
36
+ "22": "B-PRODUCT",
37
+ "23": "I-LAW",
38
+ "24": "I-URL",
39
+ "25": "B-LOCATION",
40
+ "26": "B-EVENT",
41
+ "27": "B-URL",
42
+ "28": "I-TRANSPORTATION",
43
+ "29": "B-PERSON",
44
+ "30": "B-PHONE",
45
+ "31": "B-ORGANIZATION",
46
+ "32": "I-PERSON"
47
+ },
48
+ "initializer_range": 0.02,
49
+ "intermediate_size": 3072,
50
+ "label2id": {
51
+ "B-AGE": 2,
52
+ "B-DATETIME": 13,
53
+ "B-DISEASE": 8,
54
+ "B-EMAIL": 16,
55
+ "B-EVENT": 26,
56
+ "B-GENDER": 10,
57
+ "B-LAW": 17,
58
+ "B-LOCATION": 25,
59
+ "B-ORGANIZATION": 31,
60
+ "B-PERSON": 29,
61
+ "B-PHONE": 30,
62
+ "B-PRODUCT": 22,
63
+ "B-QUANTITY": 14,
64
+ "B-ROLE": 4,
65
+ "B-TRANSPORTATION": 6,
66
+ "B-URL": 27,
67
+ "I-AGE": 19,
68
+ "I-DATETIME": 5,
69
+ "I-DISEASE": 1,
70
+ "I-EMAIL": 15,
71
+ "I-EVENT": 21,
72
+ "I-GENDER": 18,
73
+ "I-LAW": 23,
74
+ "I-LOCATION": 0,
75
+ "I-ORGANIZATION": 20,
76
+ "I-PERSON": 32,
77
+ "I-PHONE": 9,
78
+ "I-PRODUCT": 11,
79
+ "I-QUANTITY": 12,
80
+ "I-ROLE": 3,
81
+ "I-TRANSPORTATION": 28,
82
+ "I-URL": 24,
83
+ "O": 7
84
+ },
85
+ "layer_norm_eps": 1e-12,
86
+ "max_position_embeddings": 512,
87
+ "model_type": "electra",
88
+ "num_attention_heads": 12,
89
+ "num_hidden_layers": 12,
90
+ "pad_token_id": 0,
91
+ "position_embedding_type": "absolute",
92
+ "summary_activation": "gelu",
93
+ "summary_last_dropout": 0.1,
94
+ "summary_type": "first",
95
+ "summary_use_proj": true,
96
+ "torch_dtype": "float32",
97
+ "transformers_version": "4.41.2",
98
+ "type_vocab_size": 2,
99
+ "use_cache": true,
100
+ "vocab_size": 62000
101
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4dfb176bcd5b58b996fe0220ec808c897fe301648fc379e8c4c146b3fc8491e0
3
+ size 532392452
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,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "1": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "2": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "3": {
28
+ "content": "[SEP]",
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
+ },
44
+ "clean_up_tokenization_spaces": true,
45
+ "cls_token": "[CLS]",
46
+ "do_basic_tokenize": true,
47
+ "do_lower_case": false,
48
+ "mask_token": "[MASK]",
49
+ "max_length": 256,
50
+ "model_max_length": 1000000000000000019884624838656,
51
+ "never_split": null,
52
+ "pad_to_multiple_of": null,
53
+ "pad_token": "[PAD]",
54
+ "pad_token_type_id": 0,
55
+ "padding_side": "right",
56
+ "sep_token": "[SEP]",
57
+ "stride": 0,
58
+ "strip_accents": null,
59
+ "tokenize_chinese_chars": true,
60
+ "tokenizer_class": "ElectraTokenizer",
61
+ "truncation_side": "right",
62
+ "truncation_strategy": "longest_first",
63
+ "unk_token": "[UNK]"
64
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d89c6f407e1c9c36def48115a0e1d0fb47811eba563849ebe6b78eaad11d007f
3
+ size 5112
vocab.txt ADDED
The diff for this file is too large to render. See raw diff