Package weka.core

Examples of weka.core.CheckGOE


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


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

   * Configures the CheckGOE used for testing GOE stuff.
   *
   * @return  the fully configured CheckGOE
   */
  protected CheckGOE getGOETester() {
    CheckGOE    result;
   
    result = new CheckGOE();
    result.setObject(null);
    result.setSilent(true);
   
    return result;
  }
View Full Code Here

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

   * Configures the CheckGOE used for testing GOE stuff.
   *
   * @return  the fully configured CheckGOE
   */
  protected CheckGOE getGOETester() {
    CheckGOE    result;

    result = super.getGOETester();
    result.setObject(getEvaluator());
   
    return result;
  }
View Full Code Here

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

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

   * Configures the CheckGOE used for testing GOE stuff.
   *
   * @return  the fully configured CheckGOE
   */
  protected CheckGOE getGOETester() {
    CheckGOE    result;

    result = super.getGOETester();
    result.setObject(getSearch());
   
    return result;
  }
View Full Code Here

   *
   * @return  the fully configured CheckGOE
   * @see  #getKernel()
   */
  protected CheckGOE getGOETester() {
    CheckGOE    result;
   
    result = new CheckGOE();
    result.setObject(getKernel());
    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.