Package weka.core

Examples of weka.core.CheckGOE


   *
   * @return  the fully configured CheckGOE
   * @see  #getTokenizer()
   */
  protected CheckGOE getGOETester() {
    CheckGOE    result;
   
    result = new CheckGOE();
    result.setObject(getTokenizer());
    result.setSilent(true);
   
    return result;
  }
View Full Code Here


   *
   * @return  the fully configured CheckGOE
   * @see  #getNearestNeighbourSearch()
   */
  protected CheckGOE getGOETester() {
    CheckGOE    result;
   
    result = new CheckGOE();
    result.setObject(getNearestNeighbourSearch());
    result.setIgnoredProperties(result.getIgnoredProperties() + ",instances");
    result.setSilent(true);
   
    return result;
  }
View Full Code Here

   *
   * @param o  the object to test
   * @return  the fully configured CheckGOE
   */
  protected CheckGOE getGOETester(Object o) {
    CheckGOE    result;
   
    result = new CheckGOE();
    result.setObject(o);
    result.setIgnoredProperties(result.getIgnoredProperties() + ",instances");
    result.setSilent(true);
   
    return result;
  }
View Full Code Here

   *
   * @return  the fully configured CheckGOE
   * @see  #getFilter()
   */
  protected CheckGOE getGOETester() {
    CheckGOE    result;
   
    result = new CheckGOE();
    result.setObject(getFilter());
    result.setSilent(true);
   
    return result;
  }
View Full Code Here

TOP

Related Classes of weka.core.CheckGOE

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.