Skip to content

Bump Microsoft.ML and Microsoft.ML.SampleUtils#124

Open
dependabot[bot] wants to merge 1 commit intoadd-code-qlfrom
dependabot/nuget/machine-learning/tutorials/TextClassificationTF/multi-df258b7230
Open

Bump Microsoft.ML and Microsoft.ML.SampleUtils#124
dependabot[bot] wants to merge 1 commit intoadd-code-qlfrom
dependabot/nuget/machine-learning/tutorials/TextClassificationTF/multi-df258b7230

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Feb 5, 2026

Updated Microsoft.ML from 1.5.2 to 5.0.0.

Release notes

Sourced from Microsoft.ML's releases.

5.0.0

ML.NET 5.0.0

New Features

  • [GenAI] Introduce CausalLMPipelineChatClient for MEAI.IChatClient (#​7270)
  • Introducing SentencePiece Unigram Tokenizer Model (#​7390)
  • Phi-4 Tokenizer Support (#​7396)
  • Support O3 OpenAI model mapping (#​7394)
  • Support ByteLevel encoding in Bpe tokenizer to support DeepSeek model (#​7425)
  • Support Tiktoken Gpt-4.1 Model (#​7453)
  • Support OpenAI OSS Models with Tiktoken tokenizer (#​7494)
  • Add deterministic option for LightGBM (#​7415)
  • Added NumberOfLeaves to FastForestRegression and FastForestOva options (#​7499) - Thanks @​JoshuaSloan!

Enhancements

  • Add Timeout to Regex used in the tokenizers (#​7284)
  • Final tokenizer's cleanup (#​7291)
  • Update System.Numerics.Tensors version (#​7322) - Thanks @​asmirnov82!
  • [GenAI] SFT Example (#​7316)
  • Update M.E.AI version used by Microsoft.ML.GenAI.Core (#​7329)
  • Update DependencyModel (#​7338)
  • Some tweaks to the Microsoft.ML.Tokenizers PACKAGE.md (#​7360)
  • Consolidate System.Numerics.Tensors dependency (#​7356) - Thanks @​asmirnov82!
  • Update Microsoft.Extensions.AI to 9.3.0-preview.1.25114.11 (#​7388)
  • Create SentencePieceTokenizer from options object (#​7403)
  • Unigram tokenizer fixes (#​7409)
  • Update to M.E.AI 9.3.0-preview.1.25161.3 (#​7414)
  • Reduce usage of unsafe constructs throughout codebase (#​7426) - Thanks @​GrabYourPitchforks!
  • Cleanup SentencePiece tokenizer (#​7427)
  • Update to M.E.AI 9.4.0-preview.1.25207.5 (#​7439)
  • Update to M.E.AI 9.4.3-preview.1.25230.7 (#​7459)
  • Update to stable Microsoft.Extensions.AI.Abstractions (#​7466)
  • Convert repository to NuGet Central Package Management (#​7482)
  • Rename Casual to Causal (#​7484) - Thanks @​feiyun0112!
  • Updated Tensorflow.Net to 0.70.2 with Tensorflow 2.7.0. (#​7472) - Thanks @​Crichen!
  • Mark internal classes as internal (#​7511)
  • Address the design review feedback (#​7513)
  • BpeTokenizer Cleanup (#​7514)
  • Improve native build and mark our official build as CFS Clean (#​7516)
  • Improve unique directory generation for temp files (#​7520)
  • Updating OnnxRuntime (#​7469)

Bug Fixes

  • Fix broken inheritance from DataFrameColumn class (#​7324) - Thanks @​asmirnov82!
  • Moved SpecialTokens assignment after the modification to avoid "Collection Modified" error (#​7328) - Thanks @​shaltielshmid!
  • Fix DateTime export to csv with culture info (#​7358) - Thanks @​asmirnov82!
  • Increase cancelling waiting time for AutoMLExperiment_return_current_best_trial_when_ct_is_canceled_with_trial_completed_Async (#​7424)
  • Fixed light gbm update (#​7431)
  • Fix incorrect IntPtr null check in FftUtils (#​7434) - Thanks @​GrabYourPitchforks!
  • ImageClassificationTrainer PredictedLabelColumnName bug when the name is not default (#​7458) - Thanks @​feiyun0112!
  • Fix ElementwiseGreaterThanOrEqual to use >= instead of == (#​7475) - Thanks @​vsarakhan!
    ... (truncated)

5.0.0-preview1

ML.NET 5.0-preview.1

New Features

  • Introducing SentencePiece Unigram Tokenizer Model (#​7390)
  • Phi-4 Tokenizer Support (#​7396)

Enhancements

  • Support O3 OpenAI model mapping (#​7394)

Bug Fixes

  • Fix DateTime export to csv with culture info (#​7358) - Thanks @​asmirnov82!
  • Moved SpecialTokens assignment after the modification to avoid "Collection Modified" error (#​7328) - Thanks @​shaltielshmid!
  • Fix broken inheritance from DataFrameColumn class (#​7324) - Thanks @​asmirnov82!

Build / Test updates

  • [main] Update dependencies from dotnet/arcade (#​7387)
  • Update Microsoft.Extensions.AI to 9.3.0-preview.1.25114.11 (#​7388)
  • Update MSTest to latest (#​7349)
  • [main] Update dependencies from dotnet/arcade (#​7352)
  • Consolidate System.Numerics.Tensors dependency (#​7356) - Thanks @​asmirnov82!
  • [main] Update dependencies from dotnet/arcade (#​7382)
  • [main] Update dependencies from dotnet/arcade (#​7376)
  • [main] Update dependencies from dotnet/arcade (#​7374)
  • Net8 tests (#​7319)
  • [main] Update dependencies from dotnet/arcade (#​7266)
  • Update DependencyModel (#​7338)
  • Update M.E.AI version used by Microsoft.ML.GenAI.Core (#​7329)
  • Update System.Numerics.Tensors version (#​7322) - Thanks @​asmirnov82!

Documentation Updates

  • Fix up docs for MLContext (#​7334)
  • Some tweaks to the Microsoft.ML.Tokenizers PACKAGE.md (#​7360)
  • [GenAI] SFT Example (#​7316)
  • Update dynamic loading report reference (#​7321) - Thanks @​emmanuel-ferdman!

4.0.3

ML.NET 4.0.3

Bug Fixes

  • [release/4.0] Improve unique directory generation for temp files (#​7528)
    • Compatibility note: This change resolves a performance problem where past versions of ML.NET would leave behind folders with the pattern ml_dotnet\d+ in the temp directory, which would cause model opening performance to degrade. This fixes the problem. You may also wish to delete these empty folders once after updating.

      Using powershell:

      Get-ChildItem "$env:TEMP" -Directory -Filter "ml_dotnet*" | Remove-Item -Recurse -Force

      Using Bash:

      find "$TEMP" -type d -name "ml_dotnet*" -exec rm -rf {} +

Build / Test updates

  • [release/4.0] Update dependencies from dotnet/arcade (#​7470)
  • [release/4.0] Use arcade script for installing MacOS dependencies (#​7534)

4.0.2

ML.NET 4.0.2

Enhancements

  • [release/4.0] Support O3 OpenAI model mapping #​7395 (#​7395)

Build / Test updates

  • [release/4.0] Update dependencies from dotnet/arcade (#​7369)
  • [release/4.0] Update dependencies from dotnet/arcade (#​7377)
  • [release/4.0] Update dependencies from dotnet/arcade (#​7386)

4.0.1

ML.NET Servicing Release 4.0.1

Bug Fixes

  • Fix the BERT tokenizer to handle special tokens correctly. (#​7330) - Thanks @​shaltielshmid
  • Fix broken inheritance from DataFrameColumn class (#​7324) (#​7331) - Thanks @​asmirnov82!

Build / Test updates

  • Update System.Numerics.Tensors version (#​7322) (#​7355) - Thanks @​asmirnov82!
  • [release/4.0] Update dependencies from dotnet/arcade (#​7327)
  • Update MicrosoftExtensionsDependencyModelVersion (#​7342)

Documentation Updates

  • [release/4.0] Some tweaks to the Microsoft.ML.Tokenizers PACKAGE.md (#​7364)
  • [release/4.0] Fix up docs for MLContext (#​7363)

4.0.0-preview1

What's Changed

3.0.1

ML.NET 3.0.1

New Features

  • Add support for Apache.Arrow.Types.TimestampType to DataFrame (#​6871) - Thanks @​asmirnov82!

Enhancements

  • Update TorchSharp to latest version (#​6954)
  • Reorganize dataframe files (#​6872) - Thanks @​asmirnov82!
  • Add sample variance and standard deviation to NormalizeMeanVariance (#​6885) - Thanks @​tearlant!
  • Fixes NER to correctly expand/shrink the labels (#​6928)

Bug Fixes

  • Fix SearchSpace reference not being included (#​6951)
  • Rename NameEntity to NamedEntity (#​6917)
  • Fix assert by only accessing idx (#​6924)

Build / Test updates

  • Add Backport github workflow (#​6944)
  • Branding for 3.0.1 (#​6943)
  • Only use semi-colons for NoWarn - fixes build break (#​6935)
  • Update dependencies from dotnet/arcade (#​6703)
  • Update dependencies from dotnet/arcade (#​6957)
  • Migrate to the 'locker' GitHub action for locking closed/stale issues/PRs (#​6896)
  • Make double assertions compare with tolerance instead of precision (#​6923)
  • Don't include the SDK in our helix payload (#​6918)

Documentation Updates

  • Updated ml.net versioning (#​6907)
  • Update developer-guide.md (#​6870) - Thanks @​computerscienceiscool!
  • Update release-3.0.0.md (#​6895) - Thanks @​taeerhebend!

Breaking changes

  • Rename NameEntity to NamedEntity (#​6917)

3.0.0

ML.NET 3.0.0

New Features

  • Add the ability to use Object Detection using TorchSharp (#​6605) - We have added a new deep learning model back by TorchSharp that lets you fine tune your own Object Detection model!
  • Add SamplingKeyColumnName to AutoMLExperiment API (#​6649) - You can now set the SamplingKeyColumnName when you are using AutoML. Thanks @​torronen!
  • Add Object Detection to AutoML Sweeper (#​6633) - Added Object Detection to the AutoML Sweeper so now they can be used together.
  • Add String Vector support to DataFrame (#​6628) - Adds support for String Vectors in DataFrame. This also allows for Better IDataView <-> DataFrame conversions.
  • Add AutoZero tuner to BinaryClassification (#​6615) - Can now use AutoZero tuner in AutoML Binary Classification experiments.
  • Added in fairness assessment and mitigation (#​6539) - Support for fairness assessment and mitigation tool
  • Added in Support for some Intel OneDal Algorithms (#​6521) - You can now use Intel's OneDal for some algorithms. This gives you access to some accelerated versions of these algorithms. The models are fully interoperable between ML.NET's normal models and these, so you can train with OneDal and then still run on machines where OneDal is not supported. Thanks @​rgesteve!
  • Add in ability to have pre-defined weights for ngrams (#​6458) - If you know the weights of your NGrams already you can now directly provide that.
  • Add SentenceSimilarity sweepable estimator in AutoML (#​6445) - Can now use SentenceSimilarity with the sweepable estimator.
  • Add VBufferDataFrameCoumn to DataFrame (#​6409) - Now DataFrame can support the VBuffer from ML.NET so the IDataView <-> DataFrame conversion can work with those types.
  • Added ADO.NET importing/exporting functionality to DataFrame (#​5975) - Can now use ADO.NET import/export with DataFrames. Thanks @​andrei-faber!
  • Added native binaries for Windows Arm64 (#​6813) - This allows certain native transforms to be run on Widows Arm that were disabled before.
  • Switches some computational code to use the new Tensor Primitives package (#​6875)
  • Add QA sweepable estimator in AutoML (#​6781)
  • Add NameEntityRecognition and Q&A deep learning tasks. (#​6760)
  • Adds the ability to load a pre-trained LightGBM file and import it into ML.Net. (#​6569)

Enhancements

  • Expose ExperimentSettings.MaxModel as public (#​6663) - Exposes ExperimentSettings.MaxModel as public so now you can set the number of Max Models you want for an AutoML experiment.
  • Update to latest version of TorchSharp (#​6636) - Updated to the latest version of TorchSharp and fixed any breaking changes so we can take advantage of their new features and bug fixes.
  • Update to latest version of Onnx Runtime (#​6624) - Updated to the latest version of Onnx Runtime and fixed any breaking changes so we can take advantage of their new features and bug fixes.
  • Update ML.NET to compile with .NET8 (#​6641) - Removed some deprecated code now throws errors on .NET8 as well as other minor fixes to allow working/building with .NET8.
  • Added more logging to Object Detection (#​6646) - Added more logging while Object Detection is training so even if epochs take a long time you can be sure things are still moving.
  • Update timeout error message in AutoMLExperiment (#​6613) - Updated the error message so it is more clear what happened.
  • Add batchsize and arch to imageClassification SweepableTrainer (#​6597) - Added batchsize and arch to the ImageClassification SweepableTrainer so those can now be trained on.
  • Update max_model when trial fails (#​6596)
  • Add default search space for standard trainers (#​6576) - Added a default search space for all standard trainers so users have reasonable default values.
  • Adding more metrics to BinaryClassification Experiment (#​6571)
  • Add checkAlive in NasBertTrainer (#​6546) - Now we check between batches if cancellation was requested and stop processing if so.
  • OneDAL - Fallback to default implementation (#​6538) - If you specify you want to use OneDal but something happens that prevents you from using it, like it can't find the binaries/etc, it will auto default back to the normal implementation instead of crashing.
  • Add addKeyValueAnnotationsAsText flag in AutoML (#​6535)
  • Add continuous resource monitoring to AutoML.IMonitor (#​6520) - Thanks @​andrasfuchs!
  • Update WebClient to HttpClient implementations (#​6476) - Update the usage of WebClient to HttpClient since WebClient is now deprecated. Thanks @​rgesteve!
  • Set AutoML trial to unsuccess if trial loss is nan/inf (#​6430) - Now trial will be marked as unsuccesssful if the loss is an invalid number.
  • Add diskConvert option in fast tree search space (#​6316)
  • Avoid Boxing/Unboxing on accessing elements of VBufferDataFrameColumn (#​6867) and (#​6865) - Thanks @​asmirnov82!
  • Update LightGBM to version 3.X.X from 2.X.X (#​6880)
  • Implement vectorized binary arithmetic operations for DataFrames (#​6854) - Thanks @​asmirnov82!
  • Upgrade .NET Interactive (#​6857) - Thanks @​colombod!
  • Improve performance of column cloning inside DataFrame arithmetics (#​6814) - Thanks @​asmirnov82!
  • Add performance benchmarks for dataframe arithmetic operations (#​6827) - Thanks @​asmirnov82!
  • Simplify tt files for PrimitiveDataFrameColumnAritmetics (#​6830) - Thanks @​asmirnov82!
  • Improve performance of DataFrame binary comparison operations (#​6869) - Thanks @​asmirnov82!
  • Allow a CultureInfo to be used for parsing CSV values into DataFrame (#​6782) - Thanks @​asmirnov82!
  • File-scoped namespaces in files under Prediction (Microsoft.ML.Core) (#​6792) - Thanks @​Lehonti!
  • File-scoped namespaces in files under ComponentModel (Microsoft.ML.Core) (#​6788) - Thanks @​Lehonti!
  • File-scoped namespaces in files under Data (Microsoft.ML.Core) (#​6789) - Thanks @​Lehonti!
    ... (truncated)

3.0.0-Preview

ML.NET 3.0.0 Preview

New Features

  • Add the ability to use Object Detection using TorchSharp (#​6605) - We have added a new deep learning model back by TorchSharp that lets you fine tune your own Object Detection model!
  • Add SamplingKeyColumnName to AutoMLExperiment API (#​6649) - You can now set the SamplingKeyColumnName when you are using AutoML. Thanks @​torronen!
  • Add Object Detection to AutoML Sweeper (#​6633) - Added Object Detection to the AutoML Sweeper so now they can be used together.
  • Add String Vector support to DataFrame (#​6628) - Adds support for String Vectors in DataFrame. This also allows for Better IDataView <-> DataFrame conversions.
  • Add AutoZero tuner to BinaryClassification (#​6615) - Can now user AutoZero tuner in AutoML Binary Classification experiments.
  • Added in fairness assessment and mitigation (#​6539) - Support for fairness assessment and mitigation tool
  • Added in Support for some Intel OneDal Algorithms (#​6521) - You can now use Intel's OneDal for some algorithms. This gives you access to some accelerated versions of these algorithms. The models are fully interoperable between ML.NET's normal models and these, so you can train with OneDal and then still run on machines where OneDal is not supported. Thanks @​rgesteve!
  • Add in ability to have pre-defined weights for ngrams (#​6458) - If you know the weights of your NGrams already you can now directly provide that.
  • Add SentenceSimilarity sweepable estimator in AutoML (#​6445) - Can now use SentenceSimilarity with the sweepable estimator.
  • Add VBufferDataFrameCoumn to DataFrame (#​6445) - Now DataFrame can support the VBuffer from ML.NET so the IDataView <-> DataFrame conversion can work with those types.
  • Added ADO.NET importing/exporting functionality to DataFrame (#​5975) - Can now use ADO.NET import/export with DataFrames. Thanks @​andrei-faber!

Enhancements

  • Expose ExperimentSettings.MaxModel as public (#​6663) - Exposes ExperimentSettings.MaxModel as public so now you can set the number of Max Models you want for an AutoML experiment.
  • Update to latest version of TorchSharp (#​6636) - Updated to the latest version of TorchSharp and fixed any breaking changes so we can take advantage of their new features and bug fixes.
  • Update to latest version of Onnx Runtime (#​6624) - Updated to the latest version of Onnx Runtime and fixed any breaking changes so we can take advantage of their new features and bug fixes.
  • Update ML.NET to compile with .NET8 (#​6641) - Removed some deprecated code now throws errors on .NET8 as well as other minor fixes to allow working/building with .NET8.
  • Added more logging to Object Detection (#​6646) - Added more logging while Object Detection is training so even if epochs take a long time you can be sure things are still moving.
  • Update timeout error message in AutoMLExperiment (#​6613) - Updated the error message so it is more clear what happened.
  • Add batchsize and arch to imageClassification SweepableTrainer (#​6597) - Added batchsize and arch to the ImageClassification SweepableTrainer so those can now be trained on.
  • Update max_model when trial fails (#​6596)
  • Add default search space for standard trainers (#​6576) - Added a default search space for all standard trainers so users have reasonable default values.
  • Adding more metrics to BinaryClassification Experiment (#​6571)
  • Add checkAlive in NasBertTrainer (#​6546) - Now we check between batches if cancellation was requested and stop processing if so.
  • OneDAL - Fallback to default implementation (#​6538) - If you specify you want to use OneDal but something happens that prevents you from using it, like it can't find the binaries/etc, it will auto default back to the normal implementation instead of crashing.
  • Add addKeyValueAnnotationsAsText flag in AutoML (#​6535)
  • Add continuous resource monitoring to AutoML.IMonitor (#​6520) - Thanks @​andrasfuchs!
  • Update WebClient to HttpClient implementations (#​6476) - Update a usage of WebClient to HttpClient since WebClient is now deprecated. Thanks @​rgesteve!
  • Set AutoML trial to unsuccess if trial loss is nan/inf (#​6430) - Now trial will be marked as unsuccesssful if the loss is an invalid number.
  • Add diskConvert option in fast tree search space (#​6316)

Bug Fixes

  • Fix DataFrame ToString (#​6673) - Use correct alignment for columns to produce readable output when columns have longer names. Thanks @​asmirnov82!
  • Fix DataFrame null math (#​6661) - Fixes max in DataFrame columns when there are null values to match what Pandas does.
  • Clean up PrimitiveColumnContainer (#​6656) - Cleaned up the code in PrimitiveColumnContainer so its more correct and easier to use.
  • Fix Apply in PrimitiveColumnContainer (#​6642) - Fixes the Apply method so it no longer changes the source column. Thanks @​janholo!
  • Fix datetime null error (#​6627) - Fixes loading a null datetime from a database so it now returns correctly instead of throwing an error.
  • Fix AggregateTrainingStopManager is trying to cancel disposed tokens (#​6612) - Will no longer try and cancel already disposed tokens.
  • Fix tostring bug for sweepable pipeline (#​6610)
  • Change Test to Validate in Dataset manager (#​6599)
  • Fixed System.OperationCanceledException when calling experimentResult.BestRun.Estimator.Fit (#​6572)
  • Fixed cancellation bug in SweepablePipelineRunner && Fixed object null exception in AutoML v1.0 regression API (#​6560)
  • Fixed one dal dispatching issues (#​6547) - OneDal now dispatches correctly.
  • Fixed Multi-threaded access issue (#​6537) - Fixed a multi-threaded access issue for variable length string arrays in ONNX models.
  • Fixed AutoML experiments in non declarative style not working (#​6447)

Build / Test updates

... (truncated)

2.0.1-Preview

Minor update for 2.0.0 that introduces a new api for ProduceWordBag so you can pass in a column that already has the weights set.

1.7.1

Minor servicing update with dependency updates and PFI bug fix for correctly finding the correct transformer to use.

1.7.0-rc.1

ML.NET 1.7.0 RC 1

Moving forward, we are going to be aligning more with the overall .NET release schedule. As such, this is a smaller release since we had a larger one just about 3 months ago but it aligns us with the release of .NET 6.

New Features

ML.NET

  • Switched to getting version from assembly custom attributes- (#​4512) Remove reliance on getting product version for model.zip/version.txt from FileVersionInfo and replace with using assembly custom attributes. This will help in supporting single file applications. (Thanks @​r0ss88)
  • Can now optionally not dispose of the underlying model when you dispose a prediction engine. (#​5964) A new prediction engine options class has been added that lets you determine if the underlying model should be disposed of or not when the prediction engine itself is disposed of.
  • Can now set the number of threads that onnx runtime uses (#​5962) This lets you specify the number of parallel threads ONNX runtime will use to execute the graph and run the model. (Thanks @​yaeldekel)
  • The PFI API has been completely reworked and is now much more user friendly (#​5934) You can now get the output from PFI as a dictionary mapping the column name (or the slot name) to its PFI result.

DataFrame

  • Can now merge using multiple columns in a JOIN condition (#​5838) (Thanks @​asmirnov82)

Enhancements

ML.NET

  • Run formatting on all src projects (#​5937) (Thanks @​jwood803)
  • Added BufferedStream for reading from DeflateStream - reduces loading time for .NET core (#​5924) (Thanks @​martintomasek)
  • Update editor config to match Roslyn and format samples (#​5893) (Thanks @​jwood803)
  • Few more minor editor config changes (#​5933)

DataFrame

  • Use Equals and = operator for DataViewType comparison (#​5942) (Thanks @​thoron)

Bug Fixes

  • Initialize _bestMetricValue when using the Loss metric (#​5939) (Thanks @​MiroslavKabat)

Build / Test updates

  • Changed the queues used for building/testing from Ubuntu 16.04 to 18.04 (#​5970)
  • Add in support for building with VS 2022. (#​5956)
  • Codecov yml token was added (#​5950)
  • Move from XliffTasks to Microsoft.DotNet.XliffTasks (#​5887)

Documentation Updates

  • Fixed up Readme, updated the roadmap, and new doc detailing some platform limitations. (#​5892)

Breaking Changes

  • None

1.6.0

ML.NET 1.6.0

New Features

  • 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)
  • Let user specify a temp path location (#​5782)
  • Clean up ONNX temp models by opening with a "Delete on close" flag (#​5782)
  • Ensures the named model is loaded in a PredictionEnginePool before use (#​5833) (Thanks @​feiyun0112)
  • Use indentation for 'if' (#​5825) (Thanks @​feiyun0112)
  • Use Append instead of AppendFormat if we don't need formatting (#​5826) (Thanks @​feiyun0112)
  • Cast by using is operator (#​5829) (Thanks @​feiyun0112)
  • Removed unnecessary return statements (#​5828) (Thanks @​feiyun0112)
  • Removed code that could never be executed (#​5808) (Thanks @​feiyun0112)
  • Remove some empty statements (#​5827) (Thanks @​feiyun0112)
  • Added in short-circuit logic for conditionals (#​5824) (Thanks @​feiyun0112)
  • Update LightGBM to v2.3.1 (#​5851)
  • Raised the default recursion limit for ONNX models from 10 to 100. (#​5796) (Thanks @​darth-vader-lg)
  • Speed up the inference of the Tensorflow saved_models. (#​5848) (Thanks @​darth-vader-lg)
  • Speed-up bitmap operations on images. (#​5857) (Thanks @​darth-vader-lg)
  • Updated to latest version of Intel MKL. (#​5867)
  • AutoML.NET specific enhancements
  • Offer suggestions for possibly mistyped label column names in AutoML (#​5624) (Thanks @​Crabzmatic)
  • DataFrame Specific enhancements
  • Improve csv parsing (#​5711)
  • IDataView to DataFrame (#​5712)
  • Update to the latest Microsoft.DotNet.Interactive (#​5710)
  • Move DataFrame to machinelearning repo (#​5641)
  • Improvements to the sort routine (#​5776)
  • Improvements to the Merge routine (#​5778)
  • Improve DataFrame exception text (#​5819) (Thanks @​asmirnov82)
  • DataFrame csv DateTime enhancements (#​5834)

Bug Fixes

  • Fix erroneous use of TaskContinuationOptions in ThreadUtils.cs (#​5753)
  • Fix a few locations that can try to access a null object (#​5804) (Thanks @​feiyun0112)
  • Use return value of method (#​5818) (Thanks @​feiyun0112)
  • Adding throw to some exceptions that weren't throwing them originally (#​5823) (Thanks @​feiyun0112)
  • Fixed a situation in the CountTargetEncodingTransformer where it never reached the stop condition (#​5822) (Thanks @​feiyun0112)
  • DataFrame Specific bug fixes
  • Fix issue with DataFrame Merge method (#​5768) (Thanks @​asmirnov82)

... (truncated)

1.5.5

New Features

  • New API allowing confidence parameter to be a double.(#​5623)
    . A new API has been added to accept double type for the confidence level. This helps when you need to have higher precision than an int will allow for. (Thank you @​esso23)
  • Support to export ValueMapping estimator to ONNX was added (#​5577)
  • New API to treat TensorFlow output as batched/not-batched (#​5634) A new API has been added so you can specify if the output from TensorFlow is batched or not.

Enhancements

  • Make ColumnInference serializable (#​5611)

Bug Fixes

  • AutoML.NET specific fixes.
    • Fixed an AutoML aggregate timeout exception (#​5631)
    • Offer suggestions for possibly mistyped label column names in AutoML (#​5624) (Thank you @​Crabzmatic)
  • Update some ToString conversions (#​5627) (Thanks @​4201104140)
  • Fixed an issue in SRCnnEntireAnomalyDetector (#​5579)
  • Fixed nuget.config multi-feed issue (#​5614)
  • Remove references to Microsoft.ML.Scoring (#​5602)
  • Fixed Averaged Perceptron default value (#​5586)

Build / Test updates

  • Fixing official build by adding homebrew bug workaround (#​5596)
  • Nuget.config url fix for roslyn compilers (#​5584)
  • Add SymSgdNative reference to AutoML.Tests.csproj (#​5559)

Documentation Updates

  • Updated documentation for the correct version of CUDA for TensorFlow. (#​5635)
  • Updates documentation for an issue with brew and installing libomp. (#​5635)
  • Updated an ONNX url to the correct url. (#​5635)
  • Added a note in the documentation that the PredictionEngine is not thread safe. (#​5583)

Breaking Changes

  • None

1.5.4

New Features

  • New API for exporting models to Onnx. (#​5544). A new API has been added to Onnx converter to specify the output columns you care about. This will export a smaller and more performant model in many cases.

Enhancements

  • Perf improvement for TopK Accuracy and return all topK in Classification Evaluator (#​5395) (Thank you @​jasallen)
  • Update OnnxRuntime to 1.6 (#​5529)
  • Updated tensorflow.net to 0.20.0 (#​5404)
  • Added in DcgTruncationLevel to AutoML api and increased default level to 10 (#​5433)

Bug Fixes

  • AutoML.NET specific fixes.
    • Fixed AutoFitMaxExperimentTimeTest (#​5506)
    • Fixed code generator tests failure (#​5520)
    • Use Timer and ctx.CancelExecution() to fix AutoML max-time experiment bug (#​5445)
    • Handled exception during GetNextPipeline for AutoML (#​5455)
    • Fixed internationalization bug(#​5162) in AutoML parameter sweeping caused by culture dependent float parsing. (#​5163)
    • Fixed MaxModels exit criteria for AutoML unit test (#​5471)
    • Fixed AutoML CrossValSummaryRunner for TopKAccuracyForAllK (#​5548)
  • Fixed bug in Tensorflow Transforer with handling primitive types (#​5547)
  • Fixed MLNet.CLI build error (#​5546)
  • Fixed memory leaks from OnnxTransformer (#​5518)
  • Fixed memory leak in object pool (#​5521)
  • Fixed Onnx Export for ProduceWordBags (#​5435)
  • Upgraded boundary calculation and expected value calculation in SrCnnEntireAnomalyDetector (#​5436)
  • Fixed SR anomaly score calculation at beginning (#​5502)
  • Improved error message in ColumnConcatenatingEstimator (#​5444)
  • Fixed issue 5020, allow ML.NET to load tf model with primitive input and output column (#​5468)
  • Fixed issue 4322, enable lda summary output (#​5260)
  • Fixed perf regression in ShuffleRows (#​5417)
  • Change the _maxCalibrationExamples default on CalibratorUtils (#​5415)

Build / Test updates

  • Migrated to Arcade build system that is used my multiple dotnet projects. This will give increased build/CI efficiencies going forward. Updated build instructions can be found in the docs/building folder
  • Fixed MacOS builds (#​5467 and #​5457)

Documentation Updates

  • Fixed Spelling on stopwords (#​5524)(Thank you @​LeoGaunt)
  • Changed LoadRawImages Sample (#​5460)

Breaking Changes

  • None

Commits viewable in compare view.

Updated Microsoft.ML.SampleUtils from 0.17.2 to 0.23.0.

Release notes

Sourced from Microsoft.ML.SampleUtils's releases.

No release notes found for this version range.

Commits viewable in compare view.

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps Microsoft.ML from 1.5.2 to 5.0.0
Bumps Microsoft.ML.SampleUtils from 0.17.2 to 0.23.0

---
updated-dependencies:
- dependency-name: Microsoft.ML
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Microsoft.ML.SampleUtils
  dependency-version: 0.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Feb 5, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants