YOLOX-L object detection model, a larger Geti™ build of YOLOX converted to OpenVINO™ IR with FP16 weights. It trades throughput for higher detection accuracy than YOLOX-S. Model weights are hosted in the source repository OpenVINO/yolox_l-fp16-ov.

How to Use

  1. Install required packages:
pip install openvino-model-api[huggingface]
  1. Run model inference:
import cv2
from model_api.models import Model
from model_api.visualizer import Visualizer

model = Model.from_pretrained("OpenVINO/yolox_l-fp16-ov")
image = cv2.imread("image.jpg")
result = model(image)
vis = Visualizer().render(image, result)
cv2.imwrite("output.jpg", vis)

Legal information

The original model is distributed under the Apache-2.0 license. More details can be found in the original model repository.

Downloads last month
42
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support