Skip to content

Commit

Permalink
Merge pull request #726 from roboflow/yolov11-bump-ort-version
Browse files Browse the repository at this point in the history
yolov11 improvements
  • Loading branch information
probicheaux authored Oct 4, 2024
2 parents c70cc32 + 99f53fa commit d852dea
Show file tree
Hide file tree
Showing 5 changed files with 109 additions and 4 deletions.
105 changes: 105 additions & 0 deletions docs/quickstart/aliases.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,4 +279,109 @@ table {
<td>yolov10x-640</td>
<td><a href="https://universe.roboflow.com/microsoft/coco/model/24">Test in Browser</a></td>
</tr>
<tr>
<td>YOLOv11n</td>
<td>640</td>
<td>Object Detection</td>
<td>yolov11n-640</td>
<td><a href="https://universe.roboflow.com/microsoft/coco/model/25">Test in Browser</a></td>
</tr>
<tr>
<td>YOLOv11s</td>
<td>640</td>
<td>Object Detection</td>
<td>yolov11s-640</td>
<td><a href="https://universe.roboflow.com/microsoft/coco/model/26">Test in Browser</a></td>
</tr>
<tr>
<td>YOLOv11m</td>
<td>640</td>
<td>Object Detection</td>
<td>yolov11m-640</td>
<td><a href="https://universe.roboflow.com/microsoft/coco/model/27">Test in Browser</a></td>
</tr>
<tr>
<td>YOLOv11l</td>
<td>640</td>
<td>Object Detection</td>
<td>yolov11l-640</td>
<td><a href="https://universe.roboflow.com/microsoft/coco/model/28">Test in Browser</a></td>
</tr>
<tr>
<td>YOLOv11x</td>
<td>640</td>
<td>Object Detection</td>
<td>yolov11x-640</td>
<td><a href="https://universe.roboflow.com/microsoft/coco/model/29">Test in Browser</a></td>
</tr>
<tr>
<td>YOLOv11n</td>
<td>1280</td>
<td>Object Detection</td>
<td>yolov11n-1280</td>
<td><a href="https://universe.roboflow.com/microsoft/coco/model/30">Test in Browser</a></td>
</tr>
<tr>
<td>YOLOv11s</td>
<td>1280</td>
<td>Object Detection</td>
<td>yolov11s-1280</td>
<td><a href="https://universe.roboflow.com/microsoft/coco/model/31">Test in Browser</a></td>
</tr>
<tr>
<td>YOLOv11m</td>
<td>1280</td>
<td>Object Detection</td>
<td>yolov11m-1280</td>
<td><a href="https://universe.roboflow.com/microsoft/coco/model/32">Test in Browser</a></td>
</tr>
<tr>
<td>YOLOv11l</td>
<td>1280</td>
<td>Object Detection</td>
<td>yolov11l-1280</td>
<td><a href="https://universe.roboflow.com/microsoft/coco/model/33">Test in Browser</a></td>
</tr>
<tr>
<td>YOLOv11x</td>
<td>1280</td>
<td>Object Detection</td>
<td>yolov11x-1280</td>
<td><a href="https://universe.roboflow.com/microsoft/coco/model/34">Test in Browser</a></td>
</tr>
<tr>
<td>YOLOv11n</td>
<td>640</td>
<td>Instance Segmentation</td>
<td>yolov11n-seg-640</td>
<td><a href="https://universe.roboflow.com/microsoft/coco-dataset-vdnr1/model/19">Test in Browser</a></td>
</tr>
<tr>
<td>YOLOv11s</td>
<td>640</td>
<td>Instance Segmentation</td>
<td>yolov11s-seg-640</td>
<td><a href="https://universe.roboflow.com/microsoft/coco-dataset-vdnr1/model/20">Test in Browser</a></td>
</tr>
<tr>
<td>YOLOv11m</td>
<td>640</td>
<td>Instance Segmentation</td>
<td>yolov11m-seg-640</td>
<td><a href="https://universe.roboflow.com/microsoft/coco-dataset-vdnr1/model/21">Test in Browser</a></td>
</tr>
<tr>
<td>YOLOv11l</td>
<td>640</td>
<td>Instance Segmentation</td>
<td>yolov11l-seg-640</td>
<td><a href="https://universe.roboflow.com/microsoft/coco-dataset-vdnr1/model/22">Test in Browser</a></td>
</tr>
<tr>
<td>YOLOv11x</td>
<td>640</td>
<td>Instance Segmentation</td>
<td>yolov11x-seg-640</td>
<td><a href="https://universe.roboflow.com/microsoft/coco-dataset-vdnr1/model/23">Test in Browser</a></td>
</tr>
</table>
2 changes: 1 addition & 1 deletion inference/core/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.22.0"
__version__ = "0.22.1"


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.cpu.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
onnxruntime<=1.15.1
onnxruntime~=1.15.1
GPUtil==1.4.0
2 changes: 1 addition & 1 deletion requirements/requirements.gpu.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
onnxruntime-gpu<=1.15.1
onnxruntime-gpu~=1.15.1
2 changes: 1 addition & 1 deletion requirements/requirements.vino.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
onnxruntime-openvino<=1.15.1
onnxruntime-openvino~=1.15.1

0 comments on commit d852dea

Please sign in to comment.