@@ -11,10 +11,12 @@ public static class OnnxCatalog
11
11
{
12
12
/// <summary>
13
13
/// Applies a pre-trained Onnx model.
14
+ /// </summary>
15
+ /// <remarks>
14
16
/// All column names are provided, the input data column names/types must exactly match
15
17
/// all model input names. All possible output columns are then generated, with names/types
16
18
/// specified by the model.
17
- /// </summary >
19
+ /// </remarks >
18
20
/// <param name="catalog">The transform's catalog.</param>
19
21
/// <param name="modelFile">The path of the file containing the ONNX model.</param>
20
22
/// <param name="gpuDeviceId">Optional GPU device ID to run execution on, <see langword="null" /> to run on CPU.</param>
@@ -30,8 +32,8 @@ public static OnnxScoringEstimator ApplyOnnxModel(this TransformsCatalog catalog
30
32
/// </summary>
31
33
/// <param name="catalog">The transform's catalog.</param>
32
34
/// <param name="modelFile">The path of the file containing the ONNX model.</param>
33
- /// <param name="outputColumnName">The input column.</param>
34
- /// <param name="inputColumnName">The output column resulting from the transformation .</param>
35
+ /// <param name="outputColumnName">The output column resulting from the transformation .</param>
36
+ /// <param name="inputColumnName">The input column.</param>
35
37
/// <param name="gpuDeviceId">Optional GPU device ID to run execution on, <see langword="null" /> to run on CPU.</param>
36
38
/// <param name="fallbackToCpu">If GPU error, raise exception or fallback to CPU.</param>
37
39
public static OnnxScoringEstimator ApplyOnnxModel ( this TransformsCatalog catalog ,
@@ -47,8 +49,8 @@ public static OnnxScoringEstimator ApplyOnnxModel(this TransformsCatalog catalog
47
49
/// </summary>
48
50
/// <param name="catalog">The transform's catalog.</param>
49
51
/// <param name="modelFile">The path of the file containing the ONNX model.</param>
50
- /// <param name="outputColumnNames">The input columns.</param>
51
- /// <param name="inputColumnNames">The output columns resulting from the transformation .</param>
52
+ /// <param name="outputColumnNames">The output columns resulting from the transformation .</param>
53
+ /// <param name="inputColumnNames">The input columns.</param>
52
54
/// <param name="gpuDeviceId">Optional GPU device ID to run execution on, <see langword="null" /> to run on CPU.</param>
53
55
/// <param name="fallbackToCpu">If GPU error, raise exception or fallback to CPU.</param>
54
56
public static OnnxScoringEstimator ApplyOnnxModel ( this TransformsCatalog catalog ,
0 commit comments