Uses of Class
org.machinelearning.svm.libsvm.svm_model
-
Packages that use svm_model Package Description com.actelion.research.calc.regression.svm org.machinelearning.svm.libsvm -
-
Uses of svm_model in com.actelion.research.calc.regression.svm
Methods in com.actelion.research.calc.regression.svm that return svm_model Modifier and Type Method Description static svm_model
svm. svm_load_model(java.io.BufferedReader fp)
static svm_model
svm. svm_load_model(java.lang.String model_file_name)
static svm_model
svm. svm_train(svm_problem prob, svm_parameter param, ProgressController pg)
Methods in com.actelion.research.calc.regression.svm 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_nr_sv(svm_model model)
static void
svm. svm_get_sv_indices(svm_model model, int[] indices)
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(java.lang.String model_file_name, svm_model model)
-
Uses of svm_model in org.machinelearning.svm.libsvm
Methods in org.machinelearning.svm.libsvm that return svm_model Modifier and Type Method Description static svm_model
svm. svm_load_model(java.io.BufferedReader fp)
static svm_model
svm. svm_load_model(java.lang.String model_file_name)
static svm_model
svm. svm_train(svm_problem prob, svm_parameter param)
Methods in org.machinelearning.svm.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_nr_sv(svm_model model)
static void
svm. svm_get_sv_indices(svm_model model, int[] indices)
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(java.lang.String model_file_name, svm_model model)
-