# Introduction

&#x20;This section of our documentation describes how to create vision models that can be easily deployed to your edge devices running Nx Meta Server.&#x20;

{% hint style="info" %}
This section of the docs focuses on creating models. Once you have a model ready in ONNX format, you [can find instructions on uploading it to the Nx Cloud platform here](https://nx.docs.scailable.net/nx-ai-manager-v4.x/nx-ai-cloud/upload-your-model).&#x20;
{% endhint %}

## High-level process

Our standard process for creating and uploading your models to the Nx AI Cloud is to:

1. Create a model using your favorite training tools. You can create an [ONNX model/pipeline from scratch](https://nx.docs.scailable.net/nx-ai-manager-v4.x/for-data-scientists/custom-model-creation) or import a model using one of the training tools we integrate with.
   1. If you create your ONNX from scratch, ensure the [resulting ONNX graph is proper](https://nx.docs.scailable.net/nx-ai-manager-v4.x/for-data-scientists/onnx-requirements).
2. Once you have your model ready, you can upload it to the Nx AI Cloud platform; we will automatically convert it to several different device-type optimized versions and ensure that it can be deployed to any edge device running the Nx AI manager efficiently.

{% @mermaid/diagram content="graph TD
A(Train model using your favourite training tools)
subgraph ONNX
B\[Ensure Nx ONNX specs]
end
C(Upload to platform)
D(Automatic conversion to different representations)
E(Manage deployment)
A-->B
B-->C
C-->D
D-->E
" %}

In this section of the docs, you can find the following:

* General [information and resources regarding ONNX](https://nx.docs.scailable.net/nx-ai-manager-v4.x/for-data-scientists/about-onnx).
* Details on how to [generate your own ONNX graphs](https://nx.docs.scailable.net/nx-ai-manager-v4.x/for-data-scientists/custom-model-creation) and how to check your ONNX graph.
* Details on how to import models that have been [exported from various model training platforms](https://nx.docs.scailable.net/nx-ai-manager-v4.x/for-data-scientists/importing-models).
