You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for Arm/Arm64/Apple Silicon has been added. (#5789) You can now use most ML.NET on Arm/Arm64/Apple Silicon devices. Anything without a hard dependency on x86 SIMD instructions or Intel MKL are supported.
Support for specifying a temp path ML.NET will use. (#5782) You can now set the TempFilePath in the MLContext that it will use.
Support for specifying the recursion limit to use when loading an ONNX model (#5840) The recursion limit defaults to 100, but you can now specify the value in case you need to use a larger number. (Thanks @Crabzmatic)
Support for saving Tensorflow models in the SavedModel format added (#5797) You can now save models that use the Tensorflow SavedModel format instead of just the frozen graph format. (Thanks @darth-vader-lg)
DataFrame Specific enhancements
Extended DataFrame GroupBy operation (#5821) Extend DataFrame GroupBy operation by adding new property Groupings. This property returns collection of IGrouping objects (the same way as LINQ GroupBy operation does) (Thanks @asmirnov82)
Enhancements
Switched from using a fork of SharpZipLib to using the official package (#5735)