Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more info on working with categorical data #16881

Merged
merged 13 commits into from
Feb 12, 2020
Prev Previous commit
Next Next commit
Update docs/machine-learning/how-to-guides/prepare-data-ml-net.md
Co-Authored-By: Luis Quintanilla <[email protected]>
  • Loading branch information
natke and luisquintanilla committed Feb 11, 2020
commit e64cc4ce12d76802ce955af31814dcd281292cc8
2 changes: 1 addition & 1 deletion docs/machine-learning/how-to-guides/prepare-data-ml-net.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ ReviewData[] reviews = new ReviewData[]
};
```

ML.NET provides the [`FeaturizeText`](xref:Microsoft.ML.TextCatalog.FeaturizeText%2A) transform that takes a texts string and creates a set of features from the text, by applying a series of individual transforms.
ML.NET provides the [`FeaturizeText`](xref:Microsoft.ML.TextCatalog.FeaturizeText%2A) transform that takes a text's string value and creates a set of features from the text, by applying a series of individual transforms.

```csharp
// Define text transform estimator
Expand Down