Xenova HF staff commited on
Commit
9cb4693
·
1 Parent(s): 325f641

Upload folder using huggingface_hub

Browse files
onnx/text_model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50d6a78d6f7e5dfdc6cfc12cb8509111654b83bec362721e62ae16e7326b8f03
3
+ size 441446856
onnx/text_model_quantized.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1d872215c9286370009e52cdcc81f6536b2bf2fbd1a77f6cad49696305f6053
3
+ size 110775276
onnx/vision_model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed2785573e40c614d56c70b2d4578198cae1a9b652367cead9ea7da2aa887735
3
+ size 344199011
onnx/vision_model_quantized.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0698645bc7ebd966d52cb454f3904d26b599ec7999ad7299e9d5eb887d4440a
3
+ size 87581209
quantize_config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "per_channel": true,
3
+ "reduce_range": true,
4
+ "per_model_config": {
5
+ "text_model": {
6
+ "op_types": [
7
+ "Softmax",
8
+ "Shape",
9
+ "Erf",
10
+ "Transpose",
11
+ "ConstantOfShape",
12
+ "ReduceSum",
13
+ "Equal",
14
+ "Where",
15
+ "Div",
16
+ "ReduceMean",
17
+ "Add",
18
+ "Concat",
19
+ "Mul",
20
+ "Slice",
21
+ "Constant",
22
+ "Gather",
23
+ "MatMul",
24
+ "Sub",
25
+ "Pow",
26
+ "Cast",
27
+ "Sqrt",
28
+ "Expand",
29
+ "Reshape",
30
+ "Unsqueeze"
31
+ ],
32
+ "weight_type": "QInt8"
33
+ },
34
+ "vision_model": {
35
+ "op_types": [
36
+ "Softmax",
37
+ "Shape",
38
+ "Erf",
39
+ "Transpose",
40
+ "ConstantOfShape",
41
+ "Equal",
42
+ "Where",
43
+ "Div",
44
+ "ReduceMean",
45
+ "Add",
46
+ "Concat",
47
+ "Slice",
48
+ "Mul",
49
+ "Constant",
50
+ "Gather",
51
+ "MatMul",
52
+ "Sub",
53
+ "Pow",
54
+ "Cast",
55
+ "Sqrt",
56
+ "Conv",
57
+ "Expand",
58
+ "Reshape"
59
+ ],
60
+ "weight_type": "QUInt8"
61
+ }
62
+ }
63
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
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": true,
48
+ "mask_token": "[MASK]",
49
+ "model_max_length": 1000000000000000019884624838656,
50
+ "never_split": null,
51
+ "pad_token": "[PAD]",
52
+ "sep_token": "[SEP]",
53
+ "strip_accents": null,
54
+ "tokenize_chinese_chars": true,
55
+ "tokenizer_class": "BertTokenizer",
56
+ "unk_token": "[UNK]"
57
+ }
vocab.txt ADDED
The diff for this file is too large to render. See raw diff