Example usage for weka.attributeSelection ASSearch forName

List of usage examples for weka.attributeSelection ASSearch forName

Introduction

In this page you can find the example usage for weka.attributeSelection ASSearch forName.

Prototype

public static ASSearch forName(String searchName, String[] options) throws Exception 

Source Link

Document

Creates a new instance of a search class given it's class name and (optional) arguments to pass to it's setOptions method.

Usage

From source file:mlflex.WekaInMemoryLearner.java

License:Open Source License

private ASSearch GetSearchMethod(ArrayList<String> algorithmParameters) throws Exception {
    return ASSearch.forName(algorithmParameters.get(2), algorithmParameters.get(3).split(" "));
}