Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +81 -0
- metadata.yaml +102 -0
- yolo11l.bin +3 -0
- yolo11l.xml +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
*.gif filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: agpl-3.0
|
| 3 |
+
tags:
|
| 4 |
+
- object-detection
|
| 5 |
+
- vision
|
| 6 |
+
base_model:
|
| 7 |
+
- Ultralytics/YOLO11
|
| 8 |
+
base_model_relation: quantized
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# YOLO11l-int8-ov
|
| 12 |
+
|
| 13 |
+
- Model creator: [Ultralytics](https://huggingface.co/Ultralytics)
|
| 14 |
+
- Original model: [Ultralytics/YOLO11](https://huggingface.co/Ultralytics/YOLO11)
|
| 15 |
+
|
| 16 |
+
## Description
|
| 17 |
+
|
| 18 |
+
This is [Ultralytics/YOLO11](https://huggingface.co/Ultralytics/YOLO11) 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 |
+
This model was quantized using **Post-Training Quantization (PTQ)** with the following configuration:
|
| 23 |
+
|
| 24 |
+
- **Quantization method**: Post-Training Quantization (PTQ)
|
| 25 |
+
- **Precision**: INT8 for both weights and activations
|
| 26 |
+
- **Calibration dataset**: COCO128 (128 images from COCO dataset)
|
| 27 |
+
- **Framework**: Ultralytics with OpenVINO export
|
| 28 |
+
|
| 29 |
+
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).
|
| 30 |
+
|
| 31 |
+
## Compatibility
|
| 32 |
+
|
| 33 |
+
The provided OpenVINO™ IR model is compatible with:
|
| 34 |
+
|
| 35 |
+
- OpenVINO version 2026.1.0 and higher
|
| 36 |
+
- Model API 0.4.0 and higher
|
| 37 |
+
|
| 38 |
+
## Running Model Inference with [Model API](https://github.com/open-edge-platform/model_api)
|
| 39 |
+
|
| 40 |
+
1. Install required packages:
|
| 41 |
+
|
| 42 |
+
```sh
|
| 43 |
+
pip install openvino-model-api[huggingface]
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
<!-- markdownlint-disable MD029 -->
|
| 47 |
+
|
| 48 |
+
2. Run model inference:
|
| 49 |
+
|
| 50 |
+
```python
|
| 51 |
+
import cv2
|
| 52 |
+
from model_api.models import Model
|
| 53 |
+
from model_api.visualizer import Visualizer
|
| 54 |
+
|
| 55 |
+
# 1. Load model
|
| 56 |
+
model = Model.from_pretrained("OpenVINO/YOLO11l-int8-ov")
|
| 57 |
+
|
| 58 |
+
# 2. Load image
|
| 59 |
+
image = cv2.imread("image.jpg")
|
| 60 |
+
|
| 61 |
+
# 3. Run inference
|
| 62 |
+
result = model(image)
|
| 63 |
+
|
| 64 |
+
# 4. Visualize and save results
|
| 65 |
+
vis = Visualizer().render(image, result)
|
| 66 |
+
cv2.imwrite("output.jpg", vis)
|
| 67 |
+
```
|
| 68 |
+
|
| 69 |
+
For more examples and possible optimizations, refer to the [Model API Documentation](https://open-edge-platform.github.io/model_api/latest/).
|
| 70 |
+
|
| 71 |
+
## Limitations
|
| 72 |
+
|
| 73 |
+
Check the original [model card](https://huggingface.co/Ultralytics/YOLO11) for limitations.
|
| 74 |
+
|
| 75 |
+
## Legal information
|
| 76 |
+
|
| 77 |
+
The original model is distributed under [GNU Affero General Public License v3.0](https://choosealicense.com/licenses/agpl-3.0/) license. More details can be found in [Ultralytics/YOLO11](https://huggingface.co/Ultralytics/YOLO11).
|
| 78 |
+
|
| 79 |
+
## Disclaimer
|
| 80 |
+
|
| 81 |
+
Intel is committed to respecting human rights and avoiding causing or contributing to adverse impacts on human rights. See [Intel’s Global Human Rights Principles](https://www.intel.com/content/dam/www/central-libraries/us/en/documents/policy-human-rights.pdf). Intel’s products and software are intended only to be used in applications that do not cause or contribute to adverse impacts on human rights.
|
metadata.yaml
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
description: Ultralytics YOLO11l model trained on /ultralytics/ultralytics/cfg/datasets/coco.yaml
|
| 2 |
+
author: Ultralytics
|
| 3 |
+
date: '2026-04-14T13:53:42.168105'
|
| 4 |
+
version: 8.4.37
|
| 5 |
+
license: AGPL-3.0 License (https://ultralytics.com/license)
|
| 6 |
+
docs: https://docs.ultralytics.com
|
| 7 |
+
stride: 32
|
| 8 |
+
task: detect
|
| 9 |
+
batch: 1
|
| 10 |
+
imgsz:
|
| 11 |
+
- 640
|
| 12 |
+
- 640
|
| 13 |
+
names:
|
| 14 |
+
0: person
|
| 15 |
+
1: bicycle
|
| 16 |
+
2: car
|
| 17 |
+
3: motorcycle
|
| 18 |
+
4: airplane
|
| 19 |
+
5: bus
|
| 20 |
+
6: train
|
| 21 |
+
7: truck
|
| 22 |
+
8: boat
|
| 23 |
+
9: traffic light
|
| 24 |
+
10: fire hydrant
|
| 25 |
+
11: stop sign
|
| 26 |
+
12: parking meter
|
| 27 |
+
13: bench
|
| 28 |
+
14: bird
|
| 29 |
+
15: cat
|
| 30 |
+
16: dog
|
| 31 |
+
17: horse
|
| 32 |
+
18: sheep
|
| 33 |
+
19: cow
|
| 34 |
+
20: elephant
|
| 35 |
+
21: bear
|
| 36 |
+
22: zebra
|
| 37 |
+
23: giraffe
|
| 38 |
+
24: backpack
|
| 39 |
+
25: umbrella
|
| 40 |
+
26: handbag
|
| 41 |
+
27: tie
|
| 42 |
+
28: suitcase
|
| 43 |
+
29: frisbee
|
| 44 |
+
30: skis
|
| 45 |
+
31: snowboard
|
| 46 |
+
32: sports ball
|
| 47 |
+
33: kite
|
| 48 |
+
34: baseball bat
|
| 49 |
+
35: baseball glove
|
| 50 |
+
36: skateboard
|
| 51 |
+
37: surfboard
|
| 52 |
+
38: tennis racket
|
| 53 |
+
39: bottle
|
| 54 |
+
40: wine glass
|
| 55 |
+
41: cup
|
| 56 |
+
42: fork
|
| 57 |
+
43: knife
|
| 58 |
+
44: spoon
|
| 59 |
+
45: bowl
|
| 60 |
+
46: banana
|
| 61 |
+
47: apple
|
| 62 |
+
48: sandwich
|
| 63 |
+
49: orange
|
| 64 |
+
50: broccoli
|
| 65 |
+
51: carrot
|
| 66 |
+
52: hot dog
|
| 67 |
+
53: pizza
|
| 68 |
+
54: donut
|
| 69 |
+
55: cake
|
| 70 |
+
56: chair
|
| 71 |
+
57: couch
|
| 72 |
+
58: potted plant
|
| 73 |
+
59: bed
|
| 74 |
+
60: dining table
|
| 75 |
+
61: toilet
|
| 76 |
+
62: tv
|
| 77 |
+
63: laptop
|
| 78 |
+
64: mouse
|
| 79 |
+
65: remote
|
| 80 |
+
66: keyboard
|
| 81 |
+
67: cell phone
|
| 82 |
+
68: microwave
|
| 83 |
+
69: oven
|
| 84 |
+
70: toaster
|
| 85 |
+
71: sink
|
| 86 |
+
72: refrigerator
|
| 87 |
+
73: book
|
| 88 |
+
74: clock
|
| 89 |
+
75: vase
|
| 90 |
+
76: scissors
|
| 91 |
+
77: teddy bear
|
| 92 |
+
78: hair drier
|
| 93 |
+
79: toothbrush
|
| 94 |
+
args:
|
| 95 |
+
batch: 1
|
| 96 |
+
fraction: 1.0
|
| 97 |
+
half: false
|
| 98 |
+
int8: true
|
| 99 |
+
dynamic: false
|
| 100 |
+
nms: false
|
| 101 |
+
channels: 3
|
| 102 |
+
end2end: false
|
yolo11l.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7b7e26b29fadfe0a9454e9de86208b698ec5eda689d796bca752bf2b84f0900
|
| 3 |
+
size 25670520
|
yolo11l.xml
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|