Skip to content

Commit aed491f

Browse files
Correct catelog param doc
1 parent 33ef982 commit aed491f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Microsoft.ML.OnnxConverter/OnnxExportExtensions.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ internal static ModelProto ConvertToOnnxProtobuf(this ModelOperationsCatalog cat
6565
/// <summary>
6666
/// Convert the specified <see cref="ITransformer"/> to ONNX format. Note that ONNX uses Google's Protobuf so the returned value is a Protobuf object.
6767
/// </summary>
68-
/// <param name="catalog">The class that <see cref="ConvertToOnnxProtobuf(ModelOperationsCatalog, ITransformer, IDataView, string[])"/> attached to.</param>
68+
/// <param name="catalog">The class that <see cref="ConvertToOnnxProtobuf(ModelOperationsCatalog, ITransformer, DataViewSchema, string[])"/> attached to.</param>
6969
/// <param name="transform">The <see cref="ITransformer"/> that will be converted into ONNX format.</param>
7070
/// <param name="inputSchema">The schema of the input to the transformer.</param>
7171
/// <param name="outputColumns">List of output columns we want to keep.</param>
@@ -81,7 +81,7 @@ internal static ModelProto ConvertToOnnxProtobuf(this ModelOperationsCatalog cat
8181
/// <summary>
8282
/// Convert the specified <see cref="ITransformer"/> to ONNX format. Note that ONNX uses Google's Protobuf so the returned value is a Protobuf object.
8383
/// </summary>
84-
/// <param name="catalog">The class that <see cref="ConvertToOnnxProtobuf(ModelOperationsCatalog, ITransformer, IDataView, int)"/> attached to.</param>
84+
/// <param name="catalog">The class that <see cref="ConvertToOnnxProtobuf(ModelOperationsCatalog, ITransformer, DataViewSchema, int)"/> attached to.</param>
8585
/// <param name="transform">The <see cref="ITransformer"/> that will be converted into ONNX format.</param>
8686
/// <param name="inputSchema">The schema of the input to the transformer.</param>
8787
/// <param name="opSetVersion">The OpSet version to use for exporting the model. This value must be greater than or equal to 9 and less than or equal to 12</param>
@@ -132,7 +132,7 @@ public static void ConvertToOnnx(this ModelOperationsCatalog catalog, ITransform
132132
/// <summary>
133133
/// Convert the specified <see cref="ITransformer"/> to ONNX format and writes to a stream.
134134
/// </summary>
135-
/// <param name="catalog">The class that <see cref="ConvertToOnnx(ModelOperationsCatalog, ITransformer, IDataView, Stream)"/> attached to.</param>
135+
/// <param name="catalog">The class that <see cref="ConvertToOnnx(ModelOperationsCatalog, ITransformer, DataViewSchema, Stream)"/> attached to.</param>
136136
/// <param name="transform">The <see cref="ITransformer"/> that will be converted into ONNX format.</param>
137137
/// <param name="inputSchema">The schema of the input to the transformer.</param>
138138
/// <param name="stream">The stream to write the protobuf model to.</param>
@@ -143,7 +143,7 @@ public static void ConvertToOnnx(this ModelOperationsCatalog catalog, ITransform
143143
/// <summary>
144144
/// Convert the specified <see cref="ITransformer"/> to ONNX format and writes to a stream.
145145
/// </summary>
146-
/// <param name="catalog">The class that <see cref="ConvertToOnnx(ModelOperationsCatalog, ITransformer, IDataView, int, Stream)"/> attached to.</param>
146+
/// <param name="catalog">The class that <see cref="ConvertToOnnx(ModelOperationsCatalog, ITransformer, DataViewSchema, int, Stream)"/> attached to.</param>
147147
/// <param name="transform">The <see cref="ITransformer"/> that will be converted into ONNX format.</param>
148148
/// <param name="inputSchema">The schema of the input to the transformer.</param>
149149
/// <param name="opSetVersion">The OpSet version to use for exporting the model. This value must be greater than or equal to 9 and less than or equal to 12</param>
@@ -155,7 +155,7 @@ public static void ConvertToOnnx(this ModelOperationsCatalog catalog, ITransform
155155
/// <summary>
156156
/// Convert the specified <see cref="ITransformer"/> to ONNX format and writes to a stream.
157157
/// </summary>
158-
/// <param name="catalog">The class that <see cref="ConvertToOnnx(ModelOperationsCatalog, ITransformer, IDataView, Stream)"/> attached to.</param>
158+
/// <param name="catalog">The class that <see cref="ConvertToOnnx(ModelOperationsCatalog, ITransformer, DataViewSchema, Stream)"/> attached to.</param>
159159
/// <param name="transform">The <see cref="ITransformer"/> that will be converted into ONNX format.</param>
160160
/// <param name="inputSchema">The schema of the input to the transformer.</param>
161161
/// <param name="stream">The stream to write the protobuf model to.</param>

0 commit comments

Comments
 (0)