<liclass="toctree-l2"><aclass="reference internal"href="#step-1-train-a-model-using-your-favorite-framework">Step 1: Train a model using your favorite framework</a></li>
<liclass="toctree-l2"><aclass="reference internal"href="#step-2-convert-or-export-the-model-into-onnx-format">Step 2: Convert or export the model into ONNX format</a></li>
<liclass="toctree-l2"><aclass="reference internal"href="#step-3-load-and-run-the-model-using-onnx-runtime">Step 3: Load and run the model using ONNX Runtime</a></li>
<liclass="toctree-l1"><aclass="reference internal"href="auto_examples/index.html">Gallery of examples</a><ul>
<liclass="toctree-l2"><aclass="reference internal"href="auto_examples/plot_pipeline.html">Draw a pipeline</a></li>
<liclass="toctree-l2"><aclass="reference internal"href="auto_examples/plot_load_and_predict.html">Load and predict with ONNX Runtime and a very simple model</a></li>
<liclass="toctree-l2"><aclass="reference internal"href="auto_examples/plot_profiling.html">Profile the execution of a simple model</a></li>
<liclass="toctree-l2"><aclass="reference internal"href="auto_examples/plot_backend.html">ONNX Runtime Backend for ONNX</a></li>
<liclass="toctree-l2"><aclass="reference internal"href="auto_examples/plot_dl_keras.html">ONNX Runtime for Keras</a></li>
<liclass="toctree-l2"><aclass="reference internal"href="auto_examples/plot_convert_pipeline_vectorizer.html">Train, convert and predict with ONNX Runtime</a></li>
<liclass="toctree-l2"><aclass="reference internal"href="auto_examples/plot_common_errors.html">Common errors with onnxruntime</a></li>
<liclass="toctree-l2"><aclass="reference internal"href="auto_examples/plot_train_convert_predict.html">Train, convert and predict with ONNX Runtime</a></li>
<h2>Step 1: Train a model using your favorite framework<aclass="headerlink"href="#step-1-train-a-model-using-your-favorite-framework"title="Permalink to this headline">¶</a></h2>
<h2>Step 2: Convert or export the model into ONNX format<aclass="headerlink"href="#step-2-convert-or-export-the-model-into-onnx-format"title="Permalink to this headline">¶</a></h2>
<p><aclass="reference external"href="https://github.com/onnx/onnx">ONNX</a> is a format to describe
the machine learned model.
It defines a set of commonly used operators to compose models.
There are <aclass="reference external"href="https://github.com/onnx/tutorials">tools</a>
to convert other model formats into ONNX. Here we will use
<h2>Step 3: Load and run the model using ONNX Runtime<aclass="headerlink"href="#step-3-load-and-run-the-model-using-onnx-runtime"title="Permalink to this headline">¶</a></h2>
<p>We will use <em>ONNX Runtime</em> to compute the predictions
for this machine learning model.</p>
<p>The code can be changed to get one specific output