Uses of Class
libsvm.svm_model
-
Packages that use svm_model Package Description libsvm org.instantsvm org.instantsvm.regression org.instantsvm.utils -
-
Uses of svm_model in libsvm
Methods in libsvm that return svm_model Modifier and Type Method Description static svm_model
svm. svm_load_model(BufferedReader fp)
static svm_model
svm. svm_load_model(String model_file_name)
static svm_model
svm. svm_train(svm_problem prob, svm_parameter param)
Methods in libsvm with parameters of type svm_model Modifier and Type Method Description static int
svm. svm_check_probability_model(svm_model model)
static void
svm. svm_get_labels(svm_model model, int[] label)
static int
svm. svm_get_nr_class(svm_model model)
static int
svm. svm_get_svm_type(svm_model model)
static double
svm. svm_get_svr_probability(svm_model model)
static double
svm. svm_predict(svm_model model, svm_node[] x)
static double
svm. svm_predict_probability(svm_model model, svm_node[] x, double[] prob_estimates)
static double
svm. svm_predict_values(svm_model model, svm_node[] x, double[] dec_values)
static void
svm. svm_save_model(String model_file_name, svm_model model)
-
Uses of svm_model in org.instantsvm
Fields in org.instantsvm declared as svm_model Modifier and Type Field Description protected svm_model
SVM. model
Methods in org.instantsvm with parameters of type svm_model Modifier and Type Method Description protected void
SVM. mountModel(svm_model model)
Constructors in org.instantsvm with parameters of type svm_model Constructor Description SVM(svm_model model)
-
Uses of svm_model in org.instantsvm.regression
Constructors in org.instantsvm.regression with parameters of type svm_model Constructor Description RegressionSVM(svm_model model)
-
Uses of svm_model in org.instantsvm.utils
Methods in org.instantsvm.utils that return svm_model Modifier and Type Method Description static svm_model
LibSvmIO. loadModel(String filename)
-