MVN

nz.ac.waikato.cms.weka : lazyBayesianRules

Maven & Gradle

Apr 26, 2012

lazyBayesianRules · Lazy Bayesian Rules Classifier. The naive Bayesian classifier provides a simple and effective approach to classifier learning, but its attribute independence assumption is often violated in the real world. Lazy Bayesian Rules selectively relaxes the independence assumption, achieving lower error rates over a range of learning tasks. LBR defers processing to classification time, making it a highly efficient and accurate classification algorithm when small numbers of objects are to be classified. For more information, see: Zijian Zheng, G. Webb (2000). Lazy Learning of Bayesian Rules. Machine Learning. 4(1):53-84.

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

Latest Version

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

  • Latest Stable: 1.0.2

All Versions

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

Version Vulnerabilities Updated
1.0.x
lazyBayesianRules-1.0.2
lazyBayesianRules-1.0.1

How to add a dependency to Maven

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

<dependency>
    <groupId>nz.ac.waikato.cms.weka</groupId>
    <artifactId>lazyBayesianRules</artifactId>
    <version>1.0.2</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'nz.ac.waikato.cms.weka:lazyBayesianRules:1.0.2'

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

implementation("nz.ac.waikato.cms.weka:lazyBayesianRules:1.0.2")

How to add a dependency to SBT Scala

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

libraryDependencies += "nz.ac.waikato.cms.weka" % "lazyBayesianRules" % "1.0.2"