Package weka.attributeSelection

Examples of weka.attributeSelection.ASEvaluation


  updateRadioLinks();
 
  m_StartBut.setEnabled(true);
  // check capabilities...
        Capabilities currentFilter = m_AttributeEvaluatorEditor.getCapabilitiesFilter();
        ASEvaluation evaluator = (ASEvaluation) m_AttributeEvaluatorEditor.getValue();
        Capabilities currentSchemeCapabilities =  null;
        if (evaluator != null && currentFilter != null &&
            (evaluator instanceof CapabilitiesHandler)) {
          currentSchemeCapabilities = ((CapabilitiesHandler)evaluator).getCapabilities();
         
View Full Code Here


    int testMode = 0;
    int numFolds = 10;
    int seed = 1;
    int classIndex = m_ClassCombo.getSelectedIndex() - 1;
    ASEvaluation evaluator =
       (ASEvaluation) m_AttributeEvaluatorEditor.getValue();

    ASSearch search = (ASSearch) m_AttributeSearchEditor.getValue();

    StringBuffer outBuff = new StringBuffer();
    String name = (new SimpleDateFormat("HH:mm:ss - "))
    .format(new Date());
    String sname = search.getClass().getName();
    if (sname.startsWith("weka.attributeSelection.")) {
      name += sname.substring("weka.attributeSelection.".length());
    } else {
      name += sname;
    }
    String ename = evaluator.getClass().getName();
    if (ename.startsWith("weka.attributeSelection.")) {
      name += (" + "
         +ename.substring("weka.attributeSelection.".length()));
    } else {
      name += (" + "+ename);
View Full Code Here

    m_AttributeSearchEditor.setCapabilitiesFilter(filterClass);

    m_StartBut.setEnabled(true);
    // check capabilities...
    Capabilities currentFilter = m_AttributeEvaluatorEditor.getCapabilitiesFilter();
    ASEvaluation evaluator = (ASEvaluation) m_AttributeEvaluatorEditor.getValue();
    Capabilities currentSchemeCapabilities =  null;
    if (evaluator != null && currentFilter != null &&
        (evaluator instanceof CapabilitiesHandler)) {
      currentSchemeCapabilities = ((CapabilitiesHandler)evaluator).getCapabilities();
         
View Full Code Here

    int testMode = 0;
    int numFolds = 10;
    int seed = 1;
    int classIndex = m_ClassCombo.getSelectedIndex();
    ASEvaluation evaluator =
       (ASEvaluation) m_AttributeEvaluatorEditor.getValue();

    ASSearch search = (ASSearch) m_AttributeSearchEditor.getValue();

    StringBuffer outBuff = new StringBuffer();
    String name = (new SimpleDateFormat("HH:mm:ss - "))
    .format(new Date());
    String sname = search.getClass().getName();
    if (sname.startsWith("weka.attributeSelection.")) {
      name += sname.substring("weka.attributeSelection.".length());
    } else {
      name += sname;
    }
    String ename = evaluator.getClass().getName();
    if (ename.startsWith("weka.attributeSelection.")) {
      name += (" + "
         +ename.substring("weka.attributeSelection.".length()));
    } else {
      name += (" + "+ename);
View Full Code Here

   *
   * @return the evaluator string.
   */
  protected String getEvaluatorSpec() {
   
    ASEvaluation e = getEvaluator();
    if (e instanceof OptionHandler) {
      return e.getClass().getName() + " "
  + Utils.joinOptions(((OptionHandler)e).getOptions());
    }
    return e.getClass().getName();
  }
View Full Code Here

  updateRadioLinks();
 
  m_StartBut.setEnabled(true);
  // check capabilities...
        Capabilities currentFilter = m_AttributeEvaluatorEditor.getCapabilitiesFilter();
        ASEvaluation evaluator = (ASEvaluation) m_AttributeEvaluatorEditor.getValue();
        Capabilities currentSchemeCapabilities =  null;
        if (evaluator != null && currentFilter != null &&
            (evaluator instanceof CapabilitiesHandler)) {
          currentSchemeCapabilities = ((CapabilitiesHandler)evaluator).getCapabilities();
         
View Full Code Here

    int testMode = 0;
    int numFolds = 10;
    int seed = 1;
    int classIndex = m_ClassCombo.getSelectedIndex() - 1;
    ASEvaluation evaluator =
       (ASEvaluation) m_AttributeEvaluatorEditor.getValue();

    ASSearch search = (ASSearch) m_AttributeSearchEditor.getValue();

    StringBuffer outBuff = new StringBuffer();
    String name = (new SimpleDateFormat("HH:mm:ss - "))
    .format(new Date());
    String sname = search.getClass().getName();
    if (sname.startsWith("weka.attributeSelection.")) {
      name += sname.substring("weka.attributeSelection.".length());
    } else {
      name += sname;
    }
    String ename = evaluator.getClass().getName();
    if (ename.startsWith("weka.attributeSelection.")) {
      name += (" + "
         +ename.substring("weka.attributeSelection.".length()));
    } else {
      name += (" + "+ename);
View Full Code Here

    m_AttributeSearchEditor.setCapabilitiesFilter(filterClass);
   
    m_StartBut.setEnabled(true);
    // check capabilities...
    Capabilities currentFilter = m_AttributeEvaluatorEditor.getCapabilitiesFilter();
    ASEvaluation evaluator = (ASEvaluation) m_AttributeEvaluatorEditor.getValue();
    Capabilities currentSchemeCapabilities =  null;
    if (evaluator != null && currentFilter != null &&
        (evaluator instanceof CapabilitiesHandler)) {
      currentSchemeCapabilities = ((CapabilitiesHandler)evaluator).getCapabilities();
     
View Full Code Here

TOP

Related Classes of weka.attributeSelection.ASEvaluation

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.