mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-14 18:12:05 +00:00
This pull request addresses several spelling errors and inconsistencies in the capitalization of proper nouns within the documentation. ### Motivation and Context To improve the quality of the documentation, spelling errors and capitalization mistakes have been corrected. This ensures that the content is more accurate and easier to read.
31 lines
1.7 KiB
Markdown
31 lines
1.7 KiB
Markdown
---
|
|
title: Accelerate TensorFlow
|
|
nav_order: 3
|
|
parent: Tutorials
|
|
---
|
|
# Accelerate TensorFlow model inferencing
|
|
{: .no_toc }
|
|
|
|
ONNX Runtime can accelerate inferencing times for TensorFlow, TFLite, and Keras models.
|
|
|
|
## Get Started
|
|
{: .no_toc }
|
|
* [End to end: Run TensorFlow models in ONNX Runtime](../tutorials/tf-get-started.md)
|
|
|
|
## Export model to ONNX
|
|
{: .no_toc }
|
|
### TensorFlow/Keras
|
|
{: .no_toc }
|
|
These examples use the [TensorFlow-ONNX converter](https://github.com/onnx/tensorflow-onnx), which supports TensorFlow 1, 2, Keras, and TFLite model formats.
|
|
|
|
* [TensorFlow: Object detection (efficentdet)](https://github.com/onnx/tensorflow-onnx/blob/master/tutorials/efficientdet.ipynb)
|
|
* [TensorFlow: Object detection (SSD Mobilenet)](https://github.com/onnx/tensorflow-onnx/blob/master/tutorials/ConvertingSSDMobilenetToONNX.ipynb)
|
|
* [TensorFlow: Image classification (efficientnet-edge)](https://github.com/onnx/tensorflow-onnx/blob/master/tutorials/efficientnet-edge.ipynb)
|
|
* [TensorFlow: Image classification (efficientnet-lite)](https://github.com/onnx/tensorflow-onnx/blob/master/tutorials/efficientnet-lite.ipynb)
|
|
* [TensorFlow: Natural Language Processing (BERT)](https://github.com/onnx/tensorflow-onnx/blob/master/tutorials/BertTutorial.ipynb)
|
|
* [TensorFlow: Accelerate BERT model](https://github.com/microsoft/onnxruntime/blob/main/onnxruntime/python/tools/transformers/notebooks/Tensorflow_Tf2onnx_Bert-Squad_OnnxRuntime_CPU.ipynb)
|
|
* [Keras: Image classification (Resnet 50)](https://github.com/onnx/tensorflow-onnx/blob/master/tutorials/keras-resnet50.ipynb)
|
|
|
|
### TFLite
|
|
{: .no_toc }
|
|
* [TFLite: Image classification (mobiledet)](https://github.com/onnx/tensorflow-onnx/blob/master/tutorials/mobiledet-tflite.ipynb)
|