74 typedef std::map<String, std::pair<double, double> >
ScaleMap;
102 void setup(
PredictorMap& predictors,
const std::map<Size, Int>& labels);
113 void predict(std::vector<Prediction>& predictions,
114 std::vector<Size> indexes = std::vector<Size>())
const;
124 void getFeatureWeights(std::map<String, double>& feature_weights)
const;
127 void writeXvalResults(
const String& path)
const;
139 std::vector<std::vector<struct svm_node> >
nodes_;
142 struct svm_problem data_;
145 struct svm_parameter svm_params_;
169 void scaleData_(PredictorMap& predictors);
172 void convertData_(
const PredictorMap& predictors);
175 std::pair<double, double> chooseBestParameters_()
const;
178 void optimizeParameters_();
SVMPerformance performance_
Cross-validation results.
Definition: SimpleSVM.h:163
Int label
Predicted class label.
Definition: SimpleSVM.h:80
A more convenient string class.
Definition: String.h:58
std::map< String, std::pair< double, double > > ScaleMap
Mapping from predictor name to predictor min and max.
Definition: SimpleSVM.h:74
std::vector< String > predictor_names_
Names of predictors in the model (excluding uninformative ones)
Definition: SimpleSVM.h:151
SVM prediction result.
Definition: SimpleSVM.h:77
struct svm_model * model_
Pointer to SVM model (LIBSVM format)
Definition: SimpleSVM.h:148
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
std::vector< std::vector< struct svm_node > > nodes_
Values of predictors (LIBSVM format)
Definition: SimpleSVM.h:139
ScaleMap scaling_
Mapping from predictor name to predictor min and max.
Definition: SimpleSVM.h:160
std::vector< double > log2_gamma_
Definition: SimpleSVM.h:157
std::map< Int, double > probabilities
Predicted probabilities for different classes.
Definition: SimpleSVM.h:83
static void printNull_(const char *)
Dummy function to suppress LIBSVM output.
Definition: SimpleSVM.h:166
Simple interface to support vector machines for classification (via LIBSVM).
Definition: SimpleSVM.h:65
Size n_parts_
Number of partitions for cross-validation.
Definition: SimpleSVM.h:154
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
A base class for all classes handling default parameters.
Definition: DefaultParamHandler.h:92
std::vector< std::vector< double > > SVMPerformance
Classification performance for different param. combinations (C/gamma):
Definition: SimpleSVM.h:136
int Int
Signed integer type.
Definition: Types.h:102
std::map< String, std::vector< double > > PredictorMap
Mapping from predictor name to vector of predictor values.
Definition: SimpleSVM.h:71