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
System Information (please complete the following information):
Windows 10
ML.NET Version: 3.0.1
Api Compatibility Level - .Net FrameWork
VS 2022 17.11.2
NuGet for Unity 4.1.1
Describe the bug
Trying to fit the model causes DllNotFoundException: CpuMathNative error in the console.
To Reproduce
Steps to reproduce the behavior:
Install Microsoft.ML(3.0.1) and System.Runtime.CompilerServices.Unsafe(6.0.0) using NuGet for Unity. (other dependencies are automatically installed - such as Microsoft.ML.CpuMath.3.0.1, Microsoft.ML.DataView.3.0.1, System.Memory.4.5.5, System.Numerics.Tensors.8.0.0)
Create TextLoader to read data from csv file, make a pipeline to preprocess data and fit the model
See error
Expected behavior
The fiting must create a model that is ready to be used for evaluetion and prediction.
Actual behaviour
(In Editor)
"DllNotFoundExceptionL CpuMathNative ... "
Additional context
The bug is duplicate of #6741. The proposed solution #6741 (comment) by @luisquintanilla does not fix the issue, because in the Microsoft.ML.CpuMath package that was importet as Nuget there was no CPUMathNative.dll, only Microsoft.ML.CPUMath.dll.
Actually the problem was solved with copying of the missing dll from the Minimal ML Test example posted on following issue: MLContext.Data.LoadFromEnumerable() not working in Unity for netstandard2.0 api, but the CpuMathNative.dll is actually missing in the last version of Microsoft.ML.CpuMath.
The text was updated successfully, but these errors were encountered:
System Information (please complete the following information):
Describe the bug
Trying to fit the model causes DllNotFoundException: CpuMathNative error in the console.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The fiting must create a model that is ready to be used for evaluetion and prediction.
Actual behaviour
(In Editor)
"DllNotFoundExceptionL CpuMathNative ... "
Screenshots, Code, Sample Projects
Dlls import settings
Additional context
The bug is duplicate of #6741. The proposed solution #6741 (comment) by @luisquintanilla does not fix the issue, because in the Microsoft.ML.CpuMath package that was importet as Nuget there was no CPUMathNative.dll, only Microsoft.ML.CPUMath.dll.
Actually the problem was solved with copying of the missing dll from the Minimal ML Test example posted on following issue: MLContext.Data.LoadFromEnumerable() not working in Unity for netstandard2.0 api, but the CpuMathNative.dll is actually missing in the last version of Microsoft.ML.CpuMath.
The text was updated successfully, but these errors were encountered: