MVN

nz.ac.waikato.cms.weka : classificationViaClustering

Maven & Gradle

Nov 27, 2017

classificationViaClustering · A simple meta-classifier that uses a clusterer for classification. For cluster algorithms that use a fixed number of clusterers, like SimpleKMeans, the user has to make sure that the number of clusters to generate are the same as the number of class labels in the dataset in order to obtain a useful model. Note: at prediction time, a missing value is returned if no cluster is found for the instance. The code is based on the 'clusters to classes' functionality of the weka.clusterers.ClusterEvaluation class by Mark Hall.

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

Latest Version

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

  • Latest Stable: 1.0.7

All Versions

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

Version Vulnerabilities Updated
1.0.x
classificationViaClustering-1.0.7
classificationViaClustering-1.0.6
classificationViaClustering-1.0.5
classificationViaClustering-1.0.4
classificationViaClustering-1.0.3
classificationViaClustering-1.0.2
classificationViaClustering-1.0.1

How to add a dependency to Maven

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

<dependency>
    <groupId>nz.ac.waikato.cms.weka</groupId>
    <artifactId>classificationViaClustering</artifactId>
    <version>1.0.7</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'nz.ac.waikato.cms.weka:classificationViaClustering:1.0.7'

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

implementation("nz.ac.waikato.cms.weka:classificationViaClustering:1.0.7")

How to add a dependency to SBT Scala

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

libraryDependencies += "nz.ac.waikato.cms.weka" % "classificationViaClustering" % "1.0.7"