|
| 1 | +# ML.NET 0.9 Release Notes |
| 2 | + |
| 3 | +Welcome to 2019! For the past 9 months we have been adding features and improving [ML.NET](https://aka.ms/mlnet). In the forthcoming 0.10, 0.11, and 0.12 releases before we reach 1.0, we will focus on the overall stability of the package, continue to refine the API, increase test coverage and improve documentation. 0.9 release packs multiple fixes as well as significant clean up to the internal code of the package. |
| 4 | + |
| 5 | +### Installation |
| 6 | + |
| 7 | +ML.NET supports Windows, MacOS, and Linux. See [supported OS versions of .NET |
| 8 | +Core |
| 9 | +2.0](https://github.com/dotnet/core/blob/master/release-notes/2.0/2.0-supported-os.md) |
| 10 | +for more details. |
| 11 | + |
| 12 | +You can install ML.NET NuGet from the CLI using: |
| 13 | +``` |
| 14 | +dotnet add package Microsoft.ML |
| 15 | +``` |
| 16 | + |
| 17 | +From package manager: |
| 18 | +``` |
| 19 | +Install-Package Microsoft.ML |
| 20 | +``` |
| 21 | + |
| 22 | +### Release Notes |
| 23 | + |
| 24 | +Below are a few of the highlights from this release. There are many other improvements in the API. |
| 25 | + |
| 26 | +* Added Feature Contribution Calculation |
| 27 | + ([#1847](https://github.com/dotnet/machinelearning/pull/1847)) |
| 28 | + |
| 29 | + * FCC can be used to compute feature contributions in addition to the overall prediction when models are evaluated. |
| 30 | + |
| 31 | +* Removed Legacy namespace that was marked obsolete |
| 32 | + ([#2043](https://github.com/dotnet/machinelearning/pull/2043)) |
| 33 | + |
| 34 | +* GPU support for ONNX Transform |
| 35 | + ([#1922](https://github.com/dotnet/machinelearning/pull/1922)) |
| 36 | + |
| 37 | + * GPU is currently supported on 64 bit Windows |
| 38 | + * Cross platform support is still being developed for this feature |
| 39 | + |
| 40 | +* `Permutation Feature Importance` now supports confidence intervals |
| 41 | + ([#1844](https://github.com/dotnet/machinelearning/pull/1844)) |
| 42 | + |
| 43 | +* Introducing `PredictionEngine` instead of `PredictionFunction` |
| 44 | + ([#1920](https://github.com/dotnet/machinelearning/pull/1920)) |
| 45 | + |
| 46 | +### Acknowledgements |
| 47 | + |
| 48 | +Shoutout to [dhilmathy](https://github.com/dhilmathy), |
| 49 | +[mnboos](https://github.com/mnboos), |
| 50 | +[robosek](https://github.com/robosek), and the [ML.NET](https://aka.ms/mlnet) team for their |
| 51 | +contributions as part of this release! |
0 commit comments