Example usage for weka.core Utils unbackQuoteChars

List of usage examples for weka.core Utils unbackQuoteChars

Introduction

In this page you can find the example usage for weka.core Utils unbackQuoteChars.

Prototype

public static String unbackQuoteChars(String string) 

Source Link

Document

The inverse operation of backQuoteChars().

Usage

From source file:meka.experiment.DefaultExperiment.java

License:Open Source License

/**
 * Sets the options.//from www . j  a v a  2  s .  c o  m
 *
 * @param options       the options
 * @throws Exception    if parsing fails
 */
@Override
public void setOptions(String[] options) throws Exception {
    setNotes(Utils.unbackQuoteChars(OptionUtils.parse(options, "notes", "")));
    setClassifiers(OptionUtils.parse(options, 'C', MultiLabelClassifier.class));
    setDatasetProvider((DatasetProvider) OptionUtils.parse(options, 'D', getDefaultDatasetProvider()));
    setEvaluator((Evaluator) OptionUtils.parse(options, 'E', getDefaultEvaluator()));
    setStatisticsHandler(
            (EvaluationStatisticsHandler) OptionUtils.parse(options, 'S', getDefaultStatisticsHandler()));
}