MVN

nz.ac.waikato.cms.weka : thresholdSelector

Maven & Gradle

Apr 25, 2014

thresholdSelector · A metaclassifier that selecting a mid-point threshold on the probability output by a Classifier. The midpoint threshold is set so that a given performance measure is optimized. Currently this is the F-measure. Performance is measured either on the training data, a hold-out set or using cross-validation. In addition, the probabilities returned by the base learner can have their range expanded so that the output probabilities will reside between 0 and 1 (this is useful if the scheme normally produces probabilities in a very narrow range).

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

Latest Version

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

  • Latest Stable: 1.0.3

All Versions

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

Version Vulnerabilities Updated
1.0.x
thresholdSelector-1.0.3
thresholdSelector-1.0.2
thresholdSelector-1.0.1

How to add a dependency to Maven

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

<dependency>
    <groupId>nz.ac.waikato.cms.weka</groupId>
    <artifactId>thresholdSelector</artifactId>
    <version>1.0.3</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'nz.ac.waikato.cms.weka:thresholdSelector:1.0.3'

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

implementation("nz.ac.waikato.cms.weka:thresholdSelector:1.0.3")

How to add a dependency to SBT Scala

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

libraryDependencies += "nz.ac.waikato.cms.weka" % "thresholdSelector" % "1.0.3"

Advertisement