Uses of Class
libsvm.svm_model
-
-
Uses of svm_model in libsvm
Methods in libsvm that return svm_model Modifier and Type Method Description static svm_modelsvm. svm_load_model(java.io.BufferedReader fp)static svm_modelsvm. svm_load_model(java.lang.String model_file_name)static svm_modelsvm. svm_train(svm_problem prob, svm_parameter param)Methods in libsvm with parameters of type svm_model Modifier and Type Method Description static intsvm. svm_check_probability_model(svm_model model)static voidsvm. svm_get_labels(svm_model model, int[] label)static intsvm. svm_get_nr_class(svm_model model)static intsvm. svm_get_nr_sv(svm_model model)static voidsvm. svm_get_sv_indices(svm_model model, int[] indices)static intsvm. svm_get_svm_type(svm_model model)static doublesvm. svm_get_svr_probability(svm_model model)static doublesvm. svm_predict(svm_model model, svm_node[] x)static doublesvm. svm_predict_probability(svm_model model, svm_node[] x, double[] prob_estimates)static doublesvm. svm_predict_values(svm_model model, svm_node[] x, double[] dec_values)static voidsvm. svm_save_model(java.lang.String model_file_name, svm_model model)
-