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.</param>
22
-
/// <param name="featureColumnName">The name of the feature column.</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
-
/// Predict a target using a linear regression model trained with the <see cref="OlsTrainer"/>.
49
+
/// Create <see cref="OlsTrainer"/> with advanced options, which predicts a target using a linear regression model.
/// ordinary least squares (OLS) for estimating the parameters of the linear regression model.
37
37
/// </summary>
38
38
/// <remarks>
39
-
/// <a href='https://en.wikipedia.org/wiki/Ordinary_least_squares'>Ordinary least squares (OLS)</a> is a parameterized regression method.
39
+
/// <format type="text/markdown"><)
41
+
/// or [Ols(Options)](xref:Microsoft.ML.MklComponentsCatalog.Ols(Microsoft.ML.RegressionCatalog.RegressionTrainers,Microsoft.ML.Trainers.OlsTrainer.Options)).
0 commit comments