| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| ML.NET 4.0.3 source code.tar.gz | 2025-10-27 | 62.2 MB | |
| ML.NET 4.0.3 source code.zip | 2025-10-27 | 64.9 MB | |
| README.md | 2025-10-27 | 1.1 kB | |
| Totals: 3 Items | 127.1 MB | 0 | |
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:
powershell Get-ChildItem "$env:TEMP" -Directory -Filter "ml_dotnet*" | Remove-Item -Recurse -ForceUsing Bash:
bash find "$TEMP" -type d -name "ml_dotnet*" -exec rm -rf {} +