openvino-ci commited on
Commit
edb918a
·
verified ·
1 Parent(s): 88e4a87

Upload folder using huggingface_hub

Browse files
Files changed (5) hide show
  1. .gitattributes +1 -0
  2. README.md +70 -0
  3. metadata.yaml +102 -0
  4. yolo11x.bin +3 -0
  5. yolo11x.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,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: agpl-3.0
3
+ tags:
4
+ - object-detection
5
+ - vision
6
+ base_model:
7
+ - Ultralytics/YOLO11
8
+ base_model_relation: finetune
9
+ ---
10
+
11
+ # YOLO11x-fp16-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 FP16.
19
+
20
+ ## Compatibility
21
+
22
+ The provided OpenVINO™ IR model is compatible with:
23
+
24
+ - OpenVINO version 2026.1.0 and higher
25
+ - Model API 0.4.0 and higher
26
+
27
+ ## Running Model Inference with [Model API](https://github.com/open-edge-platform/model_api)
28
+
29
+ 1. Install required packages:
30
+
31
+ ```sh
32
+ pip install openvino-model-api[huggingface]
33
+ ```
34
+
35
+ <!-- markdownlint-disable MD029 -->
36
+
37
+ 2. Run model inference:
38
+
39
+ ```python
40
+ import cv2
41
+ from model_api.models import Model
42
+ from model_api.visualizer import Visualizer
43
+
44
+ # 1. Load model
45
+ model = Model.from_pretrained("OpenVINO/YOLO11x-fp16-ov")
46
+
47
+ # 2. Load image
48
+ image = cv2.imread("image.jpg")
49
+
50
+ # 3. Run inference
51
+ result = model(image)
52
+
53
+ # 4. Visualize and save results
54
+ vis = Visualizer().render(image, result)
55
+ cv2.imwrite("output.jpg", vis)
56
+ ```
57
+
58
+ For more examples and possible optimizations, refer to the [Model API Documentation](https://open-edge-platform.github.io/model_api/latest/).
59
+
60
+ ## Limitations
61
+
62
+ Check the original [model card](https://huggingface.co/Ultralytics/YOLO11) for limitations.
63
+
64
+ ## Legal information
65
+
66
+ 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).
67
+
68
+ ## Disclaimer
69
+
70
+ 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 YOLO11x model trained on /ultralytics/ultralytics/cfg/datasets/coco.yaml
2
+ author: Ultralytics
3
+ date: '2026-04-14T13:55:39.202417'
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: true
98
+ int8: false
99
+ dynamic: false
100
+ nms: false
101
+ channels: 3
102
+ end2end: false
yolo11x.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee03eda20aeda8002dda8b3f7ba4dfcfb770b0fe43703aad3793e3078eb743f9
3
+ size 113889554
yolo11x.xml ADDED
The diff for this file is too large to render. See raw diff