List of usage examples for weka.attributeSelection ASSearch forName
public static ASSearch forName(String searchName, String[] options) throws Exception
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(" ")); }