Skip to content

Commit a17dbbf

Browse files
authored
Merge pull request #95382 from faxu/patch-1
Update getting onnx model section
2 parents 796ce41 + a07ef4d commit a17dbbf

File tree

1 file changed

+11
-16
lines changed

1 file changed

+11
-16
lines changed

articles/sql-database-edge/onnx-overview.md

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -22,25 +22,20 @@ To infer machine learning models in Azure SQL Database Edge, you will first need
2222

2323
## Get ONNX models
2424

25-
There are several ways that you can obtain a model in the ONNX format:
25+
To obtain a model in the ONNX format:
2626

27-
- [ONNX Model Zoo](https://github.com/onnx/models): Contains many pre-trained ONNX models for different types of tasks that can be downloaded and are ready to use.
27+
- **Model Building Services**: Services such as the [automated Machine Learning feature in Azure Machine Learning](https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/automated-machine-learning/classification-bank-marketing-all-features/auto-ml-classification-bank-marketing-all-features.ipynb) and [Azure Custom Vision Service](https://docs.microsoft.com/azure/cognitive-services/custom-vision-service/getting-started-build-a-classifier) support directly exporting the trained model in the ONNX format.
2828

29-
- [Native export from ML training frameworks](https://onnx.ai/supported-tools): Several training frameworks support native export functionality to ONNX, which allows you to save your trained model to a specific version of the ONNX format, including [PyTorch](https://pytorch.org/docs/stable/onnx.html), Chainer, and Caffe2. In addition, model building services such as the [automated Machine Learning feature in Azure Machine Learning](https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/automated-machine-learning/classification-bank-marketing-all-features/auto-ml-classification-bank-marketing-all-features.ipynb) and [Azure Custom Vision Service](https://docs.microsoft.com/azure/cognitive-services/custom-vision-service/getting-started-build-a-classifier) provide ONNX export.
29+
- [**Convert and/or export existing models**](https://github.com/onnx/tutorials#converting-to-onnx-format): Several training frameworks (e.g. [PyTorch](https://pytorch.org/docs/stable/onnx.html), Chainer, and Caffe2) support native export functionality to ONNX, which allows you to save your trained model to a specific version of the ONNX format. For frameworks that do not support native export, there are standalone ONNX Converter installable packages that enable you to convert models trained from different machine learning frameworks to the ONNX format.
3030

31-
- [Convert existing models](https://github.com/onnx/tutorials#converting-to-onnx-format): For frameworks that do not support native export, there are standalone packages for converting models to the ONNX format. For examples and tutorials, see [Converting to ONNX format](https://github.com/onnx/tutorials#converting-to-onnx-format).
32-
33-
### Supported frameworks
34-
35-
ONNX Converters enable you to convert models trained from different machine learning frameworks to the ONNX format. Popular converters include:
36-
37-
* [PyTorch](http://pytorch.org/docs/master/onnx.html)
38-
* [Tensorflow](https://github.com/onnx/tensorflow-onnx)
39-
* [Keras](https://github.com/onnx/keras-onnx)
40-
* [Scikit-learn](https://github.com/onnx/sklearn-onnx)
41-
* [CoreML](https://github.com/onnx/onnxmltools)
42-
43-
For the full list of supported frameworks, see [Converting to ONNX format](https://github.com/onnx/tutorials#converting-to-onnx-format).
31+
**Supported frameworks**
32+
* [PyTorch](http://pytorch.org/docs/master/onnx.html)
33+
* [Tensorflow](https://github.com/onnx/tensorflow-onnx)
34+
* [Keras](https://github.com/onnx/keras-onnx)
35+
* [Scikit-learn](https://github.com/onnx/sklearn-onnx)
36+
* [CoreML](https://github.com/onnx/onnxmltools)
37+
38+
For the full list of supported frameworks and examples, see [Converting to ONNX format](https://github.com/onnx/tutorials#converting-to-onnx-format).
4439

4540
## Limitations
4641

0 commit comments

Comments
 (0)