MVN

nz.ac.waikato.cms.weka : supervisedAttributeScaling

Maven & Gradle

Oct 30, 2018

supervisedAttributeScaling · Package containing a class that rescales the attributes in a classification problem based on their discriminative power. This is useful as a pre-processing step for learning algorithms such as the k-nearest-neighbour method, to replace simple normalization. Each attribute is rescaled by multiplying it with a learned weight. All attributes excluding the class are assumed to be numeric and missing values are not permitted. To achieve the rescaling, this package also contains an implementation of non-negative logistic regression, which produces a logistic regression model with non-negative weights .

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

Latest Version

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

  • Latest Stable: 1.0.2

All Versions

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

Version Vulnerabilities Updated
1.0.x
supervisedAttributeScaling-1.0.2
supervisedAttributeScaling-1.0.0

How to add a dependency to Maven

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

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

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

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

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

How to add a dependency to SBT Scala

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

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