Package weka.classifiers.meta.ensembleSelection

Examples of weka.classifiers.meta.ensembleSelection.EnsembleSelectionLibrary


    String  tmpStr;
   
    tmpStr = Utils.getOption('L', options);
    if (tmpStr.length() != 0) {
      m_modelLibraryFileName = tmpStr;
      m_library = new EnsembleSelectionLibrary(m_modelLibraryFileName);
    } else {
      setLibrary(new EnsembleSelectionLibrary());
      // setLibrary(new Library(super.m_Classifiers));
    }
   
    tmpStr = Utils.getOption('W', options);
    if (tmpStr.length() != 0 && validWorkingDirectory(tmpStr)) {
View Full Code Here


      }
     
    }
   
    if (m_library == null) {
      m_library = new EnsembleSelectionLibrary();
      m_library.setDebug(m_Debug);
    }
   
    m_library.setNumFolds(getNumFolds());
    m_library.setValidationRatio(getValidationRatio());
View Full Code Here

TOP

Related Classes of weka.classifiers.meta.ensembleSelection.EnsembleSelectionLibrary

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.