Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bb9add2

Browse files
committedOct 30, 2020
Add Netron and rename file
1 parent 683c81f commit bb9add2

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed
 

‎articles/machine-learning/how-to-consume-automl-onnx-model-dotnet.md renamed to ‎articles/machine-learning/how-to-use-automl-onnx-model-dotnet.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,14 @@ The model used in this sample uses data from the NYC TLC Taxi Trip dataset. A sa
9999
|VTS|1|1|480|2.72|CRD|10.0|
100100
|VTS|1|1|1680|7.8|CSH|26.5|
101101
102+
### Inspect model (optional)
103+
104+
Use tool like Netron to inspect your model metadata, inputs, and outputs. For example, the structure of the *automl-model.onnx* model looks like the following:
105+
106+
:::image type="content" source="media/how-to-use-automl-onnx-model-dotnet/netron-automl-onnx-model.png" alt-text="Netron AutoML ONNX Model":::
107+
108+
The inputs and outputs on the sidebar show you the name of the input and output columns as well as their data types. Use this information to define the input and output schema of your model.
109+
102110
### Input data schema
103111
104112
Create a new class called `OnnxInput` with the following properties inside the *Program.cs* file.

0 commit comments

Comments
 (0)
Please sign in to comment.