FeaturizeText should allow only outputColumnName to be defined #3992
Labels
good first issue
Good for newcomers
P2
Priority of the issue for triage purpose: Needs to be fixed at some point.
up-for-grabs
A good issue to fix if you are trying to contribute to the project
One of the extension methods for
FeaturizeText
needs both theoutputColumnName
and theinputColumnNames
to be provided.There is no compile error if
inputColumnNames
is not provided, only a runtime error.We should fix the error so that when
inputColumnNames
is not provided, it is set tonew[] { outputColumnName }
as we do everywhere else in the code base.machinelearning/src/Microsoft.ML.Transforms/Text/TextCatalog.cs
Lines 60 to 65 in c3bdaaa
The text was updated successfully, but these errors were encountered: