Uses of Class
com.imsl.datamining.supportvectormachine.SVModel
Packages that use SVModel
-
Uses of SVModel in com.imsl.datamining.supportvectormachine
Methods in com.imsl.datamining.supportvectormachine that return SVModelModifier and TypeMethodDescriptionprotected SVModelSupportVectorMachine.getModel()Returns the model object.protected abstract SVModelAbstract method to perform the support vector machine optimization.protected SVModelPerforms the classification support vector machine optimization problem.protected SVModelPerforms the one class support vector machine optimization problem.protected SVModelPerforms the regression support vector machine optimization problem.Methods in com.imsl.datamining.supportvectormachine with parameters of type SVModelModifier and TypeMethodDescriptionprotected abstract double[]SupportVectorMachine.predictValues(SVModel model, double[][] attributeData) Abstract method for generating the predicted values using the fitted support vector machine model.protected double[]SVClassification.predictValues(SVModel model, double[][] attributeData) Generates the predicted values on the attribute data using the given support vector machine model.protected double[]SVOneClass.predictValues(SVModel model, double[][] attributeData) Generates the predicted values on the attribute data using the given support vector machine model.protected double[]SVRegression.predictValues(SVModel model, double[][] attributeData) Generates the predicted values on the attribute data using the given support vector machine model.