DOC

nz.ac.waikato.cms.weka : conjunctiveRule

Maven & Gradle

Apr 29, 2014

conjunctiveRule · This class implements a single conjunctive rule learner that can predict for numeric and nominal class labels. A rule consists of antecedents "AND"ed together and the consequent (class value) for the classification/regression. In this case, the consequent is the distribution of the available classes (or mean for a numeric value) in the dataset. If the test instance is not covered by this rule, then it's predicted using the default class distributions/value of the data not covered by the rule in the training data.This learner selects an antecedent by computing the Information Gain of each antecendent and prunes the generated rule using Reduced Error Prunning (REP) or simple pre-pruning based on the number of antecedents. For classification, the Information of one antecedent is the weighted average of the entropies of both the data covered and not covered by the rule. For regression, the Information is the weighted average of the mean-squared errors of both the data covered and not covered by the rule. In pruning, weighted average of the accuracy rates on the pruning data is used for classification while the weighted average of the mean-squared errors on the pruning data is used for regression.

Table Of Contents

Latest Version

Download nz.ac.waikato.cms.weka : conjunctiveRule Javadoc & API Documentation - Latest Versions:

All Versions

Download nz.ac.waikato.cms.weka : conjunctiveRule Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
1.0.x

How to open Javadoc JAR file in web browser

  1. Rename the file conjunctiveRule-1.0.4-javadoc.jar to conjunctiveRule-1.0.4-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder conjunctiveRule-1.0.4-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "conjunctiveRule-1.0.4-sources.jar" -d "conjunctiveRule-1.0.4-javadoc" -subpackages