zhiguoxu commited on
Commit
5c9187f
1 Parent(s): 75e47fb

Training completed!

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-base-chinese",
3
+ "architectures": [
4
+ "BertForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "directionality": "bidi",
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "id2label": {
13
+ "0": "O",
14
+ "1": "B-17-want",
15
+ "2": "I-17-want",
16
+ "3": "B-18-not_want",
17
+ "4": "I-18-not_want",
18
+ "5": "B-19-tone",
19
+ "6": "I-19-tone",
20
+ "7": "B-20-quantifier",
21
+ "8": "I-20-quantifier",
22
+ "9": "B-21-ma?",
23
+ "10": "I-21-ma?",
24
+ "11": "B-22-shop_de",
25
+ "12": "I-22-shop_de",
26
+ "13": "B-23-can_want",
27
+ "14": "I-23-can_want",
28
+ "15": "B-24-exist",
29
+ "16": "I-24-exist",
30
+ "17": "B-25-can_not_want",
31
+ "18": "I-25-can_not_want",
32
+ "19": "B-28-have",
33
+ "20": "I-28-have",
34
+ "21": "B-29-not_have",
35
+ "22": "I-29-not_have",
36
+ "23": "B-30-highest_price",
37
+ "24": "I-30-highest_price",
38
+ "25": "B-31-lowest_price",
39
+ "26": "I-31-lowest_price",
40
+ "27": "B-32-most_popular",
41
+ "28": "I-32-most_popular",
42
+ "29": "B-34-number",
43
+ "30": "I-34-number",
44
+ "31": "B-35-ignore",
45
+ "32": "I-35-ignore",
46
+ "33": "B-36-split",
47
+ "34": "I-36-split",
48
+ "35": "B-38-and",
49
+ "36": "I-38-and",
50
+ "37": "B-39-add",
51
+ "38": "I-39-add",
52
+ "39": "B-41-not_add",
53
+ "40": "I-41-not_add"
54
+ },
55
+ "initializer_range": 0.02,
56
+ "intermediate_size": 3072,
57
+ "label2id": {
58
+ "B-17-want": 1,
59
+ "B-18-not_want": 3,
60
+ "B-19-tone": 5,
61
+ "B-20-quantifier": 7,
62
+ "B-21-ma?": 9,
63
+ "B-22-shop_de": 11,
64
+ "B-23-can_want": 13,
65
+ "B-24-exist": 15,
66
+ "B-25-can_not_want": 17,
67
+ "B-28-have": 19,
68
+ "B-29-not_have": 21,
69
+ "B-30-highest_price": 23,
70
+ "B-31-lowest_price": 25,
71
+ "B-32-most_popular": 27,
72
+ "B-34-number": 29,
73
+ "B-35-ignore": 31,
74
+ "B-36-split": 33,
75
+ "B-38-and": 35,
76
+ "B-39-add": 37,
77
+ "B-41-not_add": 39,
78
+ "I-17-want": 2,
79
+ "I-18-not_want": 4,
80
+ "I-19-tone": 6,
81
+ "I-20-quantifier": 8,
82
+ "I-21-ma?": 10,
83
+ "I-22-shop_de": 12,
84
+ "I-23-can_want": 14,
85
+ "I-24-exist": 16,
86
+ "I-25-can_not_want": 18,
87
+ "I-28-have": 20,
88
+ "I-29-not_have": 22,
89
+ "I-30-highest_price": 24,
90
+ "I-31-lowest_price": 26,
91
+ "I-32-most_popular": 28,
92
+ "I-34-number": 30,
93
+ "I-35-ignore": 32,
94
+ "I-36-split": 34,
95
+ "I-38-and": 36,
96
+ "I-39-add": 38,
97
+ "I-41-not_add": 40,
98
+ "O": 0
99
+ },
100
+ "layer_norm_eps": 1e-12,
101
+ "max_position_embeddings": 512,
102
+ "model_type": "bert",
103
+ "num_attention_heads": 12,
104
+ "num_hidden_layers": 12,
105
+ "pad_token_id": 0,
106
+ "pooler_fc_size": 768,
107
+ "pooler_num_attention_heads": 12,
108
+ "pooler_num_fc_layers": 3,
109
+ "pooler_size_per_head": 128,
110
+ "pooler_type": "first_token_transform",
111
+ "position_embedding_type": "absolute",
112
+ "torch_dtype": "float32",
113
+ "transformers_version": "4.18.0",
114
+ "type_vocab_size": 2,
115
+ "use_cache": true,
116
+ "vocab_size": 21128
117
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:416e399779c48d31f315bbde0b9b0fc0acbd7a39404dcb08a7a2a297223650c1
3
+ size 406904753
runs/Nov13_23-28-41_uat/1668353338.1018262/events.out.tfevents.1668353338.uat.2658370.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71863f174a78a4d81f40deb93e9004196393eec6e8b403cb3578bcad9bfe3b32
3
+ size 4876
runs/Nov13_23-28-41_uat/events.out.tfevents.1668353338.uat.2658370.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f98096a3269b9a84716f4cd8ec76d6f4858627403acad2e97b7eb3578dd8c13
3
+ size 15230
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": false, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "bert-base-chinese", "tokenizer_class": "BertTokenizer"}
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9da0289627d4723f92bb13390bb1fb6e97acc98d51cc3d9d897704b520fc46c2
3
+ size 3055
vocab.txt ADDED
The diff for this file is too large to render. See raw diff