# Common Models

The Nx toolkit currently offers support for image classification and object detection models. To facilitate easy deployment, we provide several tutorials containing instructions on how to deploy common models such as MobileNet, ResNet, EfficientNet, ViT, LeViT for image classification, and YoloS, Yolov4, Yolov7, Yolov8 for object detection.

Key steps involved in this process include:

1. 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.
2. Modifying the model's input and output shapes and names as per the requirements of the AI Manager.
3. Making sure the exported ONNX has an Operator Set Version less than 18.

The primary objective of these tutorials is to equip AI developers with off-the-shelf scripts, enabling them to deploy these models within minutes. This is achieved by exporting the models to ONNX format, ensuring compatibility with the AI Manager as described [previously](/nx-ai-manager-v4.x/for-data-scientists/onnx-requirements.md).

{% hint style="info" %}
You can find the tutorials on this [Github repository](https://github.com/scailable/nxai-model-to-onnx).
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://nx.docs.scailable.net/nx-ai-manager-v4.x/for-data-scientists/importing-models/common-models.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
