Closed
Description
When using OutputTokens=true
, FeaturizeText
creates a new column called ${OutputColumnName}_TransformedText
. This isn't really well documented anywhere, and it's odd behavior. I suggest that we make the tokenized text column name explicit in the API.
My suggestion would be the following:
- Change
OutputTokens = [bool]
toOutputTokensColumn = [string]
, and astring.NullOrWhitespace(OutputTokensColumn)
signifies that this column will not be created.
What do you all think?