|
#ifndef _LIBSVM_H |
|
#define _LIBSVM_H |
|
|
|
#define LIBSVM_VERSION 310 |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
#include "_svm_cython_blas_helpers.h" |
|
|
|
struct svm_node |
|
{ |
|
int dim; |
|
int ind; |
|
|
|
double *values; |
|
}; |
|
|
|
struct svm_problem |
|
{ |
|
int l; |
|
double *y; |
|
struct svm_node *x; |
|
double *W; |
|
}; |
|
|
|
|
|
struct svm_csr_node |
|
{ |
|
int index; |
|
double value; |
|
}; |
|
|
|
struct svm_csr_problem |
|
{ |
|
int l; |
|
double *y; |
|
struct svm_csr_node **x; |
|
double *W; |
|
}; |
|
|
|
|
|
enum { C_SVC, NU_SVC, ONE_CLASS, EPSILON_SVR, NU_SVR }; |
|
enum { LINEAR, POLY, RBF, SIGMOID, PRECOMPUTED }; |
|
|
|
struct svm_parameter |
|
{ |
|
int svm_type; |
|
int kernel_type; |
|
int degree; |
|
double gamma; |
|
double coef0; |
|
|
|
|
|
double cache_size; |
|
double eps; |
|
double C; |
|
int nr_weight; |
|
int *weight_label; |
|
double* weight; |
|
double nu; |
|
double p; |
|
int shrinking; |
|
int probability; |
|
int max_iter; |
|
int random_seed; |
|
}; |
|
|
|
|
|
|
|
|
|
struct svm_model |
|
{ |
|
struct svm_parameter param; |
|
int nr_class; |
|
int l; |
|
struct svm_node *SV; |
|
double **sv_coef; |
|
int *n_iter; |
|
|
|
int *sv_ind; |
|
|
|
double *rho; |
|
double *probA; |
|
double *probB; |
|
|
|
|
|
|
|
int *label; |
|
int *nSV; |
|
|
|
|
|
int free_sv; |
|
|
|
}; |
|
|
|
|
|
struct svm_csr_model |
|
{ |
|
struct svm_parameter param; |
|
int nr_class; |
|
int l; |
|
struct svm_csr_node **SV; |
|
double **sv_coef; |
|
int *n_iter; |
|
|
|
int *sv_ind; |
|
|
|
double *rho; |
|
double *probA; |
|
double *probB; |
|
|
|
|
|
|
|
int *label; |
|
int *nSV; |
|
|
|
|
|
int free_sv; |
|
|
|
}; |
|
|
|
|
|
struct svm_model *svm_train(const struct svm_problem *prob, const struct svm_parameter *param, int *status, BlasFunctions *blas_functions); |
|
void svm_cross_validation(const struct svm_problem *prob, const struct svm_parameter *param, int nr_fold, double *target, BlasFunctions *blas_functions); |
|
|
|
int svm_save_model(const char *model_file_name, const struct svm_model *model); |
|
struct svm_model *svm_load_model(const char *model_file_name); |
|
|
|
int svm_get_svm_type(const struct svm_model *model); |
|
int svm_get_nr_class(const struct svm_model *model); |
|
void svm_get_labels(const struct svm_model *model, int *label); |
|
double svm_get_svr_probability(const struct svm_model *model); |
|
|
|
double svm_predict_values(const struct svm_model *model, const struct svm_node *x, double* dec_values, BlasFunctions *blas_functions); |
|
double svm_predict(const struct svm_model *model, const struct svm_node *x, BlasFunctions *blas_functions); |
|
double svm_predict_probability(const struct svm_model *model, const struct svm_node *x, double* prob_estimates, BlasFunctions *blas_functions); |
|
|
|
void svm_free_model_content(struct svm_model *model_ptr); |
|
void svm_free_and_destroy_model(struct svm_model **model_ptr_ptr); |
|
void svm_destroy_param(struct svm_parameter *param); |
|
|
|
const char *svm_check_parameter(const struct svm_problem *prob, const struct svm_parameter *param); |
|
|
|
void svm_set_print_string_function(void (*print_func)(const char *)); |
|
|
|
|
|
|
|
|
|
|
|
struct svm_csr_model *svm_csr_train(const struct svm_csr_problem *prob, const struct svm_parameter *param, int *status, BlasFunctions *blas_functions); |
|
void svm_csr_cross_validation(const struct svm_csr_problem *prob, const struct svm_parameter *param, int nr_fold, double *target, BlasFunctions *blas_functions); |
|
|
|
int svm_csr_get_svm_type(const struct svm_csr_model *model); |
|
int svm_csr_get_nr_class(const struct svm_csr_model *model); |
|
void svm_csr_get_labels(const struct svm_csr_model *model, int *label); |
|
double svm_csr_get_svr_probability(const struct svm_csr_model *model); |
|
|
|
double svm_csr_predict_values(const struct svm_csr_model *model, const struct svm_csr_node *x, double* dec_values, BlasFunctions *blas_functions); |
|
double svm_csr_predict(const struct svm_csr_model *model, const struct svm_csr_node *x, BlasFunctions *blas_functions); |
|
double svm_csr_predict_probability(const struct svm_csr_model *model, const struct svm_csr_node *x, double* prob_estimates, BlasFunctions *blas_functions); |
|
|
|
void svm_csr_free_model_content(struct svm_csr_model *model_ptr); |
|
void svm_csr_free_and_destroy_model(struct svm_csr_model **model_ptr_ptr); |
|
void svm_csr_destroy_param(struct svm_parameter *param); |
|
|
|
const char *svm_csr_check_parameter(const struct svm_csr_problem *prob, const struct svm_parameter *param); |
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus |
|
} |
|
#endif |
|
|
|
#endif |
|
|