diff --git a/docs/MO_DG/prepare_model/convert_model/Convert_Model_From_ONNX.md b/docs/MO_DG/prepare_model/convert_model/Convert_Model_From_ONNX.md index 70baf49263d..f7660b5451d 100644 --- a/docs/MO_DG/prepare_model/convert_model/Convert_Model_From_ONNX.md +++ b/docs/MO_DG/prepare_model/convert_model/Convert_Model_From_ONNX.md @@ -3,6 +3,8 @@ ## Introduction to ONNX [ONNX*](https://github.com/onnx/onnx) is a representation format for deep learning models. ONNX allows AI developers easily transfer models between different frameworks that helps to choose the best combination for them. Today, PyTorch\*, Caffe2\*, Apache MXNet\*, Microsoft Cognitive Toolkit\* and other tools are developing ONNX support. +This page gives instructions on how to convert a model from ONNX format to OpenVINO IR format using Model Optimizer. To use Model Optimizer, install OpenVINO Development Tools by following the [installation instructions here](https://docs.openvino.ai/latest/openvino_docs_install_guides_install_dev_tools.html). + ## Convert an ONNX* Model The Model Optimizer process assumes you have an ONNX model that was directly downloaded from a public repository or converted from any framework that supports exporting to the ONNX format. @@ -18,4 +20,8 @@ There are no ONNX\* specific parameters, so only framework-agnostic parameters a Refer to [Supported Framework Layers](../Supported_Frameworks_Layers.md) for the list of supported standard layers. ## See Also -[Model Conversion Tutorials](Convert_Model_Tutorials.md) +This page provided general instructions for converting ONNX models. See the [Model Conversion Tutorials](Convert_Model_Tutorials.md) page for a set of tutorials that give step-by-step instructions for converting specific ONNX models. Here are some example tutorials: +* [Convert ONNX* Faster R-CNN Model](onnx_specific/Convert_Faster_RCNN.md) +* [Convert ONNX* GPT-2 Model](onnx_specific/Convert_GPT2.md) +* [Convert ONNX* Mask R-CNN Model](onnx_specific/Convert_Mask_RCNN.md) +