This repository was archived by the owner on Nov 19, 2020. It is now read-only.

Description
Hello,
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
};