Example usage for weka.core Option setOptionsForHierarchy

List of usage examples for weka.core Option setOptionsForHierarchy

Introduction

In this page you can find the example usage for weka.core Option setOptionsForHierarchy.

Prototype

public static void setOptionsForHierarchy(String[] options, Object target, Class<?> oldestAncestorClazz) 

Source Link

Document

Sets options on the target object.

Usage

From source file:affective.core.EmbeddingHandler.java

License:Open Source License

/**
 * Parses the options for this object./*  www.ja  v a  2s.  c o  m*/
 *  
 * @param options
 *            the options to use
 * @throws Exception
 *             if setting of options fails
 */
public void setOptions(String[] options) throws Exception {
    Option.setOptionsForHierarchy(options, this, this.getClass().getSuperclass());
}