Common Models
Guides for deploying common image classification and object detection models.
Last updated
Guides for deploying common image classification and object detection models.
The Nx toolkit currently supports image classification and object detection models. Guides are available for deploying common models such as MobileNet, ResNet, EfficientNet, ViT, and LeViT for image classification, and YoloS, Yolov4, Yolov7, and Yolov11 for object detection.
Key steps involved in this process include:
Incorporating necessary post-processing steps such as masking and a configurable Non-Maximum Suppression (NMS) for object detection models and Softmax for image classification models directly into the ONNX graph.
Modifying the model's input and output shapes and names as per the requirements of the AI Manager.
Making sure the exported ONNX has an Operator Set Version up to 17.
These guides give AI developers off-the-shelf scripts to deploy these models within minutes. This is achieved by exporting the models to ONNX format, ensuring compatibility with the AI Manager.
You can find the guides on this Github repository.
Last updated