You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Convert the specified <see cref="ITransformer"/> to ONNX format. Note that ONNX uses Google's Protobuf so the returned value is a Protobuf object.
83
83
/// </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>
85
85
/// <param name="transform">The <see cref="ITransformer"/> that will be converted into ONNX format.</param>
86
86
/// <param name="inputSchema">The schema of the input to the transformer.</param>
87
87
/// <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>
/// Convert the specified <see cref="ITransformer"/> to ONNX format and writes to a stream.
145
145
/// </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>
147
147
/// <param name="transform">The <see cref="ITransformer"/> that will be converted into ONNX format.</param>
148
148
/// <param name="inputSchema">The schema of the input to the transformer.</param>
149
149
/// <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>
0 commit comments