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
/// <param name="labelColumnName">The name of the label column. The column data must be <see cref="System.Single"/></param>
22
-
/// <param name="featureColumnName">The name of the feature column. The column data must be a known-sized vector of <see cref="System.Single"/></param>
21
+
/// <param name="labelColumnName">The name of the label column. The column data must be <see cref="System.Single"/>.</param>
22
+
/// <param name="featureColumnName">The name of the feature column. The column data must be a known-sized vector of <see cref="System.Single"/>.</param>
23
23
/// <param name="exampleWeightColumnName">The name of the example weight column (optional).</param>
24
24
/// <example>
25
25
/// <format type="text/markdown">
@@ -46,7 +46,7 @@ public static OlsTrainer Ols(this RegressionCatalog.RegressionTrainers catalog,
46
46
}
47
47
48
48
/// <summary>
49
-
/// Creates a <see cref="OlsTrainer"/>, which predicts a target using a linear regression model with advanced options.
49
+
/// Create <see cref="OlsTrainer"/> using advanced options, which predicts a target using a linear regression model.
Copy file name to clipboardExpand all lines: src/Microsoft.ML.Mkl.Components/OlsLinearRegression.cs
+6-5
Original file line number
Diff line number
Diff line change
@@ -37,8 +37,8 @@ namespace Microsoft.ML.Trainers
37
37
/// </summary>
38
38
/// <remarks>
39
39
/// <format type="text/markdown"><)
41
-
/// or [Ols(Options)](xref:Microsoft.ML.MklComponentsCatalog.Ols(Microsoft.ML.RegressionCatalog.RegressionTrainers,Microsoft.ML.Trainers.OlsTrainer.Options)).
40
+
/// To create this trainer, use [Ols](xref:Microsoft.ML.MklComponentsCatalog.Ols(Microsoft.ML.RegressionCatalog.RegressionTrainers,System.String,System.String,System.String))
41
+
/// or [Ols(Options)](xref:Microsoft.ML.MklComponentsCatalog.Ols(Microsoft.ML.RegressionCatalog.RegressionTrainers,Microsoft.ML.Trainers.OlsTrainer.Options)).
0 commit comments