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
{{ message }}
This repository was archived by the owner on Nov 19, 2020. It is now read-only.
Is it possible with Accord to create a linear SVM classifier with Stochastic Gradient Descent (SGD) training? I see there is a LogisticGradientDescent class, but it looks like this is for logistic regression, not SVM.
Thanks!
var logisticGradientDescent = new LogisticGradientDescent(new LogisticRegression(featureCount))
{
Stochastic = true,
LearningRate = 0.01
};