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
Copy file name to clipboardExpand all lines: src/Microsoft.ML/CSharpApi.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2214,7 +2214,7 @@ public sealed partial class CrossValidationMacroSubGraphOutput
2214
2214
/// <summary>
2215
2215
/// The predictor model
2216
2216
/// </summary>
2217
-
public Var<Microsoft.ML.Runtime.EntryPoints.IPredictorModel> Model { get; set; } = new Var<Microsoft.ML.Runtime.EntryPoints.IPredictorModel>();
2217
+
public Var<Microsoft.ML.Runtime.EntryPoints.IPredictorModel> PredictorModel { get; set; } = new Var<Microsoft.ML.Runtime.EntryPoints.IPredictorModel>();
2218
2218
2219
2219
/// <summary>
2220
2220
/// The transform model
@@ -3400,7 +3400,7 @@ public sealed partial class TrainTestMacroSubGraphOutput
3400
3400
/// <summary>
3401
3401
/// The predictor model
3402
3402
/// </summary>
3403
-
public Var<Microsoft.ML.Runtime.EntryPoints.IPredictorModel> Model { get; set; } = new Var<Microsoft.ML.Runtime.EntryPoints.IPredictorModel>();
3403
+
public Var<Microsoft.ML.Runtime.EntryPoints.IPredictorModel> PredictorModel { get; set; } = new Var<Microsoft.ML.Runtime.EntryPoints.IPredictorModel>();
0 commit comments