Skip to content

Commit 828dc22

Browse files
Revert
1 parent 1679be3 commit 828dc22

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/Microsoft.ML/Models/OnnxConverter.cs

+6-5
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ public sealed partial class OnnxConverter
1313
/// <see href="https://onnx.ai/">ONNX</see> is an intermediate representation format
1414
/// for machine learning models. It is used to make models portable such that you can
1515
/// train a model using a toolkit and run it in another tookit's runtime, for example,
16-
/// you can create and train a model using ML.NET, export it to an ONNX-ML model file,
17-
/// then load and run that ONNX-ML model in Windows ML, on an UWP Windows 10 app.
16+
/// you can create a model using ML.NET (or any ONNX compatible toolkit), convert it to ONNX and
17+
/// then the ONNX model can be converted into say, CoreML, TensorFlow or WinML model
18+
/// to run on the respective runtime.
1819
///
19-
/// This API converts an ML.NET model to ONNX-ML format by inspecting the transform pipeline
20-
/// from the end, checking for components that know how to save themselves as ONNX-ML.
20+
/// This API converts an ML.NET model to ONNX format by inspecting the transform pipeline
21+
/// from the end, checking for components that know how to save themselves as ONNX.
2122
/// The first item in the transform pipeline that does not know how to save itself
22-
/// as ONNX-ML, is considered the "input" to the ONNX pipeline. (Ideally this would be the
23+
/// as ONNX, is considered the "input" to the ONNX pipeline. (Ideally this would be the
2324
/// original loader itself, but this may not be possible if the user used unsavable
2425
/// transforms in defining the pipe.) All the columns in the source that are a type the
2526
/// ONNX knows how to deal with will be tracked. Intermediate transformations of the

0 commit comments

Comments
 (0)