svmsmoset
has been removed.
Replace all instances of svmsmoset
with the corresponding
name-value pair argument to fitcsvm
.
Instead of
svmsmoset('TolKKT',value)
use
fitcsvm(X,Y,'DeltaGradientTolerance',value)
.
For equivalent functionality, the 'Solver'
must have
a value of 'SMO'
.
Instead of
svmsmoset('MaxIter',value)
use
fitcsvm(X,Y,'IterationLimit',value)
.
Instead of
svmsmoset('Display',value)
use
fitcsvm(X,Y,'Verbose',value)
.
The values for 'Verbose'
do not directly correspond
to the values for 'Display'
.
There is no replacement for
svmsmoset('KKTViolationLevel',value)
.
Instead of
svmsmoset('KernelCacheLimit',value)
use
fitcsvm(X,Y,'CacheSize',value)
.
The values for 'CacheSize'
do not directly correspond
to the values for 'KernelCacheLimit'
.
For more information, see the fitcsvm
reference page in
the Statistics and Machine Learning Toolbox documentation.