# 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](/nx-ai-manager-v4.x/nx-ai-cloud/upload-your-model.md).&#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](/nx-ai-manager-v4.x/for-data-scientists/custom-model-creation.md) 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](/nx-ai-manager-v4.x/for-data-scientists/onnx-requirements.md).
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](/nx-ai-manager-v4.x/for-data-scientists/about-onnx.md).
* Details on how to [generate your own ONNX graphs](/nx-ai-manager-v4.x/for-data-scientists/custom-model-creation.md) and how to check your ONNX graph.
* Details on how to import models that have been [exported from various model training platforms](/nx-ai-manager-v4.x/for-data-scientists/importing-models.md).


---

# 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/introduction.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.
