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_modelsvm. svm_load_model(BufferedReader fp)static svm_modelsvm. svm_load_model(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_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(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_modelSVM. modelMethods in org.instantsvm with parameters of type svm_model Modifier and Type Method Description protected voidSVM. 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_modelLibSvmIO. loadModel(String filename) 
 -