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
DAAL will only work in the dual space for SVM, so daal4py's patches patch SVC instead of LinearSVC. We could possibly add an option to benchmark LinearSVC instead, or only choose SVC by default if DAAL is present. What do you think?
The point is not what DAAL does but whether the benchmark is fair. If you want to compare solving a linear SVM between daal and scikit-learn, you should be using LinearSVC on the sklearn side.
Using
kernel='linear'
inSVC
basically makes no sense. You should be usingLinearSVC
and probably setdual=False
.The text was updated successfully, but these errors were encountered: