Tabnine Logo
GreedyStepwise.setGenerateRanking
Code IndexAdd Tabnine to your IDE (free)

How to use
setGenerateRanking
method
in
weka.attributeSelection.GreedyStepwise

Best Java code snippets using weka.attributeSelection.GreedyStepwise.setGenerateRanking (Showing top 5 results out of 315)

origin: nz.ac.waikato.cms.weka/weka-stable

/**
 * Set whether to search backwards instead of forwards
 * 
 * @param back true to search backwards
 */
public void setSearchBackwards(boolean back) {
 m_backward = back;
 if (m_backward) {
  setGenerateRanking(false);
 }
}
origin: Waikato/weka-trunk

/**
 * Set whether to search backwards instead of forwards
 * 
 * @param back true to search backwards
 */
public void setSearchBackwards(boolean back) {
 m_backward = back;
 if (m_backward) {
  setGenerateRanking(false);
 }
}
origin: nz.ac.waikato.cms.weka/attributeSelectionSearchMethods

GreedyStepwise fs = new GreedyStepwise();
double[][] rankres;
fs.setGenerateRanking(true);
m_ASEval.buildEvaluator(m_Instances);
fs.search(m_ASEval, m_Instances);
origin: nz.ac.waikato.cms.weka/weka-stable

setGenerateRanking(Utils.getFlag('R', options));
origin: Waikato/weka-trunk

setGenerateRanking(Utils.getFlag('R', options));
weka.attributeSelectionGreedyStepwisesetGenerateRanking

Javadoc

Records whether the user has requested a ranked list of attributes.

Popular methods of GreedyStepwise

  • <init>
    Constructor
  • search
    Searches the attribute subset space by forward selection.
  • setSearchBackwards
    Set whether to search backwards instead of forwards
  • attributeList
    converts a BitSet into a list of attribute indexes
  • determineNumToSelectFromThreshold
  • getConservativeForwardSelection
    Gets whether conservative selection has been enabled
  • getDebuggingOutput
    Get whether to output debugging info to the console
  • getGenerateRanking
    Gets whether ranking has been requested. This is used by the AttributeSelection module to determine
  • getNumExecutionSlots
    Gets the number of threads.
  • getNumToSelect
    Gets the number of attributes to be retained.
  • getSearchBackwards
    Get whether to search backwards
  • getStartSet
    Returns a list of attributes (and or attribute ranges) as a String
  • getSearchBackwards,
  • getStartSet,
  • getThreshold,
  • numExecutionSlotsTipText,
  • resetOptions,
  • setConservativeForwardSelection,
  • setDebuggingOutput,
  • setNumExecutionSlots,
  • setNumToSelect

Popular in Java

  • Running tasks concurrently on multiple threads
  • getExternalFilesDir (Context)
  • setContentView (Activity)
  • getSupportFragmentManager (FragmentActivity)
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • JTextField (javax.swing)
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now