MVN

nz.ac.waikato.cms.weka : bestFirstTree

Maven & Gradle

Apr 27, 2014

bestFirstTree · Class for building a best-first decision tree classifier. This class uses binary split for both nominal and numeric attributes. For missing values, the method of 'fractional' instances is used. For more information, see: Haijian Shi (2007). Best-first decision tree learning. Hamilton, NZ. Jerome Friedman, Trevor Hastie, Robert Tibshirani (2000). Additive logistic regression : A statistical view of boosting. Annals of statistics. 28(2):337-407.

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

Latest Version

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

  • Latest Stable: 1.0.4

All Versions

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

Version Vulnerabilities Updated
1.0.x
bestFirstTree-1.0.4
bestFirstTree-1.0.3
bestFirstTree-1.0.2

How to add a dependency to Maven

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

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

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

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

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

How to add a dependency to SBT Scala

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

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

Advertisement