Upload folder using huggingface_hub
Browse files- config.json +0 -0
- onnx/model.onnx +3 -0
- onnx/model_quantized.onnx +3 -0
- preprocessor_config.json +23 -0
- quantize_config.json +43 -0
config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
onnx/model.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:28035f9c358683f0fe9ed983a8b2d7436dcca742b257b3e615c34b49db0c2ea5
|
| 3 |
+
size 470851322
|
onnx/model_quantized.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e79f5dd95beb5118cb905333ade3f68fea51aa89650a3b6d6b1465537ec4cf8
|
| 3 |
+
size 146353122
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_normalize": true,
|
| 3 |
+
"do_rescale": true,
|
| 4 |
+
"do_resize": true,
|
| 5 |
+
"feature_extractor_type": "ViTFeatureExtractor",
|
| 6 |
+
"image_mean": [
|
| 7 |
+
0.485,
|
| 8 |
+
0.456,
|
| 9 |
+
0.406
|
| 10 |
+
],
|
| 11 |
+
"image_processor_type": "ViTFeatureExtractor",
|
| 12 |
+
"image_std": [
|
| 13 |
+
0.229,
|
| 14 |
+
0.224,
|
| 15 |
+
0.225
|
| 16 |
+
],
|
| 17 |
+
"resample": 3,
|
| 18 |
+
"rescale_factor": 0.00392156862745098,
|
| 19 |
+
"size": {
|
| 20 |
+
"height": 384,
|
| 21 |
+
"width": 384
|
| 22 |
+
}
|
| 23 |
+
}
|
quantize_config.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"per_channel": true,
|
| 3 |
+
"reduce_range": true,
|
| 4 |
+
"per_model_config": {
|
| 5 |
+
"model": {
|
| 6 |
+
"op_types": [
|
| 7 |
+
"Not",
|
| 8 |
+
"MatMul",
|
| 9 |
+
"Where",
|
| 10 |
+
"Pad",
|
| 11 |
+
"Unsqueeze",
|
| 12 |
+
"Shape",
|
| 13 |
+
"ReduceMean",
|
| 14 |
+
"Sqrt",
|
| 15 |
+
"Sub",
|
| 16 |
+
"Mod",
|
| 17 |
+
"Concat",
|
| 18 |
+
"Equal",
|
| 19 |
+
"Mul",
|
| 20 |
+
"Div",
|
| 21 |
+
"Gather",
|
| 22 |
+
"Flatten",
|
| 23 |
+
"Softmax",
|
| 24 |
+
"ConstantOfShape",
|
| 25 |
+
"Erf",
|
| 26 |
+
"Transpose",
|
| 27 |
+
"Gemm",
|
| 28 |
+
"Range",
|
| 29 |
+
"GlobalAveragePool",
|
| 30 |
+
"Constant",
|
| 31 |
+
"Pow",
|
| 32 |
+
"Cast",
|
| 33 |
+
"Slice",
|
| 34 |
+
"Expand",
|
| 35 |
+
"ScatterND",
|
| 36 |
+
"Add",
|
| 37 |
+
"Reshape",
|
| 38 |
+
"Conv"
|
| 39 |
+
],
|
| 40 |
+
"weight_type": "QUInt8"
|
| 41 |
+
}
|
| 42 |
+
}
|
| 43 |
+
}
|