mirror of
https://github.com/nmap/nmap.git
synced 2025-12-06 04:31:29 +00:00
svn merge --ignore-ancestry svn://svn.insecure.org/nmap@26621 svn://svn.insecure.org/nmap-exp/luis/nmap-os6 This is the IPv6 OS detection branch. "nmap -6 -O" works now, though at this point it only prints fingerprints and not OS guesses, because we need to collect more submissions.
74 lines
1.9 KiB
C
74 lines
1.9 KiB
C
#ifndef _LIBLINEAR_H
|
|
#define _LIBLINEAR_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct feature_node
|
|
{
|
|
int index;
|
|
double value;
|
|
};
|
|
|
|
struct problem
|
|
{
|
|
int l, n;
|
|
int *y;
|
|
struct feature_node **x;
|
|
double bias; /* < 0 if no bias term */
|
|
};
|
|
|
|
enum { L2R_LR, L2R_L2LOSS_SVC_DUAL, L2R_L2LOSS_SVC, L2R_L1LOSS_SVC_DUAL, MCSVM_CS, L1R_L2LOSS_SVC, L1R_LR, L2R_LR_DUAL }; /* solver_type */
|
|
|
|
struct parameter
|
|
{
|
|
int solver_type;
|
|
|
|
/* these are for training only */
|
|
double eps; /* stopping criteria */
|
|
double C;
|
|
int nr_weight;
|
|
int *weight_label;
|
|
double* weight;
|
|
};
|
|
|
|
struct model
|
|
{
|
|
struct parameter param;
|
|
int nr_class; /* number of classes */
|
|
int nr_feature;
|
|
double *w;
|
|
int *label; /* label of each class */
|
|
double bias;
|
|
};
|
|
|
|
struct model* train(const struct problem *prob, const struct parameter *param);
|
|
void cross_validation(const struct problem *prob, const struct parameter *param, int nr_fold, int *target);
|
|
|
|
int predict_values(const struct model *model_, const struct feature_node *x, double* dec_values);
|
|
int predict(const struct model *model_, const struct feature_node *x);
|
|
int predict_probability(const struct model *model_, const struct feature_node *x, double* prob_estimates);
|
|
|
|
int save_model(const char *model_file_name, const struct model *model_);
|
|
struct model *load_model(const char *model_file_name);
|
|
|
|
int get_nr_feature(const struct model *model_);
|
|
int get_nr_class(const struct model *model_);
|
|
void get_labels(const struct model *model_, int* label);
|
|
|
|
void free_model_content(struct model *model_ptr);
|
|
void free_and_destroy_model(struct model **model_ptr_ptr);
|
|
void destroy_param(struct parameter *param);
|
|
|
|
const char *check_parameter(const struct problem *prob, const struct parameter *param);
|
|
int check_probability_model(const struct model *model);
|
|
void set_print_string_function(void (*print_func) (const char*));
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _LIBLINEAR_H */
|
|
|