MVN

nz.ac.waikato.cms.weka : winnow

Maven & Gradle

Apr 26, 2012

winnow · Implements Winnow and Balanced Winnow algorithms by Littlestone. For more information, see N. Littlestone (1988). Learning quickly when irrelevant attributes are abound: A new linear threshold algorithm. Machine Learning. 2:285-318; N. Littlestone (1989). Mistake bounds and logarithmic linear-threshold learning algorithms. University of California, Santa Cruz. Does classification for problems with nominal attributes (which it converts into binary attributes)

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

Latest Version

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

  • Latest Stable: 1.0.2

All Versions

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

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

How to add a dependency to Maven

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

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

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

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

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

How to add a dependency to SBT Scala

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

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

Advertisement