openvino-ci commited on
Commit
ab8aed0
·
verified ·
1 Parent(s): 86ad43d

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +8 -20
README.md CHANGED
@@ -1,30 +1,18 @@
1
  ---
2
- license: apache-2.0
3
  tags:
4
  - image-classification
5
  - vision
6
- base_model:
7
- - timm/mobilenetv2_120d.ra_in1k
8
- base_model_relation: quantized
9
  ---
10
 
11
- # mobilenetv2_120d_ra_in1k-int8-ov
12
 
13
- - Model creator: [timm](https://huggingface.co/timm)
14
- - Original model: [timm/mobilenetv2_120d.ra_in1k](https://huggingface.co/timm/mobilenetv2_120d.ra_in1k)
15
 
16
  ## Description
17
 
18
- This is [timm/mobilenetv2_120d.ra_in1k](https://huggingface.co/timm/mobilenetv2_120d.ra_in1k) model converted to the [OpenVINO™ IR](https://docs.openvino.ai/2026/documentation/openvino-ir-format.html) (Intermediate Representation) format with weights compressed to INT8 by [NNCF](https://github.com/openvinotoolkit/nncf).
19
-
20
- ## Quantization Parameters
21
-
22
- Weight compression was performed using nncf.quantize with the following parameters:
23
-
24
- - **Quantization method**: Post-Training Quantization (PTQ)
25
- - **Precision**: INT8 for both weights and activations
26
-
27
- For more information on quantization, check the [OpenVINO model optimization guide](https://docs.openvino.ai/2026/openvino-workflow/model-optimization-guide/quantizing-models-post-training.html).
28
 
29
  ## Compatibility
30
 
@@ -51,7 +39,7 @@ from model_api.models import Model
51
  from model_api.visualizer import Visualizer
52
 
53
  # 1. Load model
54
- model = Model.from_pretrained("OpenVINO/mobilenetv2_120d_ra_in1k-int8-ov")
55
 
56
  # 2. Load image
57
  image = cv2.imread("image.jpg")
@@ -68,11 +56,11 @@ For more examples and possible optimizations, refer to the [Model API Documentat
68
 
69
  ## Limitations
70
 
71
- Check the original [model card](https://huggingface.co/timm/mobilenetv2_120d.ra_in1k) for limitations.
72
 
73
  ## Legal information
74
 
75
- The original model is distributed under the [apache-2.0](https://spdx.org/licenses/Apache-2.0.html) license. More details can be found in [timm/mobilenetv2_120d.ra_in1k](https://huggingface.co/timm/mobilenetv2_120d.ra_in1k)
76
 
77
  ## Disclaimer
78
 
 
1
  ---
2
+ license: bsd-3-clause
3
  tags:
4
  - image-classification
5
  - vision
 
 
 
6
  ---
7
 
8
+ # efficientnet_b7-fp16-ov
9
 
10
+ - Model creator: [torchvision](https://github.com/pytorch/vision)
11
+ - Original model: [efficientnet_b7](https://docs.pytorch.org/vision/main/models/generated/torchvision.models.efficientnet_b7.html)
12
 
13
  ## Description
14
 
15
+ This is a torchvision version of [efficientnet_b7](https://docs.pytorch.org/vision/main/models/generated/torchvision.models.efficientnet_b7.html) model converted to the [OpenVINO™ IR](https://docs.openvino.ai/2026/documentation/openvino-ir-format.html) (Intermediate Representation) format with weights compressed to FP16.
 
 
 
 
 
 
 
 
 
16
 
17
  ## Compatibility
18
 
 
39
  from model_api.visualizer import Visualizer
40
 
41
  # 1. Load model
42
+ model = Model.from_pretrained("OpenVINO/efficientnet_b7-fp16-ov")
43
 
44
  # 2. Load image
45
  image = cv2.imread("image.jpg")
 
56
 
57
  ## Limitations
58
 
59
+ Check the original [model implementation](https://github.com/pytorch/vision) for limitations.
60
 
61
  ## Legal information
62
 
63
+ The original model is distributed under the [bsd-3-clause](https://spdx.org/licenses/BSD-3-Clause.html) license. More details can be found in [https://github.com/pytorch/vision](https://github.com/pytorch/vision).
64
 
65
  ## Disclaimer
66