Releases: dotnet/machinelearning
ML.NET v1.1.0
New Features
-
Image type support in IDataView
PR#3263 added support for in-memory image as a type in IDataView. Previously it was not possible to use an image directly in IDataView, and the user had to specify the file path as a string and load the image using a transform. The feature resolved the following issues: 3162, 3723, 3369, 3274, 445, 3460, 2121, 2495, 3784.Image type support in IDataView was a much requested feature by the users.
Sample to convert gray scale image in-Memory | Sample for custom mapping with in-memory using custom type
-
Super-Resolution based Anomaly Detector (preview, please provide feedback)
PR#3693 adds a new anomaly detection algorithm to the Microsoft.ML.TimeSeries nuget. This algorithm is based on Super-Resolution using Deep Convolutional Networks and also got accepted in KDD'2019 conference as an oral presentation. One of the advantages of this algorithm is that it does not require any prior training and based on benchmarks using grid parameter search to find upper bounds it out performs the Independent and identically distributed(IID) and Singular Spectrum Analysis(SSA) based anomaly detection algorithms in accuracy. This contribution comes from the Azure Anomaly Detector team.Algo Precision Recall F1 #TruePositive #Positives #Anomalies Fine tuned parameters SSA (requires training) 0.582 0.585 0.583 2290 3936 3915 Confidence=99, PValueHistoryLength=32, Season=11, and use half the data of each series to do the training. IID 0.668 0.491 0.566 1924 2579 3915 Confidence=99, PValueHistoryLength=56 SR 0.601 0.670 0.634 2625 4370 3915 WindowSize=64, BackAddWindowSize=5, LookaheadWindowSize=5, AveragingWindowSize=3, JudgementWindowSize=64, Threshold=0.45 Sample for anomaly detection by SRCNN | Sample for anomaly detection by SRCNN using batch prediction
-
Time Series Forecasting (preview, please provide feedback)
PR#1900 introduces a framework for time series forecasting models and exposes an API for Singular Spectrum Analysis(SSA) based forecasting model in the Microsoft.ML.TimeSeries nuget. This framework allows to forecast w/o confidence intervals, update model with new observations and save/load the model to/from persistent storage. This closes following issues 929 and 3151 and was a much requested feature by the github community since September 2018. With this change Microsoft.ML.TimeSeries nuget is feature complete for RTM.Sample for forecasting | Sample for forecasting using confidence intervals
Bug Fixes
Serious
-
Math Kernel Library fails to load with latest libomp: Fixed by PR#3721 this bug made it impossible for anyone to check code into master branch because it was causing build failures.
-
Transform Wrapper fails at deserialization: Fixed by
PR#3700 this bug affected first party(1P) customer. A model trained using NimbusML(Python bindings for ML.NET) and then loaded for scoring/inferencing using ML.NET will hit this bug. -
Index out of bounds exception in KeyToVector transformer: Fixed by PR#3763 this bug closes following github issues: 3757,1751,2678. It affected first party customer and also github users.
Other
- Download images only when not present on disk and print warning messages when converting unsupported pixel format by PR#3625
- ML.NET source code does not build in VS2019 by PR#3742
- Fix SoftMax precision by utilizing double in the internal calculations by PR#3676
- Fix to the official build due to API Compat tool change by PR#3667
- Check for number of input columns in concat transform by PR#3809
Breaking Changes
None
Enhancements
- API Compat tool by PR#3623 ensures future changes to ML.NET will not break the stable API released in 1.0.0.
- Upgrade the TensorFlow version from 1.12.0 to 1.13.1 by PR#3758
- API for saving time series model to stream by PR#3805
Documentation and Samples
- L1-norm and L2-norm regularization documentation by PR#3586
- Sample for data save and load from text and binary files by PR#3745
- Sample for LoadFromEnumerable with a SchemaDefinition by PR#3696
- Sample for LogLossPerClass metric for multiclass trainers by PR#3724
- Sample for WithOnFitDelegate by PR#3738
- Sample for loading data using text loader using various techniques by PR#3793
Remarks
- Microsoft.ML.TensorFlow, Microsoft.ML.TimeSeries, Microsoft.ML.OnnxConverter, Microsoft.ML.OnnxTransformer nugets are expected to be upgraded to release in ML.NET 1.2 release. Please give them a try and provide feedback.
ML.NET v1.0.0
ML.NET is now 1.0.0
. 🍰
This is our stable API. In this final sprint we have worked mainly on improving the documentation. Please let us know what you like about ML.NET and what we can improve to make your use of machine learning easier in .NET. With this release we are committed to staying backward compatible.
ML.NET v1.0.0-preview
This is the RC1
release for ML.NET version 1.0.0
. The work on the API project has been concluded. The focus before releasing version 1.0.0
would be to enhance documentation and samples as well as addressing any critical issues. Please note that NuGets have now 1.0.0-preview as well as 0.12.0-preview versions depending on which one will become stable release. Also IDataView
is now in Microsoft.ML
namespace. As always thank you so much for being an awesome community of Machine Learning enthusiasts.
ML.NET v0.11
A lot more API clean up as well as many fixes are packed in this release! We are quickly approaching RC1 release for ML.NET and our first priority is to complete the API related work. Thank you for being patient while we get closer to our stable surface. We are super excited to work through the remaining issues and ship V0.1. In fact we are so excited that in the release notes was mentioned that FastTree
has a new package now. That is partially true as you can see in our nightly builds but 0.11 still does not have a separate package. oh well! :)
ML.NET v0.10
More API clean up as well as many fixes are in this release. We are preparing for our stable API in 1.0 release and greatly appreciate the community feedback and engagement. Please note that IDataView
is now in Microsoft.Data.DataView
#2220. Also please note that #2239 has changed the order of parameters and your existing code needs to be updated.
ML.NET v0.9
This release brings many fixes as well as significant API clean up. We have removed the API that was marked obsolete. Explainability features of ML.NET have also got some improvements as originally planned. Thanks to all the great support as we improve the API for 1.0 release.
ML.NET v0.8
ML.NET 0.8 is here with some very exciting features. Explainability, stateful time series, implicit feedback in recommendations and better debuggability as well as many bug fixes are included in this release. Please note that the legacy API has been marked obsolete and will be removed in the next release. Many thanks to the awesome users and community contributors for your continuous support.
ML.NET v0.7
ML.NET 0.7 brings multiple enhancements such as anomaly detection, matrix factorization, x86 builds, as well as custom transforms. We continue to refine our API with many exciting extensions. Thanks to everyone for your massive support and contributions in this release.
ML.NET v0.6
ML.NET 0.6 is a milestone release as it introduces the new API. There is major work to improve the internals of the library. This release is also bringing massive performance gains in predictions. We are also excited to introduce ONNX transform.
Release Notes
Download and Install
Known issues:
[The Trainers list for training context is empty]
(#1054)
ML.NET v0.5
ML.NET 0.5 makes TensorFlow transform available. We continue to work towards new API. We have also introduced many enhancements and bug fixes. Our sincere gratitude to all the amazing users and contributors.