MVN

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.

<dependency>
    <groupId>nz.ac.waikato.cms.weka</groupId>
    <artifactId>conjunctiveRule</artifactId>
    <version>1.0.4</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of nz.ac.waikato.cms.weka : conjunctiveRule to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.4

All Versions

Choose a version of nz.ac.waikato.cms.weka : conjunctiveRule to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
conjunctiveRule-1.0.4
conjunctiveRule-1.0.2
conjunctiveRule-1.0.1

How to add a dependency to Maven

Add the following nz.ac.waikato.cms.weka : conjunctiveRule maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>nz.ac.waikato.cms.weka</groupId>
    <artifactId>conjunctiveRule</artifactId>
    <version>1.0.4</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following nz.ac.waikato.cms.weka : conjunctiveRule gradle dependency to your build.gradle file:

implementation 'nz.ac.waikato.cms.weka:conjunctiveRule:1.0.4'

Gradle Kotlin DSL: Add the following nz.ac.waikato.cms.weka : conjunctiveRule gradle kotlin dependency to your build.gradle.kts file:

implementation("nz.ac.waikato.cms.weka:conjunctiveRule:1.0.4")

How to add a dependency to SBT Scala

SBT Scala: Add the following nz.ac.waikato.cms.weka : conjunctiveRule sbt scala dependency to your build.sbt file:

libraryDependencies += "nz.ac.waikato.cms.weka" % "conjunctiveRule" % "1.0.4"