MVN

nz.ac.waikato.cms.weka : multiBoostAB

Maven & Gradle

Apr 26, 2012

multiBoostAB · Class for boosting a classifier using the MultiBoosting method. MultiBoosting is an extension to the highly successful AdaBoost technique for forming decision committees. MultiBoosting can be viewed as combining AdaBoost with wagging. It is able to harness both AdaBoost's high bias and variance reduction with wagging's superior variance reduction. Using C4.5 as the base learning algorithm, Multi-boosting is demonstrated to produce decision committees with lower error than either AdaBoost or wagging significantly more often than the reverse over a large representative cross-section of UCI data sets. It offers the further advantage over AdaBoost of suiting parallel execution. For more information, see Geoffrey I. Webb (2000). MultiBoosting: A Technique for Combining Boosting and Wagging. Machine Learning. Vol.40(No.2).

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

Latest Version

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

  • Latest Stable: 1.0.2

All Versions

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

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

How to add a dependency to Maven

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

<dependency>
    <groupId>nz.ac.waikato.cms.weka</groupId>
    <artifactId>multiBoostAB</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 : multiBoostAB gradle dependency to your build.gradle file:

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

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

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

How to add a dependency to SBT Scala

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

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