whatthexue commited on
Commit
221e3e2
·
1 Parent(s): 653b9f0

Update model

Browse files
config.json CHANGED
@@ -17,18 +17,30 @@
17
  "5": "B-LOC",
18
  "6": "I-LOC",
19
  "7": "B-MISC",
20
- "8": "I-MISC"
 
 
 
 
 
 
21
  },
22
  "initializer_range": 0.02,
23
  "label2id": {
 
24
  "B-LOC": 5,
 
25
  "B-MISC": 7,
26
  "B-ORG": 3,
27
  "B-PER": 1,
 
 
28
  "I-LOC": 6,
 
29
  "I-MISC": 8,
30
  "I-ORG": 4,
31
  "I-PER": 2,
 
32
  "O": 0
33
  },
34
  "max_position_embeddings": 512,
 
17
  "5": "B-LOC",
18
  "6": "I-LOC",
19
  "7": "B-MISC",
20
+ "8": "I-MISC",
21
+ "9": "B-JOB",
22
+ "10": "I-JOB",
23
+ "11": "B-MAJ",
24
+ "12": "I-MAJ",
25
+ "13": "B-SKILL",
26
+ "14": "I-SKILL"
27
  },
28
  "initializer_range": 0.02,
29
  "label2id": {
30
+ "B-JOB": 9,
31
  "B-LOC": 5,
32
+ "B-MAJ": 11,
33
  "B-MISC": 7,
34
  "B-ORG": 3,
35
  "B-PER": 1,
36
+ "B-SKILL": 13,
37
+ "I-JOB": 10,
38
  "I-LOC": 6,
39
+ "I-MAJ": 12,
40
  "I-MISC": 8,
41
  "I-ORG": 4,
42
  "I-PER": 2,
43
+ "I-SKILL": 14,
44
  "O": 0
45
  },
46
  "max_position_embeddings": 512,
onnx/model.onnx CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8cc12a65bfe82b488400218d14b1fdc25a961125eeba683e43ccf565e351b239
3
- size 260926485
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c67ea13f681422896c8b9276cca8635d8d3ecb73daf92ec8075636e002ef6ae8
3
+ size 260944941
onnx/model_quantized.onnx CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2495cd29cbb6548d0c0e1a84079ac52ec33642bb39bc90c50ab6ab8165564995
3
- size 65816665
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08c9a673ef7a86d0e7c8c591bb150bededbd6a6f92023dab2bcb46ec82b8293b
3
+ size 65821327
quantize_config.json CHANGED
@@ -4,28 +4,28 @@
4
  "per_model_config": {
5
  "model": {
6
  "op_types": [
7
- "Sub",
8
- "Shape",
9
- "Erf",
10
- "Expand",
11
  "Gather",
 
12
  "Pow",
13
- "Cast",
14
- "Slice",
15
- "ReduceMean",
16
- "MatMul",
17
- "Softmax",
18
- "Constant",
19
  "Div",
20
- "Transpose",
 
 
21
  "Unsqueeze",
 
 
22
  "Reshape",
23
- "Mul",
24
- "Concat",
25
- "Add",
26
- "Where",
27
  "Equal",
28
- "Sqrt"
 
 
 
 
 
 
29
  ],
30
  "weight_type": "QInt8"
31
  }
 
4
  "per_model_config": {
5
  "model": {
6
  "op_types": [
7
+ "Add",
8
+ "Concat",
9
+ "Sqrt",
 
10
  "Gather",
11
+ "Expand",
12
  "Pow",
 
 
 
 
 
 
13
  "Div",
14
+ "Shape",
15
+ "Sub",
16
+ "Softmax",
17
  "Unsqueeze",
18
+ "Transpose",
19
+ "ReduceMean",
20
  "Reshape",
 
 
 
 
21
  "Equal",
22
+ "Slice",
23
+ "Where",
24
+ "Erf",
25
+ "Cast",
26
+ "Mul",
27
+ "MatMul",
28
+ "Constant"
29
  ],
30
  "weight_type": "QInt8"
31
  }
tokenizer_config.json CHANGED
@@ -45,6 +45,7 @@
45
  "cls_token": "[CLS]",
46
  "do_basic_tokenize": false,
47
  "do_lower_case": false,
 
48
  "mask_token": "[MASK]",
49
  "max_length": 512,
50
  "model_max_length": 512,
 
45
  "cls_token": "[CLS]",
46
  "do_basic_tokenize": false,
47
  "do_lower_case": false,
48
+ "ignore_mismatched_sizes": true,
49
  "mask_token": "[MASK]",
50
  "max_length": 512,
51
  "model_max_length": 512,