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
In MultiClassificationSVM::trainWithoutScaling there are parallel tasks spawned using Parallel.forEach . This restults in non-deterministic classification results. Serializing this fixes the problem.
The reason is that somehow the SVMs size is truncated and data is lost. My feeling is that the issue is within KernelQMatrix.
The text was updated successfully, but these errors were encountered:
In
MultiClassificationSVM::trainWithoutScaling
there are parallel tasks spawned using Parallel.forEach . This restults in non-deterministic classification results. Serializing this fixes the problem.The reason is that somehow the SVMs size is truncated and data is lost. My feeling is that the issue is within
KernelQMatrix
.The text was updated successfully, but these errors were encountered: