whatthexue commited on
Commit
c1993cc
·
1 Parent(s): 49feace

add in quantize config json

Browse files
Files changed (1) hide show
  1. quantize_config.json +30 -0
quantize_config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "per_channel": true,
3
+ "reduce_range": true,
4
+ "per_model_config": {
5
+ "model": {
6
+ "op_types": [
7
+ "Gather",
8
+ "Reshape",
9
+ "Sqrt",
10
+ "Pow",
11
+ "Transpose",
12
+ "Add",
13
+ "Cast",
14
+ "Mul",
15
+ "Concat",
16
+ "Slice",
17
+ "Div",
18
+ "Shape",
19
+ "MatMul",
20
+ "Constant",
21
+ "Softmax",
22
+ "ReduceMean",
23
+ "Sub",
24
+ "Erf",
25
+ "Unsqueeze"
26
+ ],
27
+ "weight_type": "QInt8"
28
+ }
29
+ }
30
+ }