docs/release-notes/2.0/release-2.0.0.md
This release is going out alongside .NET 7 continuing with our plan to align with the broader .NET release cycle.
The main themes for this release are:
Below are some of the highlights from this release:
EnglishRoberta tokenization model used by the text classification and sentence similarity APIs is supported. For more generic scenarios other than EnglishRoberta, there's also support for Byte-Pair Encoding (BPE) algorithm which means you can load custom vocabulary files and use them to process your text. These tokenization APIs are available as part of the Microsoft.ML.Tokenizers NuGet package.DateTime type as a PrimitiveDataFrameColumn. This allows better conversion between IDataView and the DataFrame.DataFrame in notebooks. Thanks @colombod!System.Drawing is only supported on Windows. As a result, we've replaced it with the MLImage class for image handing. In code where you previously represented image data as Bitmap, use MLImage instead.TransformerScope depending on the purpose. Prior to this change, calling Transform to apply the transformations to data defaulted to use the Everything scope unless otherwise specified. As of this release, the scope has changed to Scoring which means for scoring scenarios, you no longer need to provide an empty label as part of your inputs.