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
Fixes#3992 and corner case of inputColumnNames on FeaturizeText (#4211)
* Fixed issue #3992 with TextFeaturizer when no inputColumnName is provided, and when 'null' is passed explicitly as inputColumnNames.
* Added Tests.
* Fixed a minor mistake in documentation.
Copy file name to clipboardExpand all lines: src/Microsoft.ML.Transforms/Text/TextCatalog.cs
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
// See the LICENSE file in the project root for more information.
4
4
5
5
usingMicrosoft.ML.Data;
6
+
usingMicrosoft.ML.Internal.Utilities;
6
7
usingMicrosoft.ML.Runtime;
7
8
usingMicrosoft.ML.Transforms.Text;
8
9
@@ -39,7 +40,7 @@ public static TextFeaturizingEstimator FeaturizeText(this TransformsCatalog.Text
39
40
outputColumnName,inputColumnName);
40
41
41
42
/// <summary>
42
-
/// Create a <see cref="TextFeaturizingEstimator"/>, which transforms a text column into featurized float array that represents normalized counts of n-grams and char-grams.
43
+
/// Create a <see cref="TextFeaturizingEstimator"/>, which transforms a text column into featurized vector of <see cref="System.Single"/> that represents normalized counts of n-grams and char-grams.
43
44
/// </summary>
44
45
/// <remarks>This transform can operate over several columns.</remarks>
0 commit comments